Signup Now
Results 1 to 4 of 4
  1. #1
    Free User
    Join Date
    Dec 2013
    Location
    Mexico
    Posts
    12
    Reputation
    10
    Rep Power
    0

    Lightbulb change type of policy to Special Areas in cavebot Action

    I wonder if you can change the type of policy in a particular area of action cavebot
    when active cavebot and reaches a waypoint change in action:

    Target to Node
    Cavebot to Target
    Node to Cavebot
    Node To Target
    Cavebot & Target To Node

    and type of area filled to border only

    I would also like some more information Our each function of the functions of each option can not find it in the forum

  2. #2
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,441
    Reputation
    309
    Rep Power
    28
    What?

  3. #3
    Free User Harvey's Avatar
    Join Date
    Dec 2013
    Location
    Philippines
    Posts
    2,407
    Reputation
    15
    Rep Power
    25
    Quote Originally Posted by Dtwdad View Post
    I wonder if you can change the type of policy in a particular area of action cavebot
    when active cavebot and reaches a waypoint change in action:

    Target to Node
    Cavebot to Target
    Node to Cavebot
    Node To Target
    Cavebot & Target To Node

    and type of area filled to border only

    I would also like some more information Our each function of the functions of each option can not find it in the forum
    whats target means? no target in waypoints

  4. #4
    Banned
    Join Date
    Dec 2013
    Location
    Porto Alegre - RS
    Posts
    524
    Reputation
    61
    Rep Power
    0
    Choose what you want, remember to change the NewSpecialArea name!!!


    Code:
    -- Targeting to None
    if (getsetting('Cavebot/SpecialAreas/NewSpecialArea/Policy') == 'Targeting') then
    setsetting('Cavebot/SpecialAreas/NewSpecialArea/Policy', 'None')
    end
    
    -- Cavebot to Targeting
    if (getsetting('Cavebot/SpecialAreas/NewSpecialArea/Policy') == 'Cavebot') then
    setsetting('Cavebot/SpecialAreas/NewSpecialArea/Policy', 'Targeting')
    end
    
    -- None to Cavebot
    if (getsetting('Cavebot/SpecialAreas/NewSpecialArea/Policy') == 'None') then
    setsetting('Cavebot/SpecialAreas/NewSpecialArea/Policy', 'Cavebot')
    end
    
    -- None to Targeting
    if (getsetting('Cavebot/SpecialAreas/NewSpecialArea/Policy') == 'None') then
    setsetting('Cavebot/SpecialAreas/NewSpecialArea/Policy', 'Targeting')
    end
    
    -- Cavebot & Targeting to None
    if (getsetting('Cavebot/SpecialAreas/NewSpecialArea/Policy') == 'Cavebot & Targeting') then
    setsetting('Cavebot/SpecialAreas/NewSpecialArea/Policy', 'None')
    end

 

 

Posting Permissions

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