Jump to content
  • 0

pomoc Chat


arci224

Dotaz

Mam pawn kód ale chci aby to psalo jakoby TITULY ale kyž napíšu něco do chatu tak to napíše 2x, 1x správně a to 2x špatně - obyčejně prosím poradte

public OnPlayerText(playerid, text[])
{
	new atext[60];
	if(PlayerInfo[playerid][pAdmin] == 0){ atext = ""; }
	if(PlayerInfo[playerid][pAdmin] == 1){ atext = "{FFFF00}Moderátor{FFFFFF}"; }
	if(PlayerInfo[playerid][pAdmin] == 2){ atext = "{0000FF}Administrátor{FFFFFF}"; }
	if(PlayerInfo[playerid][pAdmin] == 3){ atext = "{00FF00}Hlavní Admin{FFFFFF}"; }
	new vip[60];
	new Name[26];
	GetPlayerName(playerid,Name,26);
	if(PlayerInfo[playerid][pVip] == 1){ vip = "{99FF66}VIP{FFFFFF}"; }
	new string[128];
	format(string,sizeof(string),"[ %s ]%s[ %s ]: %s",atext,Name, vip,text);
	SendClientMessageToAll(-1,string);
	return 1;
}
Link to comment
Share on other sites

2 odpovědí na tuto otázku

Recommended Posts

Guest
This topic is now closed to further replies.
×
×
  • Create New...