示例#1
0
 private void executeToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (this.listBox1.SelectedIndex != -1)
     {
         string Input = (File.ReadAllText("scripts\\" + this.listBox1.SelectedItem.ToString()));
         api.ExecuteScript("" + Input);
     }
 }
示例#2
0
文件: Scripts.cs 项目: Femboyy/3NIGMA
        private void Walkspeed(object sender, KeyPressEventArgs e)
        {
            string value = textBox1.Text;

            if (value == "attach")
            {
                api.LaunchExploit();
            }
            else
            {
                if (e.KeyChar == Convert.ToChar(Keys.Return))
                {
                    api.ExecuteScript("game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = " + value);
                }
            }
        }
示例#3
0
文件: BSPLOIT.cs 项目: kuca00/BSploit
 private void EXLUA_Click(object sender, EventArgs e)
 {
     API.ExecuteScript(ScriptTXT.Text);
 }
示例#4
0
 private void flatButton1_Click(object sender, EventArgs e)
 {
     module.ExecuteScript(fastColoredTextBox1.Text);
 }
        private void button3_Click(object sender, EventArgs e)
        {
            string input = ScriptBox.Text;

            api.ExecuteScript(input);
        }