Signup Now
Results 1 to 3 of 3
  1. #1
    Free User
    Join Date
    Feb 2014
    Posts
    45
    Reputation
    10
    Rep Power
    0

    Drop items on sqm

    hello

    i need script for droping items like steel shield/plate legs/crossbow and longsword in this sqm 33058 31656 8
    should i have this items in my lootlist with action loot or with action drop?

  2. #2
    Free User
    Join Date
    Feb 2014
    Posts
    45
    Reputation
    10
    Rep Power
    0
    refresh

  3. #3
    Wind Tester
    Join Date
    Dec 2013
    Location
    Warsaw, Poland
    Posts
    2,569
    Reputation
    149
    Rep Power
    28
    @Zdzichukopytko You can add it to looting list and put category, lets say 'd', then just add this to action in waypoint
    init start
    local x, y, z = 33168, 31809, 7
    local category = 'd'
    init end

    foreach lootingitem i category do
    dropitems(ground(x, y, z), i.id)
    wait(300, 500)
    end

    Or this to action in scripter/persistant
    init start
    local x, y, z = 33168, 31809, 7
    local category = 'd'
    init end

    auto(200)
    foreach lootingitem i category do
    dropitems(ground(x, y, z), i.id)
    wait(300, 500)
    end

 

 

Posting Permissions

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