Player is reborn invincible CancelBuff(500667) not working
Posted: Sat Sep 01, 2012 11:02 am
I'm stumped, got lucky to find this nice /script executed ingame which shows buff IDs: /script i=1 while UnitBuff("player",i) ~= nil do nn,__,__,ii = UnitBuff("player",i) SendSystemChat(nn..", "..ii) i = i+1 end
But... for the "Player is reborn invincible" buff it shows 500667 and that seems to be the only buff I can't strip. Tried different variations in WP and profile. I can strip the "PK Protection" buffs all day with no problem but this 500667 thing is killing me.
Profile:
WP
Also tried:
But... for the "Player is reborn invincible" buff it shows 500667 and that seems to be the only buff I can't strip. Tried different variations in WP and profile. I can strip the "PK Protection" buffs all day with no problem but this 500667 thing is killing me.
Profile:
Code: Select all
<onDeath><![CDATA[
yrest(1000)
RoMScript("BrithRevive();");
yrest(1000)
CancelBuff("Player is reborn invincible")
CancelBuff("PK Protection")
CancelBuff("PK Protection II")
CancelBuff("PK Protection I")
CancelBuff("PK Protection III")
CancelBuff(500667)
-- Additional Lua code to execute on death
-- pauseOnDeath(); -- Stop the script
-- player:logout(); -- logout
]]></onDeath>Code: Select all
<!-- # 1 --><waypoint x="3455" z="75667" y="5"> CancelBuff(500667); </waypoint>Code: Select all
<!-- # 1 --><waypoint x="756" z="85678" y="5"> CancelBuff("Player is reborn invincible"); </waypoint>