i was suprised to not see an auto-teleporter, it seems like it would be pretty easy but i dont know much about scripting.
i was suprised to not see an auto-teleporter, it seems like it would be pretty easy but i dont know much about scripting.
Check out the tutorials then since you don't know much
http://villavu.com/forum/forumdisplay.php?f=490
All of my guides (Over 100k+ Views!)
[RS3] 375K+ Range xp/hour| [RS3] 500k+ Mage xp/hour| [RS3] Drop Logs/Fish/ETC |Runetracker Guide
1-99 Herblore Guide| 1-99 Thieving Guide| Livid Farm Guide | 1-60 Farm guide | Double XP Everyday
Charm Sprite Guide | Charm Collecting Guide| 99 Summoning (Crimson Charms)
Authenticator Guide
Could make you one, but I would need runes to test it.
Not gonna make myself poor testing this![]()
07Scripter
I mostly write private scripts
ummm
Simba Code:program Teleporter;
{$DEFINE SMART8}
{$I SRL-OSR/SRL.Simba}
const
Tele = 'Varrock'; // Teleport location
var
Where, Loc: TPoint;
Cords: TPointArray;
begin
setupSRL;
Cords := [Point (595, 288), Point(667, 287), Point(572, 312), Point(619, 312), Point(691, 312)];
case Lowercase(Tele) of
'varrock': Loc := Cords[0];
'lumbridge': Loc := Cords[1];
'falador': Loc := Cords[2];
'house': Loc := Cords[3];
'camelot': Loc := Cords[4];
end;
GameTab(tab_magic);
MMouse (Loc.x, Loc.y, 5, 5);
repeat
GetMousePos(where.x, where.y);
if ((where.x > (Loc.x + 10)) OR (where.x < (Loc.x - 10)) OR (where.y > (Loc.y + 10)) OR (where.y < (Loc.y - 10))) then
MMouse (Loc.x, Loc.y, 5, 5);
if (IsUpText ('Cast')) then
ClickMouse2(Mouse_left);
if (Randomrange(1,50) = 1) then
wait (Randomrange(5000,7000));
wait(randomrange(2000,2500));
until (IsChatBoxTextBetween('enough', clMessage, 4, 8));
end.
Complete with anti-ban, or an attempt at anti-ban.
Public Scripts Tutorials Extras [07] AutoSeller (trades) Graphic Paint 1,000,000 GP [07] EdgeYews BotWatchâ„¢ (MicroPaint) [07] MinimapBuilder Be a Sneaky Bastard
i made one go check it out
There are currently 1 users browsing this thread. (0 members and 1 guests)