
Originally Posted by
drabsolut
Hey guys,
I wanted to ask if there is a possibility to turn the Invisbile Mode at Condition Manager on or off with a lable at a special waypoint.
My problem is, that I want to turn it on, when I am entering a spawn and turn it off when leaving, so that he is not casting utana vid immidiatly after leaving depot pz.
Would be thankfull for some solutions!
Greetings!
I'd probably just write it into a script, I don't think you can change conditions
I'm not home so did this on my phone so let me know if I fucked up somewhere lol
When it hits the Start_Cast label it'll cast the spell every 2.5-3 minutes (not 100% positive on how long utana vid actually lasts lol) then stop casting when it hits the Stop_Cast label
Code:
castVid = false
registerEventListener(WALKER_SELECTLABEL, "SelectLabel")
function SelectLabel(labelName)
if labelName == "Start_Cast" then
castVid = true
elseif lableName == "Stop_Cast" then
castVid = false
end
end
Module.New('Invisible', function(Invis)
if castVid == true then
Self.Say("Utana Vid")
wait(math.random((60000*2.5), (60000*3)))
end
end)