[Help]LAdmin 4.2/(SATDM v9)
#9

ok i did it a compile:
C:\Users\Desktop\ladmin4v2.pwn(1042) : warning 235: public function lacks forward declaration (symbol "OnPlayerPrivmsg")
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


1 Warning.

heres line 1041 - 1080
//================================================== ============================
public OnPlayerPrivmsg(playerid, recieverid, text[])
{
if(ServerInfo[ReadPMs] == 1 && PlayerInfo[playerid][Level] != ServerInfo[MaxAdminLevel])
{
new string[128],recievername[MAX_PLAYER_NAME];
GetPlayerName(playerid, string, sizeof(string)); GetPlayerName(recieverid, recievername, sizeof(recievername));
format(string, sizeof(string), "***PM: %s To %s: %s", string, recievername, text);
for (new a = 0; a < MAX_PLAYERS; a++) if (IsPlayerConnected(a) && (PlayerInfo[a][Level] >= ServerInfo[MaxAdminLevel]) && a != playerid)
SendClientMessage(a, grey, string);
}

if(PlayerInfo[playerid][Muted] == 1)
{
new string[128];
PlayerInfo[playerid][MuteWarnings]++;
if(PlayerInfo[playerid][MuteWarnings] < ServerInfo[MaxMuteWarnings]) {
format(string, sizeof(string),"WARNING: You are muted, if you continue to speak you will be kicked (Warning: %d/%d)", PlayerInfo[playerid][MuteWarnings], ServerInfo[MaxMuteWarnings] );
SendClientMessage(playerid,red,string);
} else {
SendClientMessage(playerid,red,"You have been warned! Now you have been kicked");
GetPlayerName(playerid, string, sizeof(string));
format(string, sizeof(string),"%s [ID %d] Kicked for exceeding mute warnings", string, playerid);
SendClientMessageToAll(grey,string);
SaveToFile("KickLog",string); Kick(playerid);
} return 0;
}
return 1;
}

forward HighLight(playerid);
public HighLight(playerid)
{
if(!IsPlayerConnected(playerid)) return 1;
if(PlayerInfo[playerid][blipS] == 0) { SetPlayerColor(playerid, 0xFF0000AA); PlayerInfo[playerid][blipS] = 1; }
else { SetPlayerColor(playerid, 0x33FF33AA); PlayerInfo[playerid][blipS] = 0; }
return 0;
}

//===================== [ DCMD Commands ]=====================================
Help Please!!
P.S:
when i delete it
i get 55 errors
please help!!
Reply


Messages In This Thread
[Help]LAdmin 4.2/(SATDM v9) - by aviv258958 - 27.02.2010, 15:09
Re: [Help]LAdmin 4.2/(SATDM v9) - by Christopher. - 27.02.2010, 15:13
Re: [Help]LAdmin 4.2/(SATDM v9) - by aviv258958 - 27.02.2010, 15:16
Re: [Help]LAdmin 4.2/(SATDM v9) - by Christopher. - 27.02.2010, 15:20
Re: [Help]LAdmin 4.2/(SATDM v9) - by aviv258958 - 27.02.2010, 15:25
Re: [Help]LAdmin 4.2/(SATDM v9) - by aviv258958 - 27.02.2010, 16:04
Re: [Help]LAdmin 4.2/(SATDM v9) - by leapfish - 27.02.2010, 16:54
Re: [Help]LAdmin 4.2/(SATDM v9) - by aviv258958 - 27.02.2010, 17:16
Re: [Help]LAdmin 4.2/(SATDM v9) - by aviv258958 - 27.02.2010, 18:01

Forum Jump:


Users browsing this thread: 3 Guest(s)