Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. //http://sampknd.blogspot.com/
  2.  
  3. if(strcmp(cmd, "/mostrarrg",true) == 0)
  4. {
  5. tmp = strtok(cmdtext, idx);
  6. new nome[MAX_PLAYER_NAME];
  7. if(!strlen(tmp))
  8. {
  9. SendClientMessage(playerid, COLOR_GRAD1, "Modo Correcto: /mostrarrg [id]");
  10. }
  11. new rg;
  12. rg = ReturnUser(tmp);
  13. if(ProxDetectorS(10.0, playerid,rg))
  14. {
  15. ShowStats(rg, playerid);
  16. }
  17. return 1;
  18. }
  19. }
  20.  
  21.