basicly everytime i use a mouse procedure EG mmouse,mouse etc they work but they move the mouse very very slowly. Is there a way to fix this?
thanks, fooktard.
basicly everytime i use a mouse procedure EG mmouse,mouse etc they work but they move the mouse very very slowly. Is there a way to fix this?
thanks, fooktard.
mousespeed := 50;
(your mouse will move very fast if u stick that in)
EDIT: i thought this merited the word INSANELY fast
~ Metagen
You will also be banned very fast. Mouse speed is generally set to 15.
STOP PM'ING ME
Lol...oops i said that u shouldnt be putting it over 25 didnt i?
![]()
~ Metagen
come someone show me an example of where i should declare the mouse speed in the script?![]()
You can either..
SCAR Code:program new;
const
MouseSpeed = 15;
begin
end.
or..
SCAR Code:program new;
begin
MouseSpeed:=15;
end.
Notice the difference. := and =
Rogeruk's Al-Kharid Tanner V1.1 [Released]
Rogeruk's Barbarian Crafter [Coming Soon]
Rogeruk's Guild Fisher [Coming Soon]
!! - Taking Requests - !!
ok thank ui got 1 error with my script when i put the mousespeed into my script, heres the script and error.
error = Failed when compilingCode://shell program catherbylobbanker; {.include SRL/SRL.scar} var username, password:string; procedure login; begin MouseSpeed:=15; username:=readln('please enter your username'); password:=readln('please enter your password'); mouse(249, 311,true); wait(500) SendText(username +chr(13)); wait(500) SendText(password); mouse(408, 273,true); end //mainloop begin login; end.
Line 12: [Error] (14698:21): Invalid number of parameters in script C:\Users\Gary\Documents\Scripts\catherbylobbanker\ shell.scar
SCAR Code:Mouse(249, 311, 0, 0, true);
~ Metagen
SCAR Code:{*******************************************************************************
procedure Mouse(mousex, mousey, ranx, rany: Integer; left: Boolean);
By: Mutant Squirrle
Description: Moves then clicks mouse.
*******************************************************************************}
![]()
Rogeruk's Al-Kharid Tanner V1.1 [Released]
Rogeruk's Barbarian Crafter [Coming Soon]
Rogeruk's Guild Fisher [Coming Soon]
!! - Taking Requests - !!
ok corrected that, same script
new error = Line 21: [Error] (14702:1): Semicolon (';') expected in script C:\Users\Gary\Documents\Scripts\catherbylobbanker\ shell.scarCode://shell program catherbylobbanker; {.include SRL/SRL.scar} var username, password:string; procedure login; begin MouseSpeed:=15; username:=readln('please enter your username'); password:=readln('please enter your password'); mouse(249, 311, 0, 0,true); wait(500) SendText(username +chr(13)); wait(500) SendText(password); mouse(408, 273, 0, 0,true); end //mainloop begin login; end.
line 21: end; <- semicolon
[Error] (14702:1): Semicolon (';') expected in script
ummmmwell now you know what that means.
~ Metagen
No problem
~ Metagen
Also, just a tip, you should use the SRL login procedure, its alot easier.
SCAR Code:Procedure DeclarePlayers; //
begin //
HowManyPlayers :=1; //
NumberOfPlayers(HowManyPlayers); //
CurrentPlayer:=0; //
//
Players[0].Name :=' '; //Username //
Players[0].Pass :=' '; //Password //
Players[0].Nick :=' '; // 3 letters in the middle of your name
Players[0].Active:=True; //
end;
then
SCAR Code:begin
cleardebug; // i dont like messy debugs :S
SetupSRL;
DeclarePlayers;
activateclient;
wait(1000);
loginplayer;
end.
http://i36.photobucket.com/albums/e4...mer/quake1.jpg
Possible Projects in the Future
Snape grass collector + banker
There are currently 1 users browsing this thread. (0 members and 1 guests)