Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. if(pickupid == gshop)
  2. {
  3. ShowPlayerDialog(playerid, DIALOG_GSHOP, DIALOG_STYLE_LIST, "Store", "Skin 3\nSkin 4\nSkin 5", "Wybierz", "Anuluj");
  4. return 1;
  5. }
  6.  
  7. if(dialogid == DIALOG_SHOP)
  8. {
  9. switch(listitem)
  10. {
  11. case 0:
  12. {
  13. SetPlayerSkin(playerid, 3);
  14.  
  15. }
  16. case 1:
  17. {
  18. SetPlayerSkin(playerid, 4);
  19. }
  20. case 2:
  21. {
  22. SetPlayerSkin(playerid, 5);
  23. }
  24. }
  25. return 1;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement