I'm looking to purchase the services of a scripter capable of creating an svo script that 1.
cleares queue;queues shield 2. swaps
darkshade > paralysis (randomly every 2, 3 or 4 ticks to eliminate prediction)
after the shield defense is up 3. swaps
paralysis > darkshade back after darkshade is cured.
It should have an inbuilt timer against anti-illusion too.
Something like this but more efficient -
https://ada-young.appspot.com/pastebin/ab542912
[ Runewarden Sparring Videos |
Link ]
Comments
function darkshadeDeathGained(event, affliction, class)
if event == "got aff" then
if affliction == "darkshade" then
tempTimer(8,[[if aff.darkshade then switchPrios( "darkshade", 1 ) end]])
--you'll want to add your shield queue here---
end
end
end --fun
registerAnonymousEventHandler("got aff", "darkshadeDeathGained")
function darkshadeLost(event, affliction)
if event == "lost aff" then
if affliction == "darkshade" then affPrioRestore( "darkshade" )
tempTimer(1,[[affPrioRestore("darkshade" )]])
tempTimer(2,[[affPrioRestore("darkshade" )]])
tempTimer(3,[[affPrioRestore("darkshade" )]]) end
end
end --func.
registerAnonymousEventHandler("lost aff", "darkshadeLost")
This is what you're looking for, but it's setup for serverside/wundersys. Should be easy enough to swap it over to svo.
Penwize has cowardly forfeited the challenge to mortal combat issued by Atalkez.
Penwize has cowardly forfeited the challenge to mortal combat issued by Atalkez.
I manually use "pvd" for the randomness but I double press 'enter' or lose track at times.
[ SnB PvP Guide | Link ]
Penwize has cowardly forfeited the challenge to mortal combat issued by Atalkez.