MuhammadZeeshan

sfasdasdas

Jun 2nd, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. else if ( cmd == "buy" )
  2. {
  3. if ( status[ player.ID ].Registered == false ) ErrorMessage( "[#FFFFFF]You need to be a part of our community to use this command.", player );
  4. else if ( status[ player.ID ].Logged == false ) ErrorMessage( "[#FFFFFF]You need to be identified to use this command.", player );
  5. else if (!text) ErrorMessage( "/"+cmd+" <Product name>, use /products for available products list.", player );
  6. else
  7. {
  8. if ( text == "pizza" )
  9. {
  10. if ( status[ player.ID ].pizza == true )
  11. {
  12. if ( player.Health <= 99 )
  13. {
  14. MessagePlayer( GREEN+"You have eaten a pizza for $20 and your health has increased by +5%", player );
  15. player.Health += 5;
  16. DecCash( player, 20 );
  17. }
  18. else ErrorMessage( "Your health is full you cannot eat pizza for now", player );
  19. }
  20. else ErrorMessage( "You must be at pizza cornor to buy pizza", player );
  21. }
  22.  
  23. else ErrorMessage( "The product you want is not available here. Use /products for available product list.", player );
  24. }
  25. }
Add Comment
Please, Sign In to add comment