I like to level up magic level, but i need and script to make my character refill soft boots. Any idea? Share your scripts please![]()
I like to level up magic level, but i need and script to make my character refill soft boots. Any idea? Share your scripts please![]()
Make waypoints in venore with food on you, make a checker for worn softboots, if worn go to label SoftRefill, if not worn go to label keepgoing (this is just a poor example, im sure theres alot of better ways to do this)
You're posting this in the tutorials section because.......?
You cannot fail, so I'm lowering the standard.
u.u becuz i dont know where it can be posted. Please josh help mw with the reply of Hypno. How i can do that?
@lopid600
lua code:Self.WithdrawMoney(Self.ItemCount(6530)*10000)
----
Walker.ConditionalGoto(Self.ItemCount(6530) > 0, "RefillSofts", "DontRefillSofts")
And a full code:
lua code:
registerEventListener(WALKER_SELECTLABEL, "onWalkerSelectLabel")
function onWalkerSelectLabel(labelName)
if labelName == 'Bank' then
Walker.Stop()
wait(500, 1200)
Self.WithdrawMoney(Self.ItemCount(6530)*10000)
wait(200, 600)
Walker.Start()
elseif labelName == 'CheckWornSofts' then
Walker.ConditionalGoto(Self.ItemCount(6530) > 0, "RefillSofts", "DontRefillSofts")
end
end
Last edited by Adky; 06-28-2013 at 03:49 AM.
Thanks men, always a lot of helpful people in forums![]()