Signup Now
Page 2 of 18 FirstFirst 123412 ... LastLast
Results 11 to 20 of 180

Thread: Spells Attacker

  1. #11
    Free User L!p3's Avatar
    Join Date
    Dec 2013
    Location
    Brazil
    Posts
    52
    Reputation
    21
    Rep Power
    21
    Quote Originally Posted by Leonardo View Post
    Fixed bugs with Hppc settings and utito tempo, now you can add a third parameter Monsters inside each spell entry, for example:

    {Name = "exori gran", Amount = 5, Monsters = {"Nightmare", "Nighmare Scion"}}


    Will set this spell to attack this list of monsters instead of the primary list. Very usefull if you want to attack different monsters with different spells.
    Mate, it's not working when you specify the list of monsters. It simply stop casting the spell on any monster.

  2. #12
    Moderator Leonardo's Avatar
    Join Date
    Dec 2013
    Location
    Brazil
    Posts
    758
    Reputation
    77
    Rep Power
    22
    Quote Originally Posted by L!p3 View Post
    Mate, it's not working when you specify the list of monsters. It simply stop casting the spell on any monster.
    Will check this whenever is possible.

    Quote Originally Posted by joraanpe View Post
    Hey mate, how can we set this up to work withh spells on certain amount of monsters but in a higher amount use area rune?
    Actually it's not possible for runes, only spells.

  3. #13
    Wind Powered
    Join Date
    Dec 2013
    Location
    dvscripts.com
    Posts
    7,105
    Reputation
    433
    Rep Power
    39
    i was trying to make setup for that

    Consider = getuseroption('SafeExori')


    and in setup i puted

    {
    "type": "checkbox",
    "name": "SafeExori",
    "text": "SafeExori",
    "value": false
    }


    but even if i mark or not its just reading its like TRUE, not working False when i Unmark, any idea how to make setup with that?

  4. #14
    Moderator Leonardo's Avatar
    Join Date
    Dec 2013
    Location
    Brazil
    Posts
    758
    Reputation
    77
    Rep Power
    22
    Quote Originally Posted by Dworak View Post
    i was trying to make setup for that

    Consider = getuseroption('SafeExori')


    and in setup i puted

    {
    "type": "checkbox",
    "name": "SafeExori",
    "text": "SafeExori",
    "value": false
    }


    but even if i mark or not its just reading its like TRUE, not working False when i Unmark, any idea how to make setup with that?
    Better use this (just add function to the code, and edit the Consider line):

    function pvpworld()
    return table.find({"Astera", "Calmera", "Candia", "Celesta", "Fidera", "Guardia", "Harmonia", "Honera", "Luminera", "Magera", "Menera", "Nerana", "Olympa", "Pacera", "Refugia", "Secura", "Unitera"}, $worldname) == nil
    end

    -- then the config

    Config.Players.Consider = pvpworld(),
    ...


    This will atuomatically set option to true if you are in a pvp world.

  5. #15
    Free User Flaikiee's Avatar
    Join Date
    Dec 2013
    Location
    São Paulo, Brazil
    Posts
    138
    Reputation
    11
    Rep Power
    21
    Nice job, thank you mate.. rep+
    REP+ if i helped you.

  6. #16
    Wind Powered
    Join Date
    Dec 2013
    Location
    dvscripts.com
    Posts
    7,105
    Reputation
    433
    Rep Power
    39
    Quote Originally Posted by Leonardo View Post
    Better use this (just add function to the code, and edit the Consider line):

    function pvpworld()
    return table.find({"Astera", "Calmera", "Candia", "Celesta", "Fidera", "Guardia", "Harmonia", "Honera", "Luminera", "Magera", "Menera", "Nerana", "Olympa", "Pacera", "Refugia", "Secura", "Unitera"}, $worldname) == nil
    end

    -- then the config

    Config.Players.Consider = pvpworld(),
    ...


    This will atuomatically set option to true if you are in a pvp world.
    Yes i know i could do that, but the problem is that on some pvp worlds people won the servers and they can hunt with Exori even if player is on screen with Green mode and not skulleds, its why i want to TRUE/FALSE that, its possible to do it in any way which i show ?

  7. #17
    Banned
    Join Date
    Dec 2013
    Location
    Porto Alegre - RS
    Posts
    524
    Reputation
    61
    Rep Power
    0
    Quote Originally Posted by Dworak View Post
    Yes i know i could do that, but the problem is that on some pvp worlds people won the servers and they can hunt with Exori even if player is on screen with Green mode and not skulleds, its why i want to TRUE/FALSE that, its possible to do it in any way which i show ?

    Try it fasty with
    Code:
    {
     "type"  : "group",
     "name"  : "Configuration",
     "children" : 
         [
          {
           "type" : "checkbox",
           "name" : "SafeExori",
           "text" : "SafeExori",
           "value" : false
          }
    ]
    }
    and use another variable

    Code:
    SafeExori = getuseroption("SafeExori")

    Than to check create

    Code:
    if SafeExori than
    say("IT works")
    else
    say("Bad try")
    end

  8. #18
    Wind Powered
    Join Date
    Dec 2013
    Location
    dvscripts.com
    Posts
    7,105
    Reputation
    433
    Rep Power
    39
    yes its saying this words, but i want to change it in Persistent
    Consider =true
    i want to there if i CHECK BOX to be True and if Uncheck to be False, any solution how to make that ?

  9. #19
    Banned
    Join Date
    Dec 2013
    Location
    Porto Alegre - RS
    Posts
    524
    Reputation
    61
    Rep Power
    0
    You need to add auto(100), if not the bot will check only the first unchecked option!

  10. #20
    Wind Powered
    Join Date
    Dec 2013
    Location
    dvscripts.com
    Posts
    7,105
    Reputation
    433
    Rep Power
    39
    i know that, i was doing it and not working, but i will try again and give a reply there

    i was trying lineedit and checkbox and i was writting true/false and it won't work
    Any way to fix because i want make setup for that
    Last edited by Dworak; 12-24-2013 at 10:52 AM.

 

 

Posting Permissions

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