17.03.2011, 17:14
(
Последний раз редактировалось misho1; 17.03.2011 в 19:43.
)
i want to put allot of fs in my server but the maximum is only 16 so how to merge fs?
F:\Fun and Games server\filterscripts\EMenu.pwn(99) : error 021: symbol already defined: "OnPlayerCommandText" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error.
// IN FIRST FILTERSCRIPT
public OnPlayerCommandText(playerid, cmdtext[])
{
// **** CUT HERE CUT HERE CUT HERE CUT HERE CUT HERE CUT HERE CUT HERE CUT HERE *****
if(!strcmp(cmdtext, "/help", true))
{
SendClientMessage(playerid, 0xFFFFFFFF, "SERVER: This is the /help command!");
return 1;
}
// **** CUT HERE CUT HERE CUT HERE CUT HERE CUT HERE CUT HERE CUT HERE CUT HERE *****
return 0;
}
// IN THE OTHER FILTERSCRIPT
public OnPlayerCommandText(playerid, cmdtext[])
{
if(!strcmp(cmdtext, "/help", true))
{
SendClientMessage(playerid, 0xFFFFFFFF, "SERVER: This is the /help command!");
return 1;
}
if(!strcmp(cmdtext, "/hi", true))
{
SendClientMessage(playerid, 0xFFFFFFFF, "SERVER: This is the /hi command!");
return 1;
}
if(!strcmp(cmdtext, "/test", true))
{
SendClientMessage(playerid, 0xFFFFFFFF, "SERVER: This is the /test command!");
return 1;
}
if(!strcmp(cmdtext, "/grab", true))
{
SendClientMessage(playerid, 0xFFFFFFFF, "SERVER: This is the /grab command!");
return 1;
}
if(!strcmp(cmdtext, "/grub", true))
{
SendClientMessage(playerid, 0xFFFFFFFF, "SERVER: This is the /grub command!");
return 1;
}
// ***** PASTE HERE PASTE HERE PASTE HERE
// >>>>>>>
// *****************************************************
return 0;
}