Signup Now
Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1. #1
    Banned
    Join Date
    Aug 2014
    Posts
    315
    Reputation
    18
    Rep Power
    0

    Auto attack monsters, auto summon and auto atack rune

    Well i will release some persistent what can help u for warzones bosses or another monster on tibia

    For attack x's monster and shoot x's rune on him


    init start
    item = 'light magic missile runes'
    monster = {'Deathstrike', 'Gnomevil', 'Abyssador', 'rat', 'Cave Rat', 'Orc warrior', 'Bonelord'}
    FilledReceptacle = 19109
    Kill = false

    table.lower(monster)
    init end

    auto(2000)
    foreach creature s 'ms' do
    if table.find(monster,s.name:lower()) and s.isshootable and s.onscreen then
    Kill = true
    end
    end



    U will edit where say item = 'sudden death rune' for the rune that will shoot.
    And where say monster = {'Deathstrike', 'Gnomevil', 'Abyssador'} for add more monsters

    and for make work the attack monster and shot rune on him u need to add that too on persistent


    auto(100)
    foreach creature s 'ms' do
    if Kill and table.find(monster,s.name:lower()) and s.isshootable and s.onscreen then
    attack(s)
    useoncreature(itemid(item), s) break
    end
    end



    For auto summoner when x's boss or monster is on the screen


    local summon = {'fire elemental'}
    local monsters = {'Deathstrike', 'Gnomevil', 'Abyssador'}
    table.lower(summon)

    auto(2000)
    CreaturesSummon = 0
    foreach creature m 'us' do
    if table.find(summon,m.name:lower()) and m.isownsummon and m.onscreen then
    CreaturesSummon = CreaturesSummon + 1
    end
    end
    if maround(0, unpack(monsters)) == 1 and CreaturesSummon <= 1 then
    cast('utevo res "' ..unpack(summon))
    end


    If u want add more monsters example Zugurosh the just edit the line #2 and do that

    local monsters = {'Deathstrike', 'Gnomevil', 'Abyssador', 'Zugurosh'}


    and if u want summon other creatures then edit the line #1 and put the name of the other monster example Demon Skeleton


    local summon = {'demon skeleton'}


    and all what u need to edit is that not really hard

    Just a tip if u want to summon more fast the creature then put the spell on hotkeys
    Last edited by osiris ra; 11-19-2014 at 09:41 PM.

  2. #2
    Banned
    Join Date
    Aug 2014
    Posts
    315
    Reputation
    18
    Rep Power
    0

  3. #3
    Banned
    Join Date
    Aug 2014
    Posts
    315
    Reputation
    18
    Rep Power
    0

  4. #4
    Free User Glidarn's Avatar
    Join Date
    Dec 2013
    Location
    Stockholm, Sweden
    Posts
    472
    Reputation
    49
    Rep Power
    21
    Are people really this lazy? xD
    @ Topic Nice work though

  5. #5
    Banned
    Join Date
    Aug 2014
    Posts
    315
    Reputation
    18
    Rep Power
    0
    @Glidarn xD i made it because someone was looking for it because was doing warzone's whit some mc's xD

  6. #6
    Free User
    Join Date
    Jun 2014
    Posts
    36
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Glidarn View Post
    Are people really this lazy? xD
    @ Topic Nice work though
    lol its not lazy its for bringing multiple shooters through one wz

    Thanks
    Brad

  7. #7
    Free User
    Join Date
    Jun 2014
    Posts
    36
    Reputation
    10
    Rep Power
    0
    Thanks Bro much appreciated!

  8. #8
    Banned
    Join Date
    Aug 2014
    Posts
    315
    Reputation
    18
    Rep Power
    0
    @Bradmcfarlane check the thread i've add some persistent for warzones like auto attack monster and auto shoot runer

  9. #9
    Free User
    Join Date
    Jun 2014
    Posts
    36
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by osiris ra View Post
    @Bradmcfarlane check the thread i've add some persistent for warzones like auto attack monster and auto shoot runer

    Excellant, Thanks Bro!,

    I look forward to trying this when we finally start going wz again.

    Thanks Again
    Brad

  10. #10
    Banned
    Join Date
    Aug 2014
    Posts
    315
    Reputation
    18
    Rep Power
    0
    Code changed for auto attack monster and shoot rune on him

 

 

Posting Permissions

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