View Full Version : Druid IM BUYING SOFT BOOTS REFILLER
lopid600
06-26-2013, 01:06 PM
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 :p
Hypno
06-26-2013, 01:21 PM
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 :) )
XtrmJosh
06-26-2013, 01:32 PM
You're posting this in the tutorials section because.......?
lopid600
06-26-2013, 01:35 PM
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?
XtrmJosh
06-26-2013, 10:08 PM
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?
Make some basic AFK scripts following my video tutorial, it's in the same section you posted this thread in. Once you understand how the code works, you will have no problem refilling soft boots.
lopid600
Self.WithdrawMoney(Self.ItemCount(6530)*10000)
----
Walker.ConditionalGoto(Self.ItemCount(6530) > 0, "RefillSofts", "DontRefillSofts")
And a full 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
lopid600
06-28-2013, 03:51 AM
Thanks men, always a lot of helpful people in forums :p
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.