Guest User

Untitled

a guest
Aug 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. new player = cmd_target( id, argument, 10 );
  2. if( player ) \\ אם השחקן קיים
  3. {
  4. playerpoints[ player ] = 0; \\ מגדיר את המשתנה של הנקודות ל 0 כאילו אופס
  5. client_print( id, print_chat, "The Selected Player Points Successfuly Reset" ); \\ נשלח הודעה שתגיד שהנקודות אופסו
  6. }
  7. else \\ במידה והשחקן אינו קיים
  8. {
  9. client_print( id, print_chat, "Client Doesn't Exist !" ); \\ במידה והשחקן הנבחר אינו קיים נשלח הודעה שהשחקן אינו קיים
  10. }
  11. }
Add Comment
Please, Sign In to add comment