abanoup
Full Member
Posts: 20 Likes: 1
Currently Offline
Last Online: Jun 30, 2020 2:20:04 GMT
View Profile
Registered On: Feb 17, 2016 18:39:59 GMT
|
Post by abanoup on Sept 20, 2017 5:07:01 GMT
I need Script That stops cavebot and targetting when get attacked by player and go to location which is safe pz and when full mana return to cavebot and targetting
and another script when die you can do it as i say when there is no ammy say !aol
|
|
|
Post by Siwy on Sept 20, 2017 12:24:02 GMT
i will edit post later. @okey I'm sorry for being late 1. First u need to paste script into Cavebot Hotkeys auto 200 | listas 'Pk' | ifplayerattacking {gotolabel 'pk' | settargeting off | end} 2. Later u need to make Waypoint and add label "pk", Ideally it was in the middle of the spawn 3. (U need to set up name first waypoint in spawn for "start" and behind all waypoints [Spawn waypoints] u need to put Actions with script )gotolabel 'start' 4. Next make waypoints to safe zone like: boat, depo,w/e 5. After this waypoint in safe zone add action with script Wait 900000 Bot will wait 15 mins and later go back to spawn 6. Near enterance the spawn put ACTION in waypoints with script settargeting on abanoup ^^
|
|
|
Post by Siwy on Sept 21, 2017 11:59:59 GMT
Let me know if u got any problem Solved
|
|
|
Post by Darth Maul on Sept 21, 2017 12:07:22 GMT
This is what I use to check if a player attacks me.
Once attacked it will go to a label called "LEAVE HUNT". After 15mins it will return to hunt. It also displays a timer.
set $tt 0
auto 10 listas 'Player Attacking Check' | ifplayerattacking {gotolabel 'LEAVE HUNT' | pm '$self.name' 'leaving' | set $tt [60*15] | wait [$tt*1000] | pm '$self.name' 'returning' | gotolabel 'TRAVEL HUNT'}
auto 1000 | dontlist | if [$tt >1] {set $tt '[$tt-1]} auto 1000 | dontlist | setpos [$screenleft-253] [$screentop+110] | if [$tt > 1]{setcolor 250 0 0 | displaytext 'Returning in $formattime.$tt'} | if [$tt <=1] {setcolor 150 150 0 | displaytext 'Safe to hunt'}
|
|
felipexd
New Member
Posts: 1 Likes: 0
Currently Offline
Last Online: Feb 3, 2018 2:05:19 GMT
View Profile
Registered On: Feb 3, 2018 1:54:29 GMT
|
Post by felipexd on Feb 3, 2018 2:01:48 GMT
This is what I use to check if a player attacks me. Once attacked it will go to a label called "LEAVE HUNT". After 15mins it will return to hunt. It also displays a timer. set $tt 0
auto 10 listas 'Player Attacking Check' | ifplayerattacking {gotolabel 'LEAVE HUNT' | pm '$self.name' 'leaving' | set $tt [60*15] | wait [$tt*1000] | pm '$self.name' 'returning' | gotolabel 'TRAVEL HUNT'}
auto 1000 | dontlist | if [$tt >1] {set $tt '[$tt-1]} auto 1000 | dontlist | setpos [$screenleft-253] [$screentop+110] | if [$tt > 1]{setcolor 250 0 0 | displaytext 'Returning in $formattime.$tt'} | if [$tt <=1] {setcolor 150 150 0 | displaytext 'Safe to hunt'}
I tried to use it and it did not work... how it works? do a tutorial please
|
|