05.02.2013, 19:59
I have this piece of script, and its giving me this error.
C:\Users\Scoot\Desktop\CR-RP(LS)\GameModes\GLRP.pwn(17779) : error 029: invalid expression, assumed zero
C:\Users\Scoot\Desktop\CR-RP(LS)\GameModes\GLRP.pwn(17779) : error 017: undefined symbol "oprison"
C:\Users\Scoot\Desktop\CR-RP(LS)\GameModes\GLRP.pwn(17779) : error 029: invalid expression, assumed zero
C:\Users\Scoot\Desktop\CR-RP(LS)\GameModes\GLRP.pwn(17779) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.0.3367 Copyright © 1997-2005, ITB CompuPhase
4 Errors.
This is not the full piece of script.
C:\Users\Scoot\Desktop\CR-RP(LS)\GameModes\GLRP.pwn(17779) : error 029: invalid expression, assumed zero
C:\Users\Scoot\Desktop\CR-RP(LS)\GameModes\GLRP.pwn(17779) : error 017: undefined symbol "oprison"
C:\Users\Scoot\Desktop\CR-RP(LS)\GameModes\GLRP.pwn(17779) : error 029: invalid expression, assumed zero
C:\Users\Scoot\Desktop\CR-RP(LS)\GameModes\GLRP.pwn(17779) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.0.3367 Copyright © 1997-2005, ITB CompuPhase
4 Errors.
This is not the full piece of script.
Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
dcmd(oprison, 7, cmdtext);
dcmd(ouninvite, 9, cmdtext);
dcmd(unban, 5, cmdtext);
dcmd(banaccount, 10, cmdtext);
dcmd(setaccent, 9, cmdtext);
dcmd(deleteaccount, 13, cmdtext);
dcmd(duel, 4, cmdtext);
if(gPlayerSpawned[playerid] == 0)
{
SendClientMessage(playerid, COLOR_GRAD1, " You are not logged in or have not spawned !");
return 1;
}

