Log in

View Full Version : DropLoot still dont work!



loganh
08-05-2012, 00:00
Ive been trying to get this droploot script to work but I just cant seem to figure it out, I looked at a few other posts but could'nt get it working. Ive tryed reset loot <all my setloot IDS> then drop loot <and all my ids> and ive tryed other variations but just cant get anything to work. Im hunting at mintwallin and if i would have to drop the loot manually it would take so much time! I just want it to drop certain loot items whenever im below sayyy 100 cap? thanks so much if anyone could figure this out

loganh
08-10-2012, 05:51
nobody can help with this? :/

sharpie
08-21-2012, 21:00
I use this all the time to loot health potions but NOT put them into the depot when I get back. Heres what I do:


setLoot [all loot id's, etc]
[script waypoints]
IfTrue ($mycap$#number<=#10000) Goto $nlineoflabel:droploot$
gotoScriptLine 0
:droploot
resetLoot
[waypoints to walk to your drop point]
setLoot [ALL ID'S OF ITEMS YOU WANT TO DROP]
dropLootOnGround
resetLoot
[waypoints to walk to your beginning again]
gotoScriptLine 0


For example, say you're looting energy rings and gold. You want to drop the rings but keep the gold. It would look something like this:

#energy ring
setLoot EB 0B
#gold
setLoot D7 0B
[moving through waypoints]
IfTrue ($mycap$#number<=#10000) Goto $nlineoflabel:droploot$
gotoScriptLine 0
:droploot
resetLoot
setLoot EB 0B
[moved to drop zone]
dropLootOnGround
Rings are now on the ground.
resetLoot
[walk to beginning of waypoints]
gotoScriptLine 0


If you have issues still, just post your script and let me take a look at it. It shouldn't be too difficult