Signup Now
Results 1 to 3 of 3
  1. #1
    Free User Siminho1337's Avatar
    Join Date
    Dec 2013
    Location
    Warsaw
    Posts
    31
    Reputation
    10
    Rep Power
    0

    Advanced Spell Caster on Elite Knight

    Hello Everyone
    I will explain what type of help i need.
    First of all i have to say im kinda newbie about make scripts etc also i decided to learn abit about that and my request is :
    I need a spell target script whos gonna cast exori, exori grans, exori ico/hur depends of monster on chest. ive tried a targetting setting on bot but it work only if monsters are the same. Dunno how to repair it tbh.

  2. #2
    Moderator mistgun's Avatar
    Join Date
    Dec 2013
    Location
    Lodz, Poland
    Posts
    1,821
    Reputation
    220
    Rep Power
    26
    This action will cast exori and exori gran if theres 2 or 3+ monsters on screen 1sqm from you. You need to set 'm' category to each monster you want cast spell (go targeting -> your target list -> 'monster name' -> category -> set to 'm'). Action will work if theres 0 players on screen.


    PHP Code:
      auto(800) foreach creature m 'm' do
      if (
    maround(1m) == 2) and (paround(7false) == 0) and (cancastspell('exori'))
      
    then
      cast
    ('exori')
      elseif (
    maround(1m) > 2) and (paround(7false) == 0) and (cancastspell('exori gran'))
      
    then
      cast
    ('exori gran')
      
    end
      end 

    This action will cast exori ico/hur. Monsters need to be setted to category 'm' !
    PHP Code:
    local spell "exori ico"  local spell2 "exori hur"
      
    auto(300)
      foreach 
    creature m 'm' do
      if (
    m.name) and (m.isreachable) and (m.dist 2) and (cancastspell(spell))
      
    then
      cast
    (spell)
      elseif (
    m.name) and (m.isreachable) and (m.isshootable) and (m.dist 4) and (cancastspell(spell2))
      
    then
      cast
    (spell2)
      
    end
      end 

  3. #3
    Free User Siminho1337's Avatar
    Join Date
    Dec 2013
    Location
    Warsaw
    Posts
    31
    Reputation
    10
    Rep Power
    0
    <3333333333333

 

 

Posting Permissions

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