How to fix chat problem
#1

Hello .. I got a problem in chat whatever i write in chat nothing appears .. what mistake i did if anyone knows it kindly give a reply .. thanks
regards ,
Ryan_Petersons
Reply
#2

This is caused by something under "OnPlayerText".

Look for anything that uses "return 0;" as this prevents your message from being sent.

However, without your code, I can't suggest much more.
Reply
#3

If you could show us some code

If you show us your OnPlayerText code, i'm sure we can help you

EDIT: lolz, Hawky beat me to it xD
Reply
#4

pawn Код:
public OnPlayerText(playerid, text[])
{
//=============================== Anti Swear ===================================
    if(ServerInfo[AntiSwear] == 1 && User[playerid][Level] < ServerInfo[MaxAdminLevel])
    for(new s = 0; s < BadWordsCount; s++)
    {
        new pos;
        while((pos = strfind(text,BadWords[s],true)) != -1)
        for(new i = pos, j = pos + strlen(BadWords[s]); i < j; i++) text[i] = '*';
    }
//=============================== Admin Chat ===================================
    if(text[0] == '#' && User[playerid][Level] >= 1) {
        new string[128]; GetPlayerName(playerid,string,sizeof(string));
        format(string,sizeof(string),"Admin Chat: %s: %s",string,text[1]);
        MessageToAdmins(Green,string);
        SaveIn("AdmChatLog",string);
        return 1;
    }
//=============================== Vip Chat =====================================
    if(text[0] == '*' && User[playerid][Vip] >= 1) {
        new string[128]; GetPlayerName(playerid,string,sizeof(string));
        format(string,sizeof(string),"Vip Chat: %s: %s",string,text[1]);
        MessageToVips(Green,string);
        SaveIn("VipChatLog",string);
        return 1;
    }
//=============================== ServerTeam Chat ==============================
    if(text[0] == '-' && User[playerid][ServerTeam] >= 1) {
        new string[128]; GetPlayerName(playerid,string,sizeof(string));
        format(string,sizeof(string),"ServerTeam Chat: %s: %s",string,text[1]);
        MessageToServerTeam(Green,string);
        SaveIn("ServerTeamChatLog",string);
        return 1;
    }
//================================ Muted =======================================
    if(User[playerid][Muted] == 1)
    {
        SendClientMessage(playerid, Red, "==--You are muted, noone can hear you!--==");
         }
        return 1;
    }
Reply
#5

Seems like you have a bracket too much at Player muted.
Reply
#6

PHP код:
//================================ Muted =======================================
     
if(User[playerid][Muted] == 1)
    {
        
SendClientMessage(playeridRed"==--You are muted, noone can hear you!--==");
        return 
1;
    } 
Like this it works?
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)