PDA

View Full Version : 615 Script?



nocturnix
06-29-2021, 04:29 AM
Checks if 615 is active
If Not active, casts (based on stance argument provided to script)


Basically right now i am casting 615 at every creature, but 615 remains active from kill to kill so it would be more efficient to only cast it when it is down. Is there a script like this already, or could someone perhaps write one? I think it would be pretty simple only a few lines?

Thnx.

Tgo01
06-29-2021, 04:57 AM
Only problem is neither Lich nor SPELL ACTIVE tracks whether or not 615 is active.

You could get the messaging for when you cast 615 and for when 615 ends (something like the swarm fades or something), which could be used to track whether or not 615 is active. Only problem is I tested it just now and if the critter or you leave the room you no longer get the messaging for when the swarm fades, so in that case you would have no way of knowing when the spell ends and the best you could do is have a timer that just assumes the spell ends after 30 seconds or something.

Tgo01
06-29-2021, 05:07 AM
So I suppose what you could do is something like this:



$spell_615_active = nil

Thread.new{
loop{
wait_until { $spell_615_active }
150.times{
break if $spell_615_active.nil?
sleep 0.2
}
$spell_615_active = nil
}
}

while line = get
$spell_615_active = nil if line =~ /The insect swarm disperses and the buzzing subsides\./
end


Which would do what I mentioned above: look for when the swarm fades and waits 30 seconds before assuming the swarm has faded. This script would need to be running in the background while you're hunting, or you could just leave it running all the time, it won't hurt anything.

Then in your attacking script you could do something like:



if $spell_615_active.nil?
Spell[615].cast
$spell_615_active = true
end


Again the script won't be perfect because of the aforementioned critter/you leaving the room before you see the message about the swarm fading, but at most you would just have to wait 30 seconds before the script would try again. Or reduce the wait time to 10 or 15 seconds, it all good!

You could also have the script check to see if there is a swarm in the room with you and if there is the 30 second timer won't assume the swarm has dispersed because...well...the swarm is there.