#1

this is my prob:

Код:
public OnPlayerText(playerid, text[])
{
  if(PlayerData[playerid][Muted] == 1)
{
return 0;
}

  if(PlayerData[playerid][AdminLevel] >= 1 && text[0]=='#')
{
new string[256],name[24]; GetPlayerName(playerid,name,24);
format(string,256,"[ADMIN] %s: %s",name,text[1]);
AdminMessage(COLOR_GREEN, string);
}
  return 0;
}

  if(PlayerData[playerid][AdminLevel]>=1 || PlayerData[playerid][VIP]==1 && text[0]=='@')
{
format(string,256,"[ADMIN] %s: %s",name,text[1]);
AdminMessage(COLOR_GREEN, string);
}
return 0;
}
and this is my errors:

Код:
C:\Users\Martin\Desktop\PUTDETHERINTILSA-MP\WafflesAdmin.pwn(64) : error 010: invalid function or declaration
C:\Users\Martin\Desktop\PUTDETHERINTILSA-MP\WafflesAdmin.pwn(68) : error 054: unmatched closing brace ("}")
C:\Users\Martin\Desktop\PUTDETHERINTILSA-MP\WafflesAdmin.pwn(69) : error 010: invalid function or declaration
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


3 Errors.
Reply
#2

Read the pawn pdf and learn how to indent?

pawn Код:
public OnPlayerText(playerid, text[])
{
    if(PlayerData[playerid][Muted] == 1)
    {
        return 0;
    }
    new string[128],name[24];
    GetPlayerName(playerid,name,24);
    if(PlayerData[playerid][AdminLevel] >= 1 && text[0]=='#')
    {
        format(string,256,"[ADMIN] %s: %s",name,text[1]);
        AdminMessage(COLOR_GREEN, string);
        return 0;
    }
    if(PlayerData[playerid][AdminLevel]>=1 || PlayerData[playerid][VIP]==1 && text[0]=='@')
    {
        format(string,256,"[ADMIN] %s: %s",name,text[1]);
        AdminMessage(COLOR_GREEN, string);
    }
    return 1;
}
Try that. There are many things wrong with your code that it is almost unclear what you're trying to do.
Reply
#3

try this too

replace
Код:
if(PlayerData[playerid][AdminLevel]>=1 || PlayerData[playerid][VIP]==1 && text[0]=='@')
with
Код:
if((PlayerData[playerid][AdminLevel]>=1 || PlayerData[playerid][VIP]==1) && text[0]=='@')
or else admins are stuck in admin/vip chat
Reply
#4

i need help, i posted in the script request thread, help? :P
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)