SA-MP Forums Archive
Weird error on simple command - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Weird error on simple command (/showthread.php?tid=402491)



Weird error on simple command - FL3GM4 - 26.12.2012

Код:
CMD:pdo(playerid, params[])
{
	if (PlayerInfo[playerid][pAdmin] < 1)return SendClientMessage(playerid, COLOR_WHITE, "Samo Admini i V.I.P igraci");
	else if(PlayerInfo[playerid][VIP] < 1)return SendClientMessage(playerid, COLOR_WHITE, "Samo Admini i V.I.P igraci");
	{
		MoveObject(pdkapija, 1544.6999512,-1631.0000000,13.3000002, 5.0);
		pktimer[playerid] = SetTimer("zatvori18", 5000, 0);
		SendClientMessage(playerid, COLOR_WHITE, "("#COL_ORANGE"Paznja!) Otvorio si (IME KAPIJE) kapiju, "#COL_ORANGE"automatski ce se zatvorit!");
	}
	else
	{
		SendClientMessage(playerid, COLOR_WHITE, "| VAЉ TEKST | Nemate kljuc za ta vrata.");
	}
	return 1;
}
Код:
C:\Users\toni\Desktop\Gang War Los Santos 0.3e\gamemodes\mod2.pwn(2017) : error 029: invalid expression, assumed zero
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Error.



Re: Weird error on simple command - Horrible - 27.12.2012

Quote:
Originally Posted by FL3GM4
Посмотреть сообщение
Код:
CMD:pdo(playerid, params[])
{
	if (PlayerInfo[playerid][pAdmin] < 1)return SendClientMessage(playerid, COLOR_WHITE, "Samo Admini i V.I.P igraci");
	else if(PlayerInfo[playerid][VIP] < 1)return SendClientMessage(playerid, COLOR_WHITE, "Samo Admini i V.I.P igraci");
	{
		MoveObject(pdkapija, 1544.6999512,-1631.0000000,13.3000002, 5.0);
		pktimer[playerid] = SetTimer("zatvori18", 5000, 0);
		SendClientMessage(playerid, COLOR_WHITE, "("#COL_ORANGE"Paznja!) Otvorio si (IME KAPIJE) kapiju, "#COL_ORANGE"automatski ce se zatvorit!");
	}
	else
	{
		SendClientMessage(playerid, COLOR_WHITE, "| VAЉ TEKST | Nemate kljuc za ta vrata.");
	}
	return 1;
}
Код:
C:\Users\toni\Desktop\Gang War Los Santos 0.3e\gamemodes\mod2.pwn(2017) : error 029: invalid expression, assumed zero
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Error.
what line that the error refer to ?


Re: Weird error on simple command - FL3GM4 - 27.12.2012

Код:
else
is error line :/


Re: Weird error on simple command - [HK]Ryder[AN] - 27.12.2012

after the else if line
why are you opening brackets when you are returning something?