track PK's by flutschi
Related: Tracking
1#put those 2 parts anywhere in your script that is in either a loop (when you have something more advanced) OR just anywhere in a simple script with a loop/replay
2
3
4#this parts checks if you have tracking on, and if not it will enable it.
5#in case you relogged or got disconnected so to make sure its always on!
6
7if not findbuff 'tracking'
8 overhead 'i should track..'
9
10 while not gumpexists 4267467659
11 useskill 'tracking'
12 wait 250
13 endwhile
14
15 if gumpexists 4267467659
16 while not insysmsg "You will now hunt all hostile players."
17 gumpresponse 8 4267467659
18 waitforgump 4267467659 5000
19 endwhile
20 gumpresponse 6 4267467659
21 wait 1000
22 clearsysmsg
23 endif
24 gumpclose 4267467659
25endif
26
27# this is the simple magic that calls the recallHome script to bring you to savety
28# https://outlands.uorazorscripts.com/script/2304d1ed-69b2-4c5a-9bad-2b4e39a7bde3
29# this is the recallHome where you simply create a script with the name "recallHome" in your razor
30
31if insysmsg 'Now tracking' or insysmsg 'Distance'
32 script 'recallHome'
33 stop
34endif
35