Advertisement
Guest User

test

a guest
Oct 31st, 2014
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.52 KB | None | 0 0
  1. local money = {2160, 25}
  2. local items = {2189, 2191, 2187, 2190, 2181, 2188, 8921}
  3. local storage = 10003
  4. local addon_male = 138
  5. local addon female = 120
  6.  
  7. function onUse(cid, item, fromPosition, itemEx, toPosition)
  8.  
  9.     if getPlayerStorageValue(cid, 100003) < 1 then
  10.         if getPlayerItemCount(cid, money[1]) >= money[2] and getPlayerItemCount(cid, items[1]) >= 1 and getPlayerItemCount(cid, items[2]) >= 1 and getPlayerItemCount(cid, items[3]) >= 1 and getPlayerItemCount(cid, items[4]) >= 1 and getPlayerItemCount(cid, items[5]) >= 1 and getPlayerItemCount(cid, items[6]) >= 1 and getPlayerItemCount(cid, items[7]) >= 1 then
  11.             doPlayerRemoveItem(cid, money[1], money[2])
  12.             doPlayerRemoveItem(cid, items[1], 1)
  13.             doPlayerRemoveItem(cid, items[2], 1)
  14.             doPlayerRemoveItem(cid, items[3], 1)
  15.             doPlayerRemoveItem(cid, items[4], 1)
  16.             doPlayerRemoveItem(cid, items[5], 1)
  17.             doPlayerRemoveItem(cid, items[6], 1)
  18.             doPlayerRemoveItem(cid, items[7], 1)
  19.             doPlayerSendTextMessage(cid, 22, "You won a full mage addon!")
  20.             doSendAnimatedText(getPlayerPosition(cid), "", TEXTCOLOR_ORANGE)
  21.             doPlayerAddOutfit(cid, addon_male, 3)
  22.             doPlayerAddOutfit(cid, 120, 3)
  23.             setPlayerStorageValue(cid, addon female, 1)
  24.         else
  25.             doPlayerSendTextMessage(cid, 22, "I need 1 wand of cosmic energy, 1 wand of draconia, 1 wand of dragonbreath, 1 wanf of inferno, 1 wand of vortex, 1 terra rod, 1 common akilles wand and more 250.000 cash for this addon!")
  26.         end
  27.     else
  28.         doPlayerSendTextMessage(cid, 22, "You own this addon!")
  29.     end
  30.  
  31.     return true
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement