i'm using windows 7 and runing bot as admin right now:
my .lua file:
lua code:
leaveHP = 10 -- set how much healths to leave
BuyHP = 40 -- set how much healths to buy
prieceHP = 100 -- set the priece of the potion [45 normal, 100 strong, 190 great, 310 ultimate]
itemHP = 236 -- set the item ID of the potion [266 to normal, 236 to strong]
--Mana potions
leaveMP = 20 -- set how much manas to leave
BuyMP = 100 -- set how much manas to buy
prieceMP = 50 -- set the priece of the potion [50 normal, 80 strong]
itemMP = 268 -- set the item ID of the potion [238 to normal]
--General
LeaveCap = 20 -- set the cap to leave the cave
also i have these one liners for the instance:
lua code:
Self.SayToNpc({'hi', 'ticket', 'yes', 'deposit all', 'yes'}, 65) wait(1700) Self.SayToNpc({'withdraw'.. ((BuyHP-Self.ItemCount(itemHP))*prieceHP)+((BuyMP-Self.ItemCount(itemMP))*prieceMP)}) wait(500) Self.SayToNpc({'yes'}, 65)
lua code:
Walker.Stop() Creature.Follow('Sigurd') wait(4000) Self.SayToNpc({'hi', 'vials', 'yes', 'trade'}, 65) wait(2000) Self.ShopBuyItemsUpTo(itemMP, buyMP) wait(1600) Self.ShopBuyItemsUpTo(itemHP, buyHP) wait(1600) Walker.Start()
]lua code:
dofile('forgee.lua') Self.ReachDepot() wait(500) Self.DepositItems(9689,8031,10275,9692,5894,11485,5880)
btw everytime i load the kazzsetings.lua it auto closes itself. its happening to every file i make. but if i copy the settings with the same text from a file made from other it work. i'm using sublime.