How to reget the origin player name
#1

I have a code when the player do /afk he can't move and change is name to xxxx[afk]
but i hava a another code /stopafk but i can't remove the [afk]

there is the code

Код:
COMMAND:afk(playerid, params[])
{
	SendAdminText(playerid, "/afk", params);
	if (APlayerData[playerid][LoggedIn] == false) return 0;
	new Name[24], string[128], AFKName[25];
	TogglePlayerControllable(playerid,0);
	GetPlayerName(playerid, Name, sizeof(Name));
    GetPlayerName(playerid, AFKName, sizeof(AFKName));
 	format(string, sizeof(string),"%s[afk]", AFKName);
    SetPlayerName(playerid, string);
	format(string, sizeof(string),"Le joueur %s c'est mis afk !", Name);
	SendClientMessageToAll(0xFFFFFF, string);
	// message afk
	SendClientMessage(playerid,0xFFFFFFFF, "Vous etes maintenant afk !");
	return 1;
}
COMMAND:stopafk(playerid, params[])
{
	SendAdminText(playerid, "/stopafk", params);
	if (APlayerData[playerid][LoggedIn] == false) return 0;
	new Name[24], string[128], AFKName[25];
	TogglePlayerControllable(playerid,1);
	GetPlayerName(playerid, Name, sizeof(Name));
    GetPlayerName(playerid, AFKName, sizeof(AFKName));
 	format(string, sizeof(string),"%s", AFKName);
    SetPlayerName(playerid, string);
	format(string, sizeof(string),"Le joueur %s est de retour !", Name);
	SendClientMessageToAll(0xFFFFFF, string);
	// message afk
	SendClientMessage(playerid,0xFFFFFFFF, "Vous etes maintenant de retour !");
	return 1;
}
Reply


Messages In This Thread
How to reget the origin player name - by Eymeric69 - 17.05.2016, 14:51
Re: How to reget the origin player name - by SyS - 17.05.2016, 14:54
Re: How to reget the origin player name - by Sjn - 17.05.2016, 14:59
Re: How to reget the origin player name - by Eymeric69 - 17.05.2016, 15:03
Re: How to reget the origin player name - by Konstantinos - 17.05.2016, 15:14
Re: How to reget the origin player name - by GhostHacker - 17.05.2016, 15:18
Re: How to reget the origin player name - by SyS - 17.05.2016, 15:20
Re: How to reget the origin player name - by Sjn - 17.05.2016, 15:23
Re: How to reget the origin player name - by Eymeric69 - 17.05.2016, 15:25
Re: How to reget the origin player name - by bgedition - 17.05.2016, 18:11

Forum Jump:


Users browsing this thread: 1 Guest(s)