Signup Now
Results 1 to 4 of 4
  1. #1
    Free User Pawel's Avatar
    Join Date
    Dec 2013
    Posts
    207
    Reputation
    42
    Rep Power
    21

    Put off targetting

    How to turn off targeting and turn in on later? need this action

  2. #2
    Free User L!p3's Avatar
    Join Date
    Dec 2013
    Location
    Brazil
    Posts
    52
    Reputation
    21
    Rep Power
    21
    setsetting('Targeting/Enabled', 'no')
    setsetting('Targeting/Enabled', 'yes')

    Most of functions you just need to right click on to see the path.

  3. #3
    Free User Pawel's Avatar
    Join Date
    Dec 2013
    Posts
    207
    Reputation
    42
    Rep Power
    21
    and action like if stand time xxx then cast exori and exori gran? i mean if he get trap when targetting is off

  4. #4
    Banned
    Join Date
    Dec 2013
    Posts
    556
    Reputation
    18
    Rep Power
    0
    Quote Originally Posted by Pawel View Post
    and action like if stand time xxx then cast exori and exori gran? i mean if he get trap when targetting is off
    Well, I think it would be easy like on neobot

    auto(200,500)
    if $standtime > 30*100 and maround(1) >= 1 and paround(6) == 0 then
    if cancastspell("exori") then
    cast("exori")
    elseif cancastspell("exori gran") then
    cast("exori gran")
    end
    end


    Well, you can use it for specific monsters, f.e. Fire Elemental, so it will only cast when FE is near
    auto(200,500)
    if $standtime > 30*100 and maround(1, "Fire Elemental") >= 1 and paround(6) == 0 then
    if cancastspell("exori") then
    cast("exori")
    elseif cancastspell("exori gran") then
    cast("exori gran")
    end
    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
  •