[REQ] Teir Stone Farming Via Guild Castle Vault
Posted: Tue May 24, 2011 7:24 am
broswing the forums i found a intresting fusion control addon by rock5 i was quite impressed with what really caught my eye was this bit of code that automatically purchased belts:
obviously this system uses t3 belts while the standard now is t4 which is only available via limo. obviously a level 10 bot does not have a functional means to access limo so i got to thinking and this is my plan and this is where my request comes in.
1.Bot mushrooms untill lv3 ( REQ: proper synthax for "If Player.level == >3 than load paths;"
2. bot small bears until 9
3. bot large bears till 11
4. at 11 turn in bear claw daily for 100 phirus tokens
5. begin waypoint path to varanas
6. unlock arcane transmuter
7. purchase 3 extra charges from Varanas charge vendor (REQ: function to enter secondary password when prompted)
8. relocate to guild hall
9. enter my botting castle
10. retrieve the appropriate number of belts (REQ: havent the slightest idea how/if it is possiable for the bot to currently filter the guild vault and remove a specific number of a named item
11. relocate to mailbox
12. run rock5's fusioncontrol addon and mail the fusion stones to the appropriate alt.
13. log out and fastlogin to the next alt
14. repeat process till you have a pile of t9 stones ^_^
clearly its gonna be allot of work but i think its managable i wouldnt expect anyone to do it for me but if anyone could help with the 3 functions im confused about i would greatly appreciate it ^_^
Code: Select all
<!-- # 8 --><waypoint x="-21941" z="3955">
local tobuy = Fusion_NumberToBuy()
local npcname = RoMScript("TEXT('Sys110871_name')") -- Montestaire
local beltname = RoMScript("TEXT('Sys221544_name')") -- Gold-wrapped Belt
repeat
local beltcount = inventory:getItemCount(221544) -- number of belts you already have
if beltcount >= tobuy then break end
player:target_NPC(npcname); yrest(2000);
sendMacro("ChoiceOption(1);"); yrest(2000); -- open store
BuyItemByName(beltname, tobuy - beltcount)
yrest(10000)
until false
</waypoint>
1.Bot mushrooms untill lv3 ( REQ: proper synthax for "If Player.level == >3 than load paths;"
2. bot small bears until 9
3. bot large bears till 11
4. at 11 turn in bear claw daily for 100 phirus tokens
5. begin waypoint path to varanas
6. unlock arcane transmuter
7. purchase 3 extra charges from Varanas charge vendor (REQ: function to enter secondary password when prompted)
8. relocate to guild hall
9. enter my botting castle
10. retrieve the appropriate number of belts (REQ: havent the slightest idea how/if it is possiable for the bot to currently filter the guild vault and remove a specific number of a named item
11. relocate to mailbox
12. run rock5's fusioncontrol addon and mail the fusion stones to the appropriate alt.
13. log out and fastlogin to the next alt
14. repeat process till you have a pile of t9 stones ^_^
clearly its gonna be allot of work but i think its managable i wouldnt expect anyone to do it for me but if anyone could help with the 3 functions im confused about i would greatly appreciate it ^_^