View Full Version : Condition Manager Invisible on/off
drabsolut
02-19-2016, 04:52 PM
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!
Proteus
02-22-2016, 05:43 PM
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
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)
drabsolut
03-18-2016, 09:40 AM
Thanks for helping! I will try this in the next days. I am at holidays right now :P
But it looks really good, so I hope it works!
Sheradial
03-21-2016, 05:37 PM
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
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)
FYI it lasts 3 minutes, 20 seconds ^^
Proteus
03-23-2016, 07:31 PM
FYI it lasts 3 minutes, 20 seconds ^^
Ohh thats good to know :D! Thanks!
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.