Signup Now
Page 3 of 6 FirstFirst 12345 ... LastLast
Results 21 to 30 of 51
  1. #21
    Wind Powered wybocenooba's Avatar
    Join Date
    Jan 2014
    Posts
    409
    Reputation
    16
    Rep Power
    21
    im not stupid ... if i have monsters on targeting list and loot from it in loot list it not work on some monsters

  2. #22
    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
    im not stupid ... if i have monsters on targeting list and loot from it in loot list it not work on some monsters
    didn't said that. some errors in debug console? categories are setted or u don't use categories for it?

  3. #23
    Wind Powered wybocenooba's Avatar
    Join Date
    Jan 2014
    Posts
    409
    Reputation
    16
    Rep Power
    21
    if dead monster name is "dead hydra, dead behemoth or dead deepling... he taking loot but if dead name is remains of mummy or slain demon it not work its my opinion

  4. #24
    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
    if dead monster name is "dead hydra, dead behemoth or dead deepling... he taking loot but if dead name is remains of mummy or slain demon it not work its my opinion
    aaah ok, ty
    this should work

    init start
    local conts = {'Slain', 'Dead', 'Remains'}
    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
    for _, from in ipairs(conts) do
    from = from:lower()
    for i = 0, windowcount() - 1 do
    local cont = getcontainer(i).name:lower()
    if cont:find(from) then
    if itemcount(m.id, i) > 0 then
    moveitems(m.id, m.destination, tostring(i), 100) waitping(1, 1.3)
    end
    end
    end
    end
    end
    Last edited by mistgun; 10-06-2014 at 04:49 PM.

  5. #25
    Wind Powered wybocenooba's Avatar
    Join Date
    Jan 2014
    Posts
    409
    Reputation
    16
    Rep Power
    21
    error in Persistent script NewPersistentScript1:
    ["init end"]:NewPersistentScript1:11: '=' expected near 'end'

  6. #26
    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
    error in Persistent script NewPersistentScript1:
    ["init end"]:NewPersistentScript1:11: '=' expected near 'end'
    now, init start block was in commentt

  7. #27
    Wind Powered wybocenooba's Avatar
    Join Date
    Jan 2014
    Posts
    409
    Reputation
    16
    Rep Power
    21
    error in Persistent script NewPersistentScript1:
    ["end"]:NewPersistentScript1:26: '<eof>' expected near 'end'

  8. #28
    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
    error in Persistent script NewPersistentScript1:
    ["end"]:NewPersistentScript1:26: '<eof>' expected near 'end'
    it works here/

  9. #29
    Wind Powered wybocenooba's Avatar
    Join Date
    Jan 2014
    Posts
    409
    Reputation
    16
    Rep Power
    21
    ahh sorry im copy

    end
    end

    now im go test it

  10. #30
    Wind Powered wybocenooba's Avatar
    Join Date
    Jan 2014
    Posts
    409
    Reputation
    16
    Rep Power
    21
    now its something wrong with looting sometimes bot take 50% of loot like loot of monster is 100gp 20gp bot take 20gp and stop dont take 100gp but not always

 

 

Posting Permissions

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