Signup Now
Results 1 to 5 of 5
  1. #1
    Free User
    Join Date
    Feb 2017
    Posts
    10
    Reputation
    10
    Rep Power
    0

    Question Doest this function exist?

    Hi brothers, im looking for a script that when a gargoyle attacks you it's okey but when other monster attacks you, your character will move to [X] position. For example im training tarpit tombs and suddenly a monster that i don't want to attack me appears and starts hitting me (vampire, ghoul, mummy etc) i want my char to move to a certain position( the pacman room tp for example). Thanks!!

  2. #2
    Free User MenelZThais's Avatar
    Join Date
    Aug 2016
    Location
    Poland
    Posts
    253
    Reputation
    10
    Rep Power
    16
    Try this:

    Code:
    auto(1000)
    
    if $mattacker ~= 'Gargoyle' then
            gotolabel('X', 'X')
    end

  3. #3
    Free User
    Join Date
    Feb 2017
    Posts
    10
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by MenelZThais View Post
    Try this:

    Code:
    auto(1000)
    
    if $mattacker ~= 'Gargoyle' then
            gotolabel('X', 'X')
    end
    I tried it but it doens't work because when you are attacking a monster the cavebot stop making you walk. Look i need this script because i train in tarpit tombs, next to the pacman room tp. Can you make a script saying that when a monster that is not a gargoyle attacks you, you move one square to the right or forward (configurable)?.

  4. #4
    Free User
    Join Date
    Mar 2017
    Posts
    8
    Reputation
    10
    Rep Power
    0
    disable cavebot and targeting then gotolabel x,y

  5. #5
    Wind Powered
    Join Date
    Mar 2017
    Posts
    153
    Reputation
    46
    Rep Power
    15
    auto(1000)

    if $mattacker ~= 'Gargoyle' then
    setsetting("Targeting/Enabled", "no")
    gotolabel('X', 'X')
    else
    setsetting("Targeting/Enabled", "yes")

    end

 

 

Tags for this Thread

Posting Permissions

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