Hi,
I've had this idea about an antiban procedure, though I'm not an experienced enough scripter to put it into a script :S
Here it is:
1. Mouse clicks on friends list, retrieves and records data from the list (A random username) and stores it in a variable
2. Mouse clicks on clan chat tab
3. Mouse clicks on join clan
4. The script then types the username it randomly retrieved from the friends list.
5. If the script finds people in the clan chat it exits the chat.
It would look something like this?: (Note that I'm a noob scripter
)
Code:
begin
gametab(7); //Don't know what gametab friends list is :o
if findfriendtext(friendtext, MIX1, MIY1, MIX2, MIY2, 2) then //friendtext would be the variable the text is stored in
begin
gametab(8); //clan chat game tab?
Mouse(308, 30483, true); //clicks on join clan
typesend('friendtext');
end else
if findcolor(30843, MIX1, MIY1, MIX2, MIY2) then //if anyone is in the clan it exits
gametab(11); //Inv tab
exit;
end;
hope I holped