PDA

View Full Version : AutoLogin Script.



chwiggy
04-25-2007, 06:48 AM
This is my first auto login script. This starts at the runescape client interface after you have selected which world you want to play on.

Please let me know what you would rate it.

Further questions i have for other people who may be able to help me.

how do i use an else statement, i keep getting errors?
how do i do the following



var
CanHoldTwo: integer;

procedure First;
begin
// i want to make CanHoldTwo hold an integer value of another integer
#Command for that#
end;

procedure Second;
begin
// i want to make CanHoldTwo hold an integer value of another integer, different to the value within the First Procedure.
#Command for that#
end;

note: Procedure First is not run when Procedure Second is run.


Thank you for your help.
Chwiggy, Jason.

Credits go out to people inside the .Scar script.

alach11
04-25-2007, 11:41 PM
Congratulations on writing your first script!

You have a mistake on line 18, that should be under var, not const.
existing,login: integer;

Also, instead of using clickmouse you may want to try using Mouse like this:
[scar]Mouse(400, 362, 3, 3, true)[scar]
The first two numbers are the co-ordinates to click, the second two are how many random pixels to misclick (makes it less detectable) and true is for left click, false for right.


Suggestions for future improvement:
-Make it so you log in by pushing a single key, like F5.
-Add multiple accounts

chwiggy
04-26-2007, 07:16 AM
Thanks - i found out alot more im now working on a auto fisher that banks :D

3Garrett3
04-26-2007, 10:33 AM
I think you need to work on standards though, Its really flat. Look in the tut section. Good script for the simple use of logging in though

Deni_mulic
04-26-2007, 10:36 AM
standards dont actually improve the quality of the script, but still useful

3Garrett3
04-26-2007, 10:57 PM
Well it makes it easier for people to read it and therfor makes it easier to give help.