Signup Now
Page 1 of 2 12 LastLast
Results 1 to 10 of 18
  1. #1
    Free User joraanpe's Avatar
    Join Date
    Dec 2013
    Posts
    212
    Reputation
    36
    Rep Power
    21

    Targetting Spells setsetting?

    Heya, is there any current way to deal and switch a targeting spell by setsettings? Ive been checking the docs but didnt fint something similar, and the bot doesnt give me the the setsetting path.

    if there isnt, it would be very usefull to implement

  2. #2
    Administrator Lucas Terra's Avatar
    Join Date
    Dec 2013
    Location
    Brazil
    Posts
    2,202
    Reputation
    141
    Rep Power
    10
    I'll be doing it soon.

    Haven't done it yet because it's a bit tricky, considering that the list of spells changes based on the level/vocation of your targeting profile.

  3. #3
    Free User joraanpe's Avatar
    Join Date
    Dec 2013
    Posts
    212
    Reputation
    36
    Rep Power
    21
    ok amazing! I was basically looking for it to be able to make a hotkey for area rune shooter which could shoot diferent strike spells depending the monsters and the minimum amount.

    Hope u can figure it out soon

  4. #4
    Free User
    Join Date
    Dec 2013
    Posts
    106
    Reputation
    19
    Rep Power
    21
    so there is any other way to do this for now?

  5. #5
    Moderator RoxZin xD's Avatar
    Join Date
    Dec 2013
    Location
    Rio de Janeiro
    Posts
    4,914
    Reputation
    109
    Rep Power
    31
    Quote Originally Posted by timmay View Post
    so there is any other way to do this for now?
    Yes, ofc. Making it cast spells through actions/persistents.



    Troubled Animals Quest [100+]
    ALL
    Feyrist Animals Surface [160+]
    RP
    Feyrist Silencers Underground X1 [180+]
    RP | EK
    Feyrist Silencers Underground X2 [200+]
    RP | EK
    Feyrist Silencers Surface [210+]
    RP | EK
    Rathleton Sewers [240+]
    RP
    Glooth Fairy [350+]
    ED/MS
    Hardcore Draken Walls [400+]
    EK

  6. #6
    Free User
    Join Date
    Dec 2013
    Posts
    106
    Reputation
    19
    Rep Power
    21
    can you give maybe an example?

  7. #7
    Free User Donatello's Avatar
    Join Date
    Dec 2013
    Location
    Tuscany, Italy
    Posts
    398
    Reputation
    51
    Rep Power
    21
    Quote Originally Posted by timmay View Post
    can you give maybe an example?
    Tell me how do you want it and i'll do it for you.

  8. #8
    Free User
    Join Date
    Dec 2013
    Posts
    106
    Reputation
    19
    Rep Power
    21
    if more than 2 monster and im atacking one of tehm shoot gfb else use exori flam

  9. #9
    Free User Donatello's Avatar
    Join Date
    Dec 2013
    Location
    Tuscany, Italy
    Posts
    398
    Reputation
    51
    Rep Power
    21
    Quote Originally Posted by timmay View Post
    if more than 2 monster and im atacking one of tehm shoot gfb else use exori flam
    It is just an example, can be improved a hundred thousand more:
    init start
    local CREATURES = {"earth elemental", "nightstalker"}
    local ATK_TYPE = {RUNE = {NAME = "great fireball rune", COUNT = 2}, SPELL = {NAME = "exori flam"}}
    init end

    if maround(7, unpack(CREATURES)) >= ATK_TYPE.RUNE.COUNT then
    shootarearune(ATK_TYPE.RUNE.NAME, ATK_TYPE.RUNE.COUNT, true, unpack(CREATURES))
    waitping()
    else
    if $targetingtarget.isshootable and table.find(CREATURES, $target.name) and cancastspell(ATK_TYPE.SPELL.NAME) then
    cast(ATK_TYPE.SPELL.NAME)
    waitping()
    end
    end
    Last edited by Donatello; 12-21-2013 at 02:02 AM.

  10. #10
    Free User
    Join Date
    Dec 2013
    Posts
    106
    Reputation
    19
    Rep Power
    21
    its using spells but no gfb
    Last edited by timmay; 12-20-2013 at 08:20 PM.

 

 

Posting Permissions

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