Posts: 19
Threads: 5
Joined: Aug 2013
Reputation:
0
03-08-2014, 11:44 AM
Can you help me with making a training pall script?
I mean pall kill goblins on femor hills with small stones he loot from them?
And when no small stones just change for normal weapon, and when bot loot some smallstones puts it in hand and train again. Is it possible?
Please answer me as soon as possible!
zohan
Posts: 10
Threads: 3
Joined: Jan 2013
Reputation:
0
Hmm u can make that:
1. create looter with small stones
2. get into Healing Tools and then Re-user & Cures
3. turn on Equip right hand or left ( it depends where u keep your spears etc.)
And paste to macro editor this macro:
Self.Inventory.Backpack(1781)
Self.UnEquip.RightHand(Backpack)
Self.Equip.RightHand(1781)
Self.Inventory.RightHand.Count(0)
Self.Equip.RightHand(3277)
Try with this maybe will help.
Posts: 19
Threads: 5
Joined: Aug 2013
Reputation:
0
04-08-2014, 05:32 AM
(This post was last modified: 04-08-2014, 06:10 AM by zohan.)
BUMP - Help please, macro^ doesn't work.. I think it's not so hard to do just im newbie with BBot and can't do it alone! Please.. i will rep
I tried with this:
Self.Inventory.Backpack.Count(1781)
Self.UnEquip.RightHand(ToContainer)
Self.Equip.RightHand(1781)
Self.Inventory.RightHand.Count(0)
Self.Equip.Backpack(3297)
But it doesn't work aswell, what did I wrong?
Posts: 174
Threads: 24
Joined: Nov 2011
Reputation:
0
Try this
1000 {Change Weapon} Misc.ItemCountEx(1781)>20 [jump] Self.Equip.LeftHand(1781) {jump} Self.Equip.LeftHand(ID OF WEAPON)
Dont Forget REP ++
Posts: 19
Threads: 5
Joined: Aug 2013
Reputation:
0
04-08-2014, 03:27 PM
(This post was last modified: 04-08-2014, 03:36 PM by zohan.)
This script keep changing weapon over and over. Any tips how to fix it?
Posts: 174
Threads: 24
Joined: Nov 2011
Reputation:
0
1000 {Change Weapon}
Misc.ItemCountEx(1781)<0 [skip]
Self.Equip.LeftHand(ID OF WEAPON)
{skip}
Misc.ItemCountEx(1781)>20
Self.Equip.LeftHand(1781)
Self.Equip.LeftHand(1781)
Self.Equip.LeftHand(1781)
Repeat Self.Equip.LeftHand(1781) 20 times in this code
Posts: 19
Threads: 5
Joined: Aug 2013
Reputation:
0
THANKS BRO! U GOT MY REP+
Posts: 174
Threads: 24
Joined: Nov 2011
Reputation:
0
The correct one
1000 {Change Weapon}
Misc.ItemCountEx(1781)<1 [skip]
Self.Equip.LeftHand(ID OF WEAPON)
{skip}
Misc.ItemCountEx(1781)>20
Self.Equip.LeftHand(1781)
Self.Equip.LeftHand(1781)
Self.Equip.LeftHand(1781)
Repeat Self.Equip.LeftHand(1781) 20 times in this code