BBot - The best bot of the world

Full Version: A question.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I loot from the floor to my backpack?
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
(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?
(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!)