Signup Now
Page 2 of 6 FirstFirst 1234 ... LastLast
Results 11 to 20 of 51
  1. #11
    Free User Zajdel's Avatar
    Join Date
    Mar 2014
    Posts
    91
    Reputation
    10
    Rep Power
    21
    It doesn't work that way :P

    I will give You example how I want it to work.
    I will hunt without looting and my mate will follow me and open all bodies that I killed and loot them. And he wont do it manualy, only open dead body and bot will loot items to BP's.

    Your first script was good, but I just asking its possible to separate it.

  2. #12
    Free User
    Join Date
    May 2014
    Posts
    6
    Reputation
    10
    Rep Power
    0
    bump! I need this too someone help?

  3. #13
    Wind Powered wybocenooba's Avatar
    Join Date
    Jan 2014
    Posts
    409
    Reputation
    16
    Rep Power
    21
    why with script and looting bot wait 2 sec then take loot? with hand i can do it faster but my mouse its broke ;/

  4. #14
    Moderator mistgun's Avatar
    Join Date
    Dec 2013
    Location
    Lodz, Poland
    Posts
    1,821
    Reputation
    220
    Rep Power
    26
    @Zajdel @panlu @wybocenooba
    Try this bro:
    set backpacks inside looting section "Destination"
    init start        
    local monsters = {'Dwarf', 'Demon'} -- name of monster must be f.e "Dead Dwarf" or just "Dwarf", if You type f.e "Dwarf Soldier" it wont work
    local clickWait = {10, 30} -- it means X to X ms
    local pressWait = {10, 30} -- it means X to X ms
    local category = 'c' -- leave empty if You want to take all items (non category)


    -- Don't touch below!
    setsetting('Settings/MouseMoveSpeed', 'Instantaneous')
    setsetting('Settings/ScrollMode', 'Click on scrollbar')
    setsetting('Settings/ClickWaitTime', tostring(clickWait))
    setsetting('Settings/PressWaitTime', tostring(pressWait))
    init end


    auto(50)
    foreach lootingitem m category do
    for i, j in ipairs(monsters) do
    local count = itemcountcorpse(j, m.id)
    moveitemsfromcorpse(j, m.destination, count, m.id)
    end
    end
    Last edited by mistgun; 09-14-2014 at 06:33 PM.

  5. #15
    Free User Zajdel's Avatar
    Join Date
    Mar 2014
    Posts
    91
    Reputation
    10
    Rep Power
    21
    Thanks bro, I will test it when I will be at home.

  6. #16
    Wind Powered wybocenooba's Avatar
    Join Date
    Jan 2014
    Posts
    409
    Reputation
    16
    Rep Power
    21
    its work good but idk what is this

    local monsters = {'Dwarf', 'Demon'} -- name of monster must be f.e "Dead Dwarf" or just "Dwarf", if You type f.e "Dwarf Soldier" it wont work

  7. #17
    Wind Powered wybocenooba's Avatar
    Join Date
    Jan 2014
    Posts
    409
    Reputation
    16
    Rep Power
    21
    @mistgun can you make this script without monsters name i need take gp from all monsters??

  8. #18
    Moderator mistgun's Avatar
    Join Date
    Dec 2013
    Location
    Lodz, Poland
    Posts
    1,821
    Reputation
    220
    Rep Power
    26
    Quote Originally Posted by wybocenooba View Post
    @mistgun can you make this script without monsters name i need take gp from all monsters??
    use this then

    -- All monsters version
    init start
    local clickWait = {10, 30} -- it means X to X ms
    local pressWait = {10, 30} -- it means X to X ms
    local category = '' -- leave empty if You want to take all items (non category)
    -- Don't touch below!
    setsetting('Settings/MouseMoveSpeed', 'Instantaneous')
    setsetting('Settings/ScrollMode', 'Click on scrollbar')
    setsetting('Settings/ClickWaitTime', tostring(clickWait))
    setsetting('Settings/PressWaitTime', tostring(pressWait))
    init end


    auto(50)
    foreach lootingitem m category do
    foreach settingsentry e 'Targeting/Creatures' do
    local name = getsetting(e, 'Name')
    local count = itemcountcorpse(name, m.id)
    moveitemsfromcorpse(name, m.destination, count, m.id)
    end
    end

  9. #19
    Wind Powered wybocenooba's Avatar
    Join Date
    Jan 2014
    Posts
    409
    Reputation
    16
    Rep Power
    21
    @mistgun this script is good but when im trying use it on demon, hero, ghoul, mummy it not working why?

  10. #20
    Moderator mistgun's Avatar
    Join Date
    Dec 2013
    Location
    Lodz, Poland
    Posts
    1,821
    Reputation
    220
    Rep Power
    26
    Quote Originally Posted by wybocenooba View Post
    @mistgun this script is good but when im trying use it on demon, hero, ghoul, mummy it not working why?
    add those creatures to targeting.

 

 

Posting Permissions

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