iv broken down the code into multiple files and the lua is setup so that a lot of the code can be reused so that there isnt that much of it the walker itself will be long but i dont really see that being much of an issue maybe @DarkstaR could shed some light on some problems that might run into latter down the line now right now the luas are set like this
and the potion settings are reused for every task and you will just reset it based on what you needCode:--tasker lua script -- add your potion ids here 0 to disable --potion 1 settings Potion1 = 266 Potion1limit = 70 Potion1min = 20 -- potion 2 settings Potion2 = 268 Potion2limit = 70 Potion2min = 20 --potion cost here Potion1cost = 45 Potion2cost = 50 -- add your ammo/rune ids here 0 to disable Ammo1 = 0 Ammo1limit = 0 Ammo2 = 0 Ammo2limit = 0 -- ammo cost here 0 to disable Ammo1cost = 0 Ammo2cost = 0 --Set Cap Min Capmin = 50 -- Set the number of cap you want to use as min --Bpreseter Stackablebp = 2869 -- Stackable bp default blue Goldbp = 2871 -- Gold bp Default golden Rarebp = 2868 -- Rare loot bp Default Purple
this way i can use the same banker backpacker ammo buyer depositor all the same
lua 2 is set like this
--Set what task you would like to do options are
--id = 1 for Crocodiles for level 6-49
--id = 2 for badgers and mammoths for level 6-49
--
IsAdamsTask = 2
at some point in time after i finish the starting ones ill add support for other stuff into this 2 when needed but at the moment this is just a controller for the selection of what task you want to do each id will select a section of the walker each dedicated to one task when the task finish it re loops to the start and reruns from there theres also alot of task specific code being done in oneliners but as far as the lua being over sized i dont think it will be any longer then my new frontier script by the time its done and i dont really see any problems with the walker seeing as how a few of my scripts are all ready crazy fucking long lol i really dont see me hitting a rock wall with it but will see worst comes to worst ill break it down into level ranks but like i said i just don't see the size being an issue