BBot - The best bot of the world
A question. - Printable Version

+- BBot - The best bot of the world (https://forums.bmega.net)
+-- Forum: Support (https://forums.bmega.net/forum-6.html)
+--- Forum: Support & Help (https://forums.bmega.net/forum-8.html)
+--- Thread: A question. (/thread-5877.html)



A question. - Criiz - 12-15-2012

How can I loot from the floor to my backpack?


RE: A question. - spiff26 - 12-15-2012

For that you need to use a macro, type
Code:
1000 {Pick Up Loot} item:=ID_Item X:=Self.X() Y:=Self.Y() Z:=Self.Z() Map.PickUp(!item!, -1, 0, !X!, !Y!, !Z!)

The command Map.PickUp(ID, Count, Container, X, Y, Z) pick up an item on the ground.

List of commands


RE: A question. - Criiz - 12-15-2012

(12-15-2012, 03:42 AM)spiff26 Wrote: For that you need to use a macro, type
Code:
1000 {Pick Up Loot} item:=ID_Item X:=Self.X() Y:=Self.Y() Z:=Self.Z() Map.PickUp(!item!, -1, 0, !X!, !Y!, !Z!)

The command Map.PickUp(ID, Count, Container, X, Y, Z) pick up an item on the ground.

List of commands

It doesnt work, I just have to copy it at macros and enable it right?, and put ej; gold coin in that X like 3031, right?


RE: A question. - spiff26 - 12-15-2012

(12-15-2012, 04:29 AM)Criiz Wrote:
(12-15-2012, 03:42 AM)spiff26 Wrote: For that you need to use a macro, type
Code:
1000 {Pick Up Loot} item:=ID_Item X:=Self.X() Y:=Self.Y() Z:=Self.Z() Map.PickUp(!item!, -1, 0, !X!, !Y!, !Z!)

The command Map.PickUp(ID, Count, Container, X, Y, Z) pick up an item on the ground.

List of commands

It doesnt work, I just have to copy it at macros and enable it right?, and put ej; gold coin in that X like 3031, right?


U need change the ID_Item by item ID, like this
Code:
1000 {Pick Up Loot} item:=3031 X:=Self.X() Y:=Self.Y() Z:=Self.Z() Map.PickUp(!item!, -1, 0, !X!, !Y!, !Z!)