08.04.2012, 20:58
Hey guys,
Am working on my own LA gamemode made form scratch but am having troubles with the chat system, I got the ooc working fine its just the normal push t then type and enter that the problem as when you do it it shows to all players and is normal
My code:
Am working on my own LA gamemode made form scratch but am having troubles with the chat system, I got the ooc working fine its just the normal push t then type and enter that the problem as when you do it it shows to all players and is normal
My code:
Код:
public OnPlayerText(playerid, text[]) { new pname[MAX_PLAYER_NAME], str[128]; GetPlayerName(playerid, pname, sizeof(pname)); format(str, sizeof(str), "%s says: %s", pname, text); return 1; }