Advertisement
Guest User

Untitled

a guest
Mar 28th, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. local addon = getItemAttribute(getPlayerSlotItem(cid, 8).uid, "addon")
  2.  
  3. if flys[pokeName] then
  4. if addon and PokeAddons[pokeName][addon].fly then
  5. doSetCreatureOutfit(cid, {lookType = PokeAddons[pokeName][addon].fly}, -1)
  6. else
  7. doSetCreatureOutfit(cid, {lookType = outfit}, -1)
  8. end
  9. else
  10. if addon and PokeAddons[pokeName][addon].ride then
  11. doSetCreatureOutfit(cid, {lookType = PokeAddons[pokeName][addon].ride}, -1)
  12. else
  13. doSetCreatureOutfit(cid, {lookType = outfit + 351}, -1)
  14. end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement