SA-MP Forums Archive
Underscore in names - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Underscore in names (/showthread.php?tid=216372)



<fixed> - Kingunit - 25.01.2011

<fixed>


Re: Underscore in names - Mike Garber - 25.01.2011

pawn Код:
NameWithout_(playerid) // Unknown Author, found on SA-MP Forums
{
    new var1[32];
    var1="Invalid_Player_ID";
    if(IsPlayerConnected(playerid))
    {
        GetPlayerName(playerid, var1, sizeof(var1));
        for(new i = 0; i < sizeof(var1); i++)
        { if(var1[i] == '_') { var1[i] = ' '; } }
    }
    return var1;
}



Re: Underscore in names - Kingunit - 25.01.2011

<fixed>