Signup Now
Results 1 to 4 of 4
  1. #1
    Free User
    Join Date
    Jul 2014
    Posts
    37
    Reputation
    12
    Rep Power
    0

    Question If mana above x set targeting 'apprentices strike' if mana below x set no spell

    If mana above x set targeting 'apprentices strike' if mana below x set no spell

    anyone can help me with this?
    pls

    I TRIED MYSELF THIS IS HOW FAR I GOT

    auto(10000)
    if $mppc >= 80 then
    setsetting('Targeting/Creatures/Larva/Setting1/First Spell', 'apprentices strike')
    else
    setsetting('Targeting/Creatures/Larva/Setting1/First Spell', 'no spell')
    end
    Last edited by gluben; 11-01-2014 at 09:52 PM.

  2. #2
    Free User Balbek's Avatar
    Join Date
    Dec 2013
    Posts
    167
    Reputation
    31
    Rep Power
    22
    auto(100)

    if $mppc >= 80 then
    setsetting('Targeting/Creatures/Larva/Setting1/FirstSpell', 'Apprentice\'s Strike')
    else
    setsetting('Targeting/Creatures/Larva/Setting1/FirstSpell', 'No Spell')
    end

  3. #3
    Helper StaR's Avatar
    Join Date
    Dec 2013
    Location
    Manchester
    Posts
    712
    Reputation
    50
    Rep Power
    23
    Just try setting your auto(100) a bit less because 10000 = 10 seconds by which time the larva is probably already dead
    local manapercent = 60 -- mana % to use spell

    auto(100) -- don't put it at 10000 for this as it's too high

    if $mppc >= manapercent then
    setsetting('Targeting/Creatures/Larva/Setting1/First Spell', 'apprentices strike')
    else
    setsetting('Targeting/Creatures/Larva/Setting1/First Spell', 'no spell')
    end



  4. #4
    Free User
    Join Date
    Jul 2014
    Posts
    37
    Reputation
    12
    Rep Power
    0
    Quote Originally Posted by Balbek View Post
    auto(100)

    if $mppc >= 80 then
    setsetting('Targeting/Creatures/Larva/Setting1/FirstSpell', 'Apprentice\'s Strike')
    else
    setsetting('Targeting/Creatures/Larva/Setting1/FirstSpell', 'No Spell')
    end
    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
  •