How could I rotate the screen 80-100 degrees, I can't find it?
How could I rotate the screen 80-100 degrees, I can't find it?
ok first you need to know all the keycodes for all the keys ill make it an attachment then its more of a timing issue you will have to do sumthing like this
get it, got it ,goodSCAR Code:keydown(chr(watevthenumberis));
marktime(i);
repeat
wait(100);
until (getmarktime(i)>10000)
keyup(chr(watevthenumberis));
"your always where you supposed to be"
or you could do...RotateScreenEvery..if its for antiban
and MakeCompass('S') if u want to look at sumthing
SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
Programming Projects: NotePad | Tetris | Chess
SCAR Code:procedure SetCompass(Direction: String);
var
StartAngle, Angle, DirectionDeg, i: Extended; Left: Boolean; Mark: LongInt;
begin
StartAngle := (rs_GetCompassAngleDegrees);
try
begin
if StrToFloat(Direction) > 360 then DirectionDeg := strtofloat(Direction) - 360 else
DirectionDeg := strtofloat(Direction);
end;
except
case LowerCase(Direction) of
'n': DirectionDeg := 0;
'w': DirectionDeg := 90;
'e': DirectionDeg := 270;
's': DirectionDeg := 180;
end
end;
if ((360 - StartAngle + DirectionDeg) > 180) and ((360 - StartAngle + DirectionDeg) < 360) then Left := True;
if Left then KeyDown(VK_LEFT) else KeyDown(VK_RIGHT);
MarkTime(Mark);
repeat
if not loggedin then break;
Angle:= rs_GetCompassAngleDegrees;
wait(1);
if (TimeFromMark(Mark) mod 8500) = 0 then i := i +1;
if TimeFromMark(Mark) > 30000 then Break;
until (Angle > (DirectionDeg -(4 +i))) and (Angle < (DirectionDeg +(4 +i)));
if Left then KeyUp(VK_Left) else KeyUp(VK_Right);
end;
You can use this as the normal MakeCompass or SetCompass('YOUR DEGREES HERE');
Example:
SCAR Code:SetCompass('n');
SetCompass('s');
SetCompass('80');
SetCompass('100');
NOTE: This is for DIVI-only!
EDIT: 600th post![]()
Cool. I knew MakeCompass but never heard of SetCompass.
Thanks All!
Is setcompass included in srl, or do i have to add that code in every script i do?
Check these ways to make free $$$ payment through PayPal or Check
http://www.clixsense.com/static/img/cslogo.jpg
http://www.cashcliques.com/images/banner1.gif
http://www.easyadbucks.com/images/banner.gif
MakeCompass('N');
MakeCompass('E');
MakeCompass('S');
MakeCompass('W');
is included the ''SetCompass'' i dont know.
edit: the SetCompass not. so you need to add that code![]()
ok thanks for the help
Check these ways to make free $$$ payment through PayPal or Check
http://www.clixsense.com/static/img/cslogo.jpg
http://www.cashcliques.com/images/banner1.gif
http://www.easyadbucks.com/images/banner.gif
There are currently 1 users browsing this thread. (0 members and 1 guests)