我正在使用WeAreDevs进行Roblox攻击,但出现此错误。我的文字有什么问题? (CS1061)

时间:2019-03-10 06:02:36

标签: roblox

public partial class Form1 : Form {
    WeAreDevs_API.ExploitAPI aPI = new WeAreDevs_API.ExploitAPI();

    public Form1() {
        InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e) {
        aPI.LaunchExploit();
    }

    private void button2_Click(object sender, EventArgs e) {
        fastColoredTextBox1.Clear();
    }

    private void button3_Click(object sender, EventArgs e) {
        aPI.SendFullLuaScript(fastColoredTextBox1.Text);
    }
}

这是我的问题,靠近ExploitApi地区。

2 个答案:

答案 0 :(得分:0)

  • 在WeAreDevs API(V1)中,没有任何名为SendFullLuaScript()的函数。您必须将SendFullLuaScript()函数替换为SendLimitedLuaScript()函数。
  • 使用这些漏洞破坏了Roblox's Terms of Service。而且,WeAreDevs API并不是利用安全性的好方法。是的,如果您继续开发,Roblox会禁止它具有很高的质量。
  • Goodluck ^^

答案 1 :(得分:0)

替换

aPI.SendFullLuaScript(fastColoredTextBox1.Text); 

使用

aPI.SendLuaScript(fastColoredTextBox1.Text);

查看文档:{​​{3}},SendFullLuaScript不是最新版本的API的方法。以前的方法名称是SendLimitedLuaScript,但现在不推荐使用,而推荐使用SendLuaScript。