24.07.2010, 23:48
Can somebody please tell me how i can disable the chat on a lvdm gamemode
public OnPlayerText(playerid, text[])
{
return 0;
}
new disabledchat;
COMMAND:disablechat(playerid,params[])
{
disabledchat = 1;
return 1;
}
public OnPlayerText(playerid, text[])
{
if(disabledchat == 1)return 0;
return 1;
}