im making a script for stick rpg al i need to know is how to hold the d key i no how to send it and btw im useing send keys and all that because i dont think you can get banned frm stick rpg


im making a script for stick rpg al i need to know is how to hold the d key i no how to send it and btw im useing send keys and all that because i dont think you can get banned frm stick rpg


thank you very much
*EDIT*
it holds it down once then waits 9 seconds i need it to hold it down for 9 seconds
SCAR Code:KeyDown(68);//push 'd' down
Wait(9000);//wait for 9 seconds
KeyUp(68);//release 'd' key


thats excatly wat i put in but it didnt work it pressed it once then waits 9 seconds then finishes the script.
and also how do i make it click off scar when i press play and go onto the the stcick rpg screen
that does the trick, however, it takes quite a while to compile because of SRL... you could put the MarkTime() and TimeFromMark() functions into your script, then you wouldn't need to include SRL...SCAR Code:program New;
{.include SRL/SRL.scar}
var
StartTime : Integer;
begin
MarkTime(StartTime);
repeat
SendKeys('D');
until(TimeFromMark(StartTime) >= 9000)
end.


kk ty ill give this a that works but it keeps typeing d in the scar screen and when i go into stick rpg and press ctrl alt r it dont work is there a procedure to makes it minimize scar when u press the green start button
SCAR Code:program New;
var
StartTime :integer;
begin
ActivateClient;
MarkTime(StartTime);
repeat
SendKey('d');
until(TimeFromMark(StartTime) >=9000)
end.
pick the rpg screen with the clietn crosshiars and thefunction makes that screen pop ontop and the script runs on itSCAR Code:ActivateClient;
STOP PM'ING ME

or just use SendKeysSilent :P
There are currently 1 users browsing this thread. (0 members and 1 guests)