can someone link me a guide to making a on screen clcoord walker and an auto clicker? i will reveal what i am doing later.
Printable View
can someone link me a guide to making a on screen clcoord walker and an auto clicker? i will reveal what i am doing later.
You mean using static coords to walk?
Like:
Simba Code:mmouse(500,500,1,1)
Clickmouse2(mouse_left)
Terrible way to walk, but what are you asking for help for?
i want to make a script to afk monkey guards and click the alter i plan to add an attack feature later on maybe today, and an eat function. at the moment i need a guide/advice anything pertaining to clicking a coordinate.
then I suggest you learn how do use DDTM walking
http://villavu.com/forum/showthread.php?t=102740
Or Radial
http://villavu.com/forum/showthread.php?t=11584
thank you can i also use this to right click on a second coordinate?
the object i want to click on is not identifiable by color due to the whole area is the same color it could not be specified with auto color aid.
Remove username. Also, you should look into tapas to find the altar, I could write a function next week when I'm at the computer, it would make a box around the brown part on the steps, and then within that area search for the alter. But you wouldn't learn anything, so read up on a few tutorials on atpas/basic scripting
program monkeyalterkiller;
{$DEFINE SMART8}
{$i srl/srl.simba}
procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name := ''; //Your Runescape username goes right here.
Players[0].Pass := ''; //Your Runescape password goes right here.
Players[0].Active := True; //Set to True if you want to use this player. Set to False to disable this player.
Players[0].Pin := ''; //Put your Bank PIN here. Leave blank if you don't have a Bank PIN.
end;
procedure Findinventory;
begin
Movemouse(x, y);
Wait(200);
Clickmouse(x, y, mouse_Left);
Wait(200);
end;
procedure activate prayer;
begin
Movemouse(x, y);
Wait(200);
Clickmouse(x, y, mouse_Left);
Wait(200);
end;
begin
Findinventory;
end.
begin
end.
i feel like this should be able to handle almost every action in the script if i make a custom map. can i sew these together with if/ if not functions?
now that i am thinking about it would probably be easier to remove the smart and make it run on an open browser at max screen?
I would suggest you read up on the basic scripting tutorials to get a general idea of building a simple script, moving the mouse, finding an object and walking.
TPAs would be the next more advanced step and would be the way to go to find the altar in question.
Also, check out CTS or colour tolerance speeds. By using CTS2 you would be able to identify that altar in ACA without any problems at all :)
Feel free to shoot me a PM if you'd like some more specific help or add me on skype and when available I could run you through a few simple bits and pieces.