30.08.2010, 14:14
I got this function called RemoveUnderScore and it works like the sendername it just deletes the Under Score [_] of the player who sent the message.
The functions works like a charm but I need this function to giveplayerid too, so for an example:
format(string, sizeof(string), "** %s gives BlahBlah to %s", RemoveUnderScore(playerid) [HERE]);
There it says [HERE] should the giveplayerid be, but I want it to work like the sendername, it should removes the Under Score on it too.
This is how the function looks like:
Thanks
The functions works like a charm but I need this function to giveplayerid too, so for an example:
format(string, sizeof(string), "** %s gives BlahBlah to %s", RemoveUnderScore(playerid) [HERE]);
There it says [HERE] should the giveplayerid be, but I want it to work like the sendername, it should removes the Under Score on it too.
This is how the function looks like:
Код:
stock RemoveUnderScore(playerid) { new name[MAX_PLAYER_NAME]; GetPlayerName(playerid,name,sizeof(name)); for(new i = 0; i < MAX_PLAYER_NAME; i++) { if(name[i] == '_') name[i] = ' '; } return name; }