20.06.2012, 05:56
How can I fix these errors?
Код:
D:\Rafay\COS-RP V 1.0\gamemodes\COS-RP.pwn(91) : warning 217: loose indentation D:\Rafay\COS-RP V 1.0\gamemodes\COS-RP.pwn(163) : warning 217: loose indentation D:\Rafay\COS-RP V 1.0\gamemodes\COS-RP.pwn(178) : error 010: invalid function or declaration D:\Rafay\COS-RP V 1.0\gamemodes\COS-RP.pwn(178 -- 183) : error 010: invalid function or declaration D:\Rafay\COS-RP V 1.0\gamemodes\COS-RP.pwn(178 -- 186) : error 010: invalid function or declaration D:\Rafay\COS-RP V 1.0\gamemodes\COS-RP.pwn(178 -- 186) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 4 Errors.
pawn Код:
//==============================================================================
CMD:me(playerid, params[])
{
if(gPlayerLogged{playerid} == 0)
{
SendClientMessage(playerid, COLOR_GREY, "You're not logged in.");
return 1;
}
if(isnull(params)) return SendClientMessage(playerid, COLOR_WHITE, "USAGE: /me [action]");
new string[128];
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
format(string, sizeof(string), "%s %s", name, params);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
return 1;
}
//==============================================================================
CMD:do(playerid, params[])
{
if(gPlayerLogged{playerid} == 0)
{
SendClientMessage(playerid, COLOR_GREY, "You're not logged in.");
return 1;
}
if(isnull(params)) return SendClientMessage(playerid, COLOR_WHITE, "USAGE: /do [action]");
new string[128];
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
format(string, sizeof(string), "%s ((%s))", params, name);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
return 1;
}
//==============================================================================
CMD:shout(playerid, params[]) {
return cmd_s(playerid, params);
}
//=============================================================================