XenoBot Forums - Powered by vBulletin

User Tag List

Results 1 to 5 of 5

Thread: Condition Manager Invisible on/off

  1. #1

    Join Date
    Jan 2013
    Location
    Germany
    Posts
    6
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Condition Manager Invisible on/off

    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!

  2. #2

    Join Date
    Mar 2014
    Location
    Long Island
    Posts
    379
    Mentioned
    54 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by drabsolut View Post
    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)
    Last edited by Proteus; 02-22-2016 at 05:45 PM.

    My name is Proteus!
    This is my Signature.
    Thanks.

  3. #3

    Join Date
    Jan 2013
    Location
    Germany
    Posts
    6
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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!

  4. #4
    Lifetime Subscriber Sheradial's Avatar
    Join Date
    Apr 2015
    Posts
    165
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    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 ^^


  5. #5

    Join Date
    Mar 2014
    Location
    Long Island
    Posts
    379
    Mentioned
    54 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Sheradial View Post
    FYI it lasts 3 minutes, 20 seconds ^^
    Ohh thats good to know ! Thanks!

    My name is Proteus!
    This is my Signature.
    Thanks.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •