Signup Now
Results 1 to 3 of 3
  1. #1
    Free User Zciulany's Avatar
    Join Date
    Sep 2015
    Location
    Sweden
    Posts
    11
    Reputation
    10
    Rep Power
    0

    while paralyzed cast spell on X monster

    Hey guys can you give me a hand fixing this script?

    I'm trying to make it cast exori hur on the monster when my character is paralyzed. So far i have it like this but still getting an error.
    PHP Code:
    auto(500)
        if 
    $paralyzed and $targetingtarget.target == 'Hydra' then
            cast
    ('exori hur'wait(200,300)
        
    end 

  2. #2
    Free User
    Join Date
    Sep 2015
    Posts
    28
    Reputation
    10
    Rep Power
    0
    Hello
    I'm not sure why you want this but i think its better to do utanir hur your character can go more fast to kill the hydra by melee...
    anyways can you show us a print with your error? will be more easy to help you! :P

  3. #3
    Free User Borges's Avatar
    Join Date
    Feb 2014
    Location
    Brazil
    Posts
    1,468
    Reputation
    205
    Rep Power
    25
    Quote Originally Posted by Zciulany View Post
    Hey guys can you give me a hand fixing this script?

    I'm trying to make it cast exori hur on the monster when my character is paralyzed. So far i have it like this but still getting an error.
    PHP Code:
    auto(500)
        if 
    $paralyzed and $targetingtarget.target == 'Hydra' then
            cast
    ('exori hur'wait(200,300)
        
    end 
    auto(500) 
    if $paralyzed then
    if $targetingtarget.dist <= 3 and $targetingtarget.isshootable and $targetingtarget.name == 'Hydra' then
    if cancast('exori hur') then
    cast('exori hur')
    wait(200,500)
    end
    else
    cast('exura ico')
    wait(200,500)
    end
    end
    Last edited by Borges; 09-29-2015 at 12:47 PM.
    Helped you? REP+

 

 

Posting Permissions

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