Page 1 of 1

looting already dead mobs

Posted: Sun Jun 03, 2012 5:05 pm
by freeload80
I`m tries to do waypoints to kill mobs for some waypoints, but not loot them. After kiling all mobs i want to go back and loot them all on the way.

It look somthing like this:
<?xml version="1.0" encoding="utf-8"?><waypoints>
<!-- # 1 --><waypoint x="724" z="940" y="-147"> changeProfileOption("LOOT", false)</waypoint>
<!-- # 2 --><waypoint x="773" z="1073" y="-177"> </waypoint>
<!-- # 3 --><waypoint x="1026" z="1031" y="-229"> </waypoint>
<!-- # 4 --><waypoint x="1088" z="1053" y="-236"> </waypoint>
<!-- # 5 --><waypoint x="1278" z="998" y="-256"> </waypoint>
<!-- # 6 --><waypoint x="1424" z="1064" y="-256"> </waypoint>
<!-- # 7 --><waypoint x="1155" z="1240" y="-249"> </waypoint>
<!-- # 8 --><waypoint x="1357" z="1229" y="-253"> </waypoint>
<!-- # 9 --><waypoint x="1391" z="1273" y="-258"> </waypoint>
<!-- # 10 --><waypoint x="1464" z="1230" y="-262"> </waypoint>
<!-- # 11 --><waypoint x="1630" z="1530" y="-372"> changeProfileOption("LOOT", true) </waypoint>

<!-- # 12 --><waypoint x="1462" z="1252" y="-266"> </waypoint>
<!-- # 13 --><waypoint x="1233" z="1213" y="-245"> </waypoint>
<!-- # 14 --><waypoint x="1155" z="1238" y="-249"> </waypoint>
<!-- # 15 --><waypoint x="1413" z="1077" y="-256"> </waypoint>
<!-- # 16 --><waypoint x="1235" z="1013" y="-250"> </waypoint>
<!-- # 17 --><waypoint x="783" z="1073" y="-179"> </waypoint>
<!-- # 18 --><waypoint x="720" z="941" y="-145"> </waypoint>
</waypoints>

the problem is that it`s not looting any dead mobs.
So how to loot alredy dead mobs?

P.S. sorry for my english :).

Re: looting already dead mobs

Posted: Sun Jun 03, 2012 7:39 pm
by rock5
Normally the bot only loots after battle. If it is not fighting on the way back then it will not loot. You can tell it to loot by using

Code: Select all

player:lootAll()
at some of the waypoints.

Re: looting already dead mobs

Posted: Sun Jun 03, 2012 7:53 pm
by freeload80
Thx, it`s looting now.