
Untitled
By: a guest on
Apr 26th, 2012 | syntax:
Rails | size: 0.64 KB | hits: 95 | expires: Never
#Buy_Supply#
manas_to_buy = mp_to_buy - itemcount("mana potion")
uhps_to_buy = uhp - itemcount("ultimate health potion")
wait(200,300)
opentrade()
wait(200,300)
#buying mana potions
move_times_mp = (manas_to_buy / 100)
for i in 0..move_times_mp
buyitems("mana potion",manas_to_buy)
moveitems(getid("mana potion"), main_bp, supp_bp)
manas_to_buy -= 100
wait(300,400)
end
#buying UHPs
move_times_uhp = (uhps_to_buy / 100)
for i in 0..move_times_uhp
buyitems("ultimate health potion",uhps_to_buy)
moveitems(getid("mana potion"), main_bp, supp_bp)
uhps_to_buy -= 100
wait(300,400)
end