I want to check if my player is in a predefined area, how can i do that.
I want to check if my player is in a predefined area, how can i do that.
Umm you can look for symbols on the minimap to get a general sense if you're in the right area.
You can make a small bitmap or DTM of something unique on the minimap to search for.
Or you can use SPS which does walking, so you can use it to click where you want to go/be
http://villavu.com/forum/showthread....tioning+system
Is there a way to get the points of current tile?
Simba Code:program MyCoords;
{$define SMART}
{$i srl/srl.scar}
{$i sps/sps.simba}
begin
Smart_Server := 83;
Smart_Members := True;
Smart_Signed := True;
Smart_SuperDetail := False;
SetupSRL;
SPS_Setup(RUNESCAPE_SURFACE, ['7_11']); //Change this to your SPS map area(s)
SPS_Continue := True;
Repeat
ClearDebug;
Writeln('Tile: '+IntToStr(SPS_GetMyPos.X)+', '+IntToStr(SPS_GetMyPos.Y));
Wait(500);
Until(False)
end.
Current projects:
[ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]
"I won't fall in your gravity. Open your eyes,
you're the Earth and I'm the sky..."
Thank You
Last edited by astoria1112000; 12-01-2011 at 07:54 AM.
There are currently 1 users browsing this thread. (0 members and 1 guests)