Signup Now
Results 1 to 3 of 3
  1. #1
    Free User charms's Avatar
    Join Date
    Feb 2014
    Posts
    66
    Reputation
    15
    Rep Power
    21

    Mas San when X and Y monster are on the screen

    Hello

    Need something like that please!!!
    Last edited by charms; 10-21-2016 at 09:43 PM.

  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 charms View Post
    Hello

    Need something like that please!!!
    --Attack Pally
    auto(100)

    local monsters = {'Dragon', 'Dragon Lord'}
    local pvp = false --check pvp
    local MasSan = true --exevo mas san
    local numberMonsters = 3 --monsters for mas san
    local GranCon = true --exori gran con
    local Con = true --exori con
    local San = true --exori san

    ----------------------------------------
    if MasSan and $level >= 50 and maroundspell('exevo mas san', 'any', unpack(monsters)) >= numberMonsters and cancast('exevo mas san') and (paround(7) == 0 or not pvp) and $attacked.isshootable then
    cast('exevo mas san')
    wait(300,500)
    elseif GranCon and $level >= 90 and maround(7, unpack(monsters)) > 0 and $attacked.dist >= 5 or ($attacked.dist >= 1 and (paround(3) > 0 and pvp)) and cancast('exori gran con') and $attacked.isshootable then
    cast('exori gran con')
    wait(300,500)
    elseif Con and $level >= 23 and maround(7, unpack(monsters)) > 0 and $attacked.dist >= 5 or ($attacked.dist >= 1 and (paround(3) > 0 and pvp)) and cancast('exori con') and $attacked.isshootable then
    cast('exori con')
    wait(300,500)
    elseif San and $level >= 40 and maround(7, unpack(monsters)) > 0 and $attacked.dist <= 4 and cancast('exori san') and $attacked.isshootable then
    cast('exori san')
    wait(300,500)
    end

  3. #3
    Free User charms's Avatar
    Join Date
    Feb 2014
    Posts
    66
    Reputation
    15
    Rep Power
    21
    Quote Originally Posted by Cisco View Post
    --Attack Pally
    auto(100)

    local monsters = {'Dragon', 'Dragon Lord'}
    local pvp = false --check pvp
    local MasSan = true --exevo mas san
    local numberMonsters = 3 --monsters for mas san
    local GranCon = true --exori gran con
    local Con = true --exori con
    local San = true --exori san

    ----------------------------------------
    if MasSan and $level >= 50 and maroundspell('exevo mas san', 'any', unpack(monsters)) >= numberMonsters and cancast('exevo mas san') and (paround(7) == 0 or not pvp) and $attacked.isshootable then
    cast('exevo mas san')
    wait(300,500)
    elseif GranCon and $level >= 90 and maround(7, unpack(monsters)) > 0 and $attacked.dist >= 5 or ($attacked.dist >= 1 and (paround(3) > 0 and pvp)) and cancast('exori gran con') and $attacked.isshootable then
    cast('exori gran con')
    wait(300,500)
    elseif Con and $level >= 23 and maround(7, unpack(monsters)) > 0 and $attacked.dist >= 5 or ($attacked.dist >= 1 and (paround(3) > 0 and pvp)) and cancast('exori con') and $attacked.isshootable then
    cast('exori con')
    wait(300,500)
    elseif San and $level >= 40 and maround(7, unpack(monsters)) > 0 and $attacked.dist <= 4 and cancast('exori san') and $attacked.isshootable then
    cast('exori san')
    wait(300,500)
    end
    thank you!!!

 

 

Posting Permissions

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