18.07.2012, 12:37
(
Последний раз редактировалось CrazyChoco; 18.07.2012 в 13:20.
)
Im Getting these 3 errors
C:\Users\Kajinth\Desktop\SAMP\gamemodes\sfcnr.pwn( 307) : error 029: invalid expression, assumed zero
C:\Users\Kajinth\Desktop\SAMP\gamemodes\sfcnr.pwn( 312) : error 029: invalid expression, assumed zero
C:\Users\Kajinth\Desktop\SAMP\gamemodes\sfcnr.pwn( 322) : error 029: invalid expression, assumed zero
and my code is
I cant find the problem
C:\Users\Kajinth\Desktop\SAMP\gamemodes\sfcnr.pwn( 307) : error 029: invalid expression, assumed zero
C:\Users\Kajinth\Desktop\SAMP\gamemodes\sfcnr.pwn( 312) : error 029: invalid expression, assumed zero
C:\Users\Kajinth\Desktop\SAMP\gamemodes\sfcnr.pwn( 322) : error 029: invalid expression, assumed zero
and my code is
pawn Код:
//Teams
if(gTeam[playerid] == TEAM_COP) {
SendClientMessage(playerid,0x1E90FFAA, "Type {FFFFFF}/commands{1E90FF} for your commands");
SendClientMessage(playerid,0x1E90FFAA, "POLICE OFFICER: Your job is to keep criminals off the streets of San Andreas");
SendClientMessage(playerid,0x1E90FFAA, "Remember: This is not a deathmatch server. Please abide by the /rules and enjoy");
SendClientMessage(playerid,0x1E90FFAA, "Due to you being a cop, your bank insurance has been paid for automaticly.");
}else if(gTeam[playerid] == TEAM_BISTRO) {
SendClientMessage(playerid,0x1E90FFAA, "Type {FFFFFF}/commands{1E90FF} for your commands");
SendClientMessage(playerid,0x1E90FFAA, "BISTRO STAFF: Your job is to sell food to other players if their health less than full");
SendClientMessage(playerid,0x1E90FFAA, "Look out for players needing food on the chat");
SendClientMessage(playerid,0x1E90FFAA, "You can sell players bad food and infect them with food poisining");
SendClientMessage(playerid,0x1E90FFAA, "You can also sell healthy, non infected food");
SendClientMessage(playerid,0x1E90FFAA, "Remember: This is not a deathmatch server. Please abide by the /rules and enjoy");
}else if(gTeam[playerid] == TEAM_DRIVER) {
SendClientMessage(playerid,0x1E90FFAA, "Type {FFFFFF}/commands{1E90FF} for your commands");
SendClientMessage(playerid,0x1E90FFAA, "DRIVER: You can take players in your vehicle and drop them of for cash");
SendClientMessage(playerid,0x1E90FFAA, "You can only use a Taxi, Limo, Maverick or a Coach to earn points");
SendClientMessage(playerid,0x1E90FFAA, "Remember: This is not a deathmatch server. Please abide by the /rules and enjoy");
}