Advertisement
Guest User

Untitled

a guest
Jan 15th, 2013
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. stock RemoveUnderScore(playerid)
  2. {
  3. new namewithoutunderscorename[MAX_PLAYER_NAME];
  4. GetPlayerName(playerid,namewithoutunderscorename,sizeof(namewithoutunderscorename));
  5. for(new i = 0; i < MAX_PLAYER_NAME; i++)
  6. {
  7. if(namewithoutunderscorename[i] == '_') namewithoutunderscorename[i] = ' ';
  8. }
  9. return namewithoutunderscorename;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement