[Pawn] [HELP] GetplayerName Initial Firstname then full Lastname. - Printable Version + open.mp forum (https://forum.open.mp) -- Forum: SA-MP (https://forum.open.mp/forumdisplay.php?fid=3) --- Forum: Pawn Scripting (https://forum.open.mp/forumdisplay.php?fid=10) --- Thread: [Pawn] [HELP] GetplayerName Initial Firstname then full Lastname. (/showthread.php?tid=1930) |
[HELP] GetplayerName Initial Firstname then full Lastname. - TheAnimalKa - 2021-04-21 Hello. Can somebody help me regarding getplayername that will only get the first initial of the firstname of the player then the full lastname. Example: Full Name: Hello_Help print >> H. Help. RE: [HELP] GetplayerName Initial Firstname then full Lastname. - Radical - 2021-04-21 Code: new name[MAX_PLAYER_NAME], first_name[12], last_name[12]; RE: [HELP] GetplayerName Initial Firstname then full Lastname. - TheAnimalKa - 2021-04-21 (2021-04-21, 04:09 PM)Radical Wrote: Thanks, I solved it either way this is how I did it. new playersName[MAX_PLAYER_NAME] ; GetPlayerName(playerid, playersName, sizeof(playersName)); format(playersName, sizeof(playersName), "%c. %s", playersName[0], playersName[strfind(playersName, "_") 1]); format(shitshit[playerid], 128, "%s", playersName); RE: [HELP] GetplayerName Initial Firstname then full Lastname. - Behemoth - 2021-04-21 (2021-04-21, 05:13 PM)TheAnimalKa Wrote:(2021-04-21, 04:09 PM)Radical Wrote: bro wtf is shitshit lmao |