12.03.2011, 02:15
How would I go about doing so? I had a code snippet from a while ago, but I'm a bit rusty and can't re-create it.. and I seem to have lost it.
for ( new i, s = strlen( string ); i < s; ++i )
if ( string[ i ] == '_' )
string[ i ] = ' ';
pawn Код:
|
stock pName(playerid)
{
new Name[MAX_PLAYER_NAME];
GetPlayerName(playerid, Name, sizeof(Name));
return Name;
}