10.08.2009, 23:03
Hey, can someone help me with removing those errors/warnings? I have a bad feeling I;m doint it wrong T.T
I have this code:
And here are my errors:
Just adding new didn't work. can someone help? Thanks.
EDIT: All the players that are in a DM area can't use these commands. (only outside)
I have this code:
pawn Код:
public OnPlayerCommandText(playerid,cmdtext[])
{
if(iamatdm == 0)
{
/jetpack, /healme;
}
else
{
SendClientMessage(playerid,0xFF0000FF,"You Cant Use Commands In Dm Area!!");
}
return 0;
}
Код:
C:\Users\Nel\Desktop\Mijn spullen\GTA Games\Server test gta\filterscripts\Test.pwn(41) : error 017: undefined symbol "iamatdm" C:\Users\Nel\Desktop\Mijn spullen\GTA Games\Server test gta\filterscripts\Test.pwn(43) : error 029: invalid expression, assumed zero C:\Users\Nel\Desktop\Mijn spullen\GTA Games\Server test gta\filterscripts\Test.pwn(43) : error 017: undefined symbol "jetpack" C:\Users\Nel\Desktop\Mijn spullen\GTA Games\Server test gta\filterscripts\Test.pwn(43) : error 017: undefined symbol "healme" C:\Users\Nel\Desktop\Mijn spullen\GTA Games\Server test gta\filterscripts\Test.pwn(43) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 5 Errors.
EDIT: All the players that are in a DM area can't use these commands. (only outside)