PDA

View Full Version : Using Bigshot Quick with ;Bandits



Queshu
03-30-2017, 10:28 AM
I've recently returned after years away and things are quite different.

I've been using ;bigshot to hunt so it's not so onerous grinding. However, for ;bandit I tried to use ;bigshot quick so as to not have to reset the map parameters in ;bigshot for every bounty.

However ;bandit only recognizes the first word in the script you designate for it to use for attacking.
The command in bandit to set the attack script is ";bandit attackscriptnamehere" but if I type ";bandit bigshot quick" it only uses ";bandit bigshot" which sends me to my hunting area to hunt.
Is there a way to change ";bigshot quick" to activate under with the word "bigshot_quick" so I could use it for ;bandits?

Thank you in advance,

Queshu Tsaroths

horibu
03-31-2017, 11:02 AM
I'm not sure if Hazado still plays or not, but I modified his code to accept a second variable so you can use ;bandit bigshot quick
I also changed the wait time between moving rooms from 5 to 2 seconds.
Added a pause at end of hunting bandits (in case your in a group) before it heads back to the closest ;go2 advguard
Just ;u to make it unpause and send you on your way.



if script.vars[1]
CharSettings["attack_script1"] = script.vars[1]
if script.vars[2]
CharSettings["attack_script2"] = script.vars[2]
end
exit
elsif CharSettings["attack_script1"].nil?
_respond "Please enter your attack script with ;bandit AttackScriptNameGoesHere"
exit
end

if bounty? !~ /^You have been tasked to suppress bandit activity (?:in|on|near|between|under) (?:the )?(.*)\s(?:near|between|under|\.)/
_respond "you are not on a bandits bounty!"
end

location = $1.strip.downcase
rooms_list = Room.list.find_all { |r| r.location =~ /#{location}/i }.collect { |r| r.id }

while bounty? =~ /^You have been tasked to suppress bandit activity (?:in|on|near|between|under) (?:the )?(.*)\s(?:near|between|under|\.)/
next_room = Room.current.find_nearest(rooms_list).to_i
rooms_list.delete(next_room)
if next_room.nil? || Room.current.path_to(next_room).length > 1
rooms_list = Room.list.find_all { |r| r.location =~ /#{location}/i }.collect { |r| r.id }
next_room = Room.current.find_nearest(rooms_list).to_i
rooms_list.delete(next_room)
end

waitrt?
waitcastrt?

fput 'stance defensive' unless checkstance == 'defensive'
start_script('go2', [ next_room, '_disable_confirm_' ]);
wait_while { running? 'go2' }
10.times {
break if GameObj.npcs.to_a.find_all { |npc| npc.type =~ /bandit/} != []
sleep 0.2
}

while true
npcs = GameObj.npcs.to_a.find_all { |npc| npc.type =~ /bandit/ and npc.status !~ /dead/ }

if npcs.empty?
break
else
waitrt?
waitcastrt?
start_script "#{CharSettings["attack_script1"]}", [ "#{CharSettings["attack_script2"]}" ]
wait_while { running?(CharSettings["attack_script1"]) }
end
end
end

_respond ""
_respond "YOU ARE DONE WITH BANDITS"
_respond ";unpause bandit"
_respond "TO GO TO CLOSEST GUARD"
pause_script

start_script('go2', [ 'advguard', '_disable_confirm_' ]);
wait_while { running? 'go2' }