Signup Now
Results 1 to 3 of 3
  1. #1
    Free User
    Join Date
    Aug 2017
    Posts
    12
    Reputation
    10
    Rep Power
    0

    castspell when lefthand empty

    hello im new to scripting and im just trying stuff out experimenting to learn it better
    i want to make a persistent that will cast exevo gran mort when left hand is empty
    i tried doing this but no work:
    Code:
    auto(200)
    if $lhand .count == 0
    then
    cast("exevo gran mort")
    
    end
    i would love some suggestions to make it work

  2. #2
    Free User Cisco's Avatar
    Join Date
    Aug 2014
    Location
    Brazil
    Posts
    1,424
    Reputation
    119
    Rep Power
    23
    Quote Originally Posted by shokerlol View Post
    hello im new to scripting and im just trying stuff out experimenting to learn it better
    i want to make a persistent that will cast exevo gran mort when left hand is empty
    i tried doing this but no work:
    Code:
    auto(200)
    if $lhand .count == 0
    then
    cast("exevo gran mort")
    
    end
    i would love some suggestions to make it work
    weapon equip right hand no left

    auto(200)

    if $rhand.id == 0 then
    if cancastspell("exevo gran mort") then
    cast("exevo gran mort")
    end
    end

  3. #3
    Free User
    Join Date
    Aug 2017
    Posts
    12
    Reputation
    10
    Rep Power
    0
    thank you very much!! works great!

 

 

Posting Permissions

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