Hello. What method would I be looking for to find red dots (dropped items) on the RuneScape mini-map, then walk to them? If someone can simply say "you need to use x method" I will then go and look for a tutorial. Thankyou.
Hello. What method would I be looking for to find red dots (dropped items) on the RuneScape mini-map, then walk to them? If someone can simply say "you need to use x method" I will then go and look for a tutorial. Thankyou.
SRL already has a function for that called GetMiniMapDots in mapwalk.simba.
It returns a TPA of all the points it finds.
Simba Code:GetMiniMapDots('white'); //Find white dots
GetMiniMapDots('yellow'); //Find yellow dots
GetMiniMapDots('red'); //Find red dots
After finding the location on the minimap, you could click on them to get to the location, and then use the function MMtoMS to convert this minimap point to a point on the mainscreen. After that you could pick up/attack what ever you are looking for.
Note that MMtoMS is not perfectly accurate but it greatly help to reduce the search area.
My scripts:
Advanced Barb Agility Course(outdated), MonkeyThieverV0.11, MahoganyTableV0.4(outdated)
Questions? I bet that for 98% of those, you'll find answer HERE
Search for a TPA tutorial.
TPA = array of points.
For example this is a point:
and this is a tPOINTarray (TPA)Simba Code:(x, y)
Simba Code:(x, y)
(x, y)
(x, y)
(x, y)
(x, y)
(x, y)
It's just a list of points. Once you understand that it's pretty simple.
Say there are 3 players on the minimap, the TPA would contain 3 points.
All you have to do is choose the one you want to walk to and click it.Simba Code:(x, y)
(x, y)
(x, y)
As for MMtoMs, I know there are some on this forum, just use the search you'll find it.
My scripts:
Advanced Barb Agility Course(outdated), MonkeyThieverV0.11, MahoganyTableV0.4(outdated)
Questions? I bet that for 98% of those, you'll find answer HERE
There are currently 1 users browsing this thread. (0 members and 1 guests)