Advertisement
Guest User

SOSIG

a guest
Sep 21st, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. to buy 10 throwing sausages with the merchant window open:
  2.  
  3. /run for i = 1, GetMerchantNumItems() do if GetMerchantItemInfo(i) == "Throwing Sausage" then BuyMerchantItem(i,10) break end end
  4.  
  5. to drop them in the guild bank with the guild bank tab open:
  6.  
  7. /run for i = 0, NUM_BAG_SLOTS do for j = 1,64 do if GetContainerItemID(i,j) == 138884 then UseContainerItem(i,j) return end end end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement