error D:
#3

Oh come on, I guess you see an erroring line without even knowing the line..

Код:
if(PlayerData[playerid][AdminLevel] >= 1) && text[0]=='#') {
Take a good look at it, you'll see it should be:

Код:
if(PlayerData[playerid][AdminLevel] >= 1 && text[0]=='#') {
Also, there has to be one more bracket, here's the correct code:

pawn Код:
public OnPlayerText(playerid, text[])
{
    if(PlayerData[playerid][Muted] == 1)
    {
        return 0;
    }
    else
    {
        if(PlayerData[playerid][AdminLevel] >= 1 && text[0]=='#')
        {
            new tmp[256], string[256], idx, pname2[MAX_PLAYERS];
            tmp = strtok(params, idx);
            GetPlayerName(playerid,pname2,sizeof(pname2));
            format(string, sizeof(string), "[ADMIN] %s: %s", pname2, params);
            AdminMessage(COLOR_PINK, string);
        }
        return true;
    }
And I guess the rest of the OnPlayerCommandText comes after this. Or it'll still give errors :P
Reply


Messages In This Thread
error D: - by My_Waffles_Bitch_L0L - 13.02.2009, 15:41
Re: error D: - by Daren_Jacobson - 13.02.2009, 16:22
Re: error D: - by Ycto - 13.02.2009, 17:53

Forum Jump:


Users browsing this thread: 1 Guest(s)