Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?
You are not logged in.
Well you know how tbot connects by saying
[T-Bot] Connected.
well DBot simply kicks whoever says [T-Bot] at the beginning of a message
no- its not troll proof its simply tbot proof.
download here:
http://www.dbotinfo.weebly.com
(its also used for data collection)
i would show tbot auto kick proof but I don't know how to do images
*****
recently i found out that toop2 knows about this
so i will now make it so the word BOT (upper or lower) will kick you.
NEVERMIND!!!
i have to find a way to kick a bot when it joins
*****
Offline
Offline
Code from dbot,
string[] strArray = m.GetString(1U).Split(' ');
if (m.GetString(1U).ToLower().Contains("bot") && Form1.UserName[int1] != Form1.ownername.ToLower())
Form1.con.Send("say", new object[1]
{
(object) ("/kick " + Form1.UserName[int1] + " Auto-kick of the word use bot")
});
Offline
goeyfun - you decompiled the exe file?
Offline
Code from dbot,
string[] strArray = m.GetString(1U).Split(' '); if (m.GetString(1U).ToLower().Contains("bot") && Form1.UserName[int1] != Form1.ownername.ToLower()) Form1.con.Send("say", new object[1] { (object) ("/kick " + Form1.UserName[int1] + " Auto-kick of the word use bot") });
No. no good. too complex. I would recommend using:
public Dictionary<int, string>myDictionary = new Dictionary <int, string>();
public void OnMessage(object sender, PlayerIOClient.Message m)
{
switch(m.Type)
{
case("add"):
myDictionary.Add(m.GetInt(0), m.GetString(1);
break;
case("say"):
try
{
string username = myDictionary[m.GetInt(0)];
if(m.GetString(1).StartsWith("[T-BOT]")
{
conn.Send("say", "/kick " + username + " Tbot is not allowed";
}
catch { }
}
break;
}
}
Offline
Offline
Moved to Bots and Programming
"Sometimes failing a leap of faith is better than inching forward"
- ShinsukeIto
Offline
WARNING: T-Bot spotted in many code worlds in EE We need more comments!
Offline
Offline
WARNING: T-Bot seems to be hacking EE accounts to control EE worlds...
Offline
[ Started around 1732490450.6175 - Generated in 0.053 seconds, 12 queries executed - Memory usage: 1.53 MiB (Peak: 1.69 MiB) ]