Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Proposals
#6
Chill down, and think about what I shown you....

My macro won't let my character be MOVED in certain place, don't you think that's exactly what you need? I was just giving you example.
You just need adjust macro like that for yourself.

And you can make it run to depo if you like aswell.

Just make waypoints from all these places directly to your "refill" label.
And in macro you set it up when somehow your character finds itself in place you don't want it too be.


I would've invite you to my ts and help with this, but I didn't like your attitude

(01-18-2017, 12:42 AM)Kazan Wrote: I DON'T HAVE TIME TO MAKE 1 MILLION OF MACROS WITH LOCATIONS WHEN I'M BOTTING ON EVERY GOOD RESPAWN IN HEXERA!!! I wanna make it in maximum 5 minutes, not in 50 hours...

And you think, you can have someone make it for speciallu for you? That others don't have anything else to do?
As i said, everything you want is already possible to do, just little of your OWN effort, don't be so selfish.





Btw, it wold be just a ONE macro, not even long one.
Self.PositionIn checks if you in certain AREA , RECTANGLE AREA, not just single SQM,
So you can pick highest west SQM postion of the spot and lowest east sqm
example.
RunPos:=Self.PositionIn(30000, 30000, 7, 30050, 30050, 7)
(would return value 1, if you were in a this huge 50x50 square area)


And you use that 1
Code:
RunPos:=Self.PositionIn(30000, 30000, 7, 30050, 30050, 7)  
!RunPos!>=1
Killer.Stop()
Self.Stop()
CaveBot.GoLabel(BackToRefill_1)
exit()


And you like to setup MORE areas


Code:
RunPos1:=Self.PositionIn(30000, 30000, 7, 30010, 30010, 7)  
RunPos2:=Self.PositionIn(30020, 30020, 7, 30030, 30030, 7)  
RunPos3:=Self.PositionIn(30040, 30040, 7, 30050, 30050, 7)  
!RunPos1!>=1  [which1]
Killer.Stop()
Self.Stop()
CaveBot.GoLabel(BackToRefill_1)
exit()
{which1}
!RunPos2!>=1 [which2]
Killer.Stop()
Self.Stop()
CaveBot.GoLabel(BackToRefill_2)
exit()
{which2}
!RunPos3!>=1 [which3]
Killer.Stop()
Self.Stop()
CaveBot.GoLabel(BackToRefill_3)
exit()
{which3}
exit()


This would send you to different labels from 3 different areas you setup in SelfPositionIN
Everything you have to do next, is for each of this this areas, lead Labels in cavebot called BackToRefill_1 ,2 ,3, to connet with waypoint that takes you to refill.
Reply


Messages In This Thread
Proposals - by Kazan - 01-17-2017, 11:41 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)