How to remove the _ in Firstname_Lastname
#1

Hello,

My question is simple: How to remove the '_' in Firstname_Lastname? This is my code

pawn Код:
for(new i = 0; i < MAX_PLAYERS; i ++)
        {
            if(IsPlayerConnected(i))
            {
                new Float:PosX, Float:PosY, Float:PosZ,string[99],Playername[MAX_PLAYER_NAME];
                GetPlayerPos(playerid,PosX,PosY,PosZ);
                if(IsPlayerInRangeOfPoint(i,10,PosX,PosY,PosZ))
                {
                    GetPlayerName(playerid,Playername,sizeof(Playername));
                    SendClientMessage(i,COLOR_WHITE,string);
                    format(string,sizeof(string),"Says: %s",text);
                    SetPlayerChatBubble(playerid,string,COLOR_WHITE,10,5000);
                }
            }
        }
I also searched, and found this topic. but didn't work.

Regards, Jochem
Reply


Messages In This Thread
How to remove the _ in Firstname_Lastname - by Jochemd - 19.07.2010, 16:13
Re: How to remove the _ in Firstname_Lastname - by kLx - 19.07.2010, 16:27
Re: How to remove the _ in Firstname_Lastname - by ikey07 - 19.07.2010, 16:28
Re: How to remove the _ in Firstname_Lastname - by Jochemd - 19.07.2010, 16:40
Re: How to remove the _ in Firstname_Lastname - by ikey07 - 19.07.2010, 17:16

Forum Jump:


Users browsing this thread: 2 Guest(s)