Quote Originally Posted by Proteus View Post
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)

FYI it lasts 3 minutes, 20 seconds ^^