Using FindSymbol,
Thanks![]()
Using FindSymbol,
Thanks![]()
SCAR Code:{*******************************************************************************
Valid Arguments are:
- bank - mining site, mining spot - transportation
- magic shop - water source, water - furnace
- anvil - rare trees, tree - fishing spot, fish
- cookery, cook - quest - mill
- weave - pottery, pot - spinning wheel, spin
- guide - shop, store - shield
- altar - arrow - bar
- dungeon - churn - house
- Axe Shop - Cookery Shop - Windmill
- minigame - fur trader - Archery Shop
- staff Shop - clothes shop - farming spot
- apothecary - Sword shop - platebody shop
- scimitar shop - gem stall - silk stall
- plateskirt shop - agility - training dummy
- food shop - fishing shop/fish store - Jewelery
- Crafing shop - portal (to player owned houses) - Makeover Mage
- Mace Shop - Hair Dresser - Mining Shop
- silver stall - spice stall - farming shop
- slayer master - herbalist - candle shop
- Saw Mill - Kebab shop - Short cut
- hunter store - hunter training - Sandpit
*******************************************************************************}
Portal?
[CENTER][img]http://signatures.mylivesignature.com/54486/113/4539C8FAAF3EAB109A3CC1811EF0941B.png[/img][/CENTER]
[CENTER][BANANA]TSN ~ Vacation! ~ says :I Love Santy[/BANANA][/CENTER]
[CENTER][BANANA]Raymond - Oh rilie? says :Your smart[/BANANA][/CENTER]






FindSymbol(x, y, 'Transportation')
Cheers. Didn't know it was transportation, lol. And I knew it wasn't portal.![]()
I'm sure this is pretty lame compared to what most people can do here, but I'm still a n00b with Scar.
SCAR Code:program Teleport;
{.include SRL/SRL.scar}
procedure TeleportToLumby;
begin
MoveMouse(0, 0);
Wait(1000+random(200));
MoveMouse(861, 303);
Wait(2000+random(200));
ClickMouse(861, 303,true);
Writeln('Opening Teleport');
Wait(1000+random(200));
MoveMouse(692, 358);
Wait(2000+random(200));
ClickMouse(692, 358,true);
Wait(15000+random(200));
Writeln('Teleporting');
end;
begin
TeleportToLumby;
end.
It works on my 1024x768 screen to open the magic folder and teleport to Lumbridge. You may have to play with the "x, y"s if you have a different screen resolution.
Dragg the cross hair.
but if i where you i would read some tuts on how to use srl, cause that makes scripting a lot easier.
SCAR Code:program new;
{.include srl/srl.scar}
{.include srl/srl/skill/magic.scar}
procedure TeleportToLumby;
begin
GameTab(7); {}
Writeln('Opening Teleport'); {} //cast spell allready open the magic tab.
Cast('home teleport');
Writeln('Teleporting');
end;
begin
SetUpSrl;
TeleportToLumby;
end.
srl can do alot of useful stuff![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)