Alright i got another one...
SCAR Code:
var
name: string;
pass: string;
Procedure DeclarePlayersCustom;
Begin
name:= 'pcff64'; // Account Name.
pass:= '6549873218520'; // Account Password.
end;
Procedure LoginCustom;
Begin
ActivateClient;
Wait(2000);
MoveMouseSmooth(451+random(40), 290+random(10));
wait(500);
ClickMouse(451+random(40), 290+random(10), True);
Sendkeys(name);
wait(500);
MoveMouseSmooth(306+random(3), 262+random(2));
wait(200);
ClickMouse(307, 263, True);
wait(500);
Sendkeys(pass);
wait(6000);
end;
Say this is a custom login procedure... It compiles and clicks and all... But it won't type in the name or pass variables. Is there a reason why and a solution to make the custom login work?
EDIT: Ahh nevermind i figured it out myself. SORRY FOR THE BUMP! >.<