SA-MP Forums Archive
[AJUDA] Erros estranhos ao copilar. - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [AJUDA] Erros estranhos ao copilar. (/showthread.php?tid=336473)



[AJUDA] Erros estranhos ao copilar. - biaamorin - 22.04.2012

Por favor alguem me ajuda? consegui uma FS sу que em ingles. Eu traduzi ela e quando foi copilar deu os seguintes erros.

Код:
C:\---(221) : error 004: function "PlayerToPointStripped" is not implemented
C:\---(230) : error 004: function "PlayerToPointStripped" is not implemented
C:\---(239) : error 004: function "PlayerToPointStripped" is not implemented
C:\---(698) : warning 217: loose indentation
C:\---(698) : error 029: invalid expression, assumed zero
C:\---(698) : error 004: function "PlayerToPointStripped" is not implemented
C:\---(703) : error 017: undefined symbol "curx"
C:\---(704) : error 017: undefined symbol "cury"
C:\---(705) : error 017: undefined symbol "curz"
C:\---(706) : error 017: undefined symbol "radi"
C:\---(711) : error 030: compound statement not closed at the end of file (started at line 410)
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


10 Errors.
Porfavor alguem me ajuda.


Re: [AJUDA] Erros estranhos ao copilar. - Delete_ - 22.04.2012

Linhas


Re: [AJUDA] Erros estranhos ao copilar. - biaamorin - 22.04.2012

Das linhas 221 a 230
Код:
	if(PlayerToPointStripped(0.5, playerid, GunPlace[0][0],GunPlace[0][1],GunPlace[0][2], cx, cy ,cz) || PlayerToPointStripped(0.5, playerid, GunPlace[1][0],GunPlace[1][1],GunPlace[1][2], cx, cy ,cz) || PlayerToPointStripped(0.5, playerid, GunPlace[2][0],GunPlace[2][1],GunPlace[2][2], cx, cy ,cz) || PlayerToPointStripped(0.5, playerid, GunPlace[3][0],GunPlace[3][1],GunPlace[3][2], cx, cy ,cz) || PlayerToPointStripped(0.5, playerid, GunPlace[4][0],GunPlace[4][1],GunPlace[4][2], cx, cy ,cz))
	{
		if (PlayerLookAtGun[playerid] == 0)
		{
			TextDrawShowForPlayer(playerid,Text1);
			TextDrawShowForPlayer(playerid,Text2);
			TextDrawShowForPlayer(playerid,Background);
		}
	}
	else if(PlayerToPointStripped(0.5, playerid, GunPlace[5][0],GunPlace[5][1],GunPlace[5][2], cx, cy ,cz) || PlayerToPointStripped(0.5, playerid, GunPlace[6][0],GunPlace[6][1],GunPlace[6][2], cx, cy ,cz) || PlayerToPointStripped(0.5, playerid, GunPlace[7][0],GunPlace[7][1],GunPlace[7][2], cx, cy ,cz) || PlayerToPointStripped(0.5, playerid, GunPlace[8][0],GunPlace[8][1],GunPlace[8][2], cx, cy ,cz) || PlayerToPointStripped(0.5, playerid, GunPlace[9][0],GunPlace[9][1],GunPlace[9][2], cx, cy ,cz))
	{
		if (PlayerLookAtGun[playerid] == 0)
		{
			TextDrawShowForPlayer(playerid,Text1);
			TextDrawShowForPlayer(playerid,Text2);
			TextDrawShowForPlayer(playerid,Background);
		}
	}
	else if(PlayerToPointStripped(0.5, playerid, GunPlace[10][0],GunPlace[10][1],GunPlace[10][2], cx, cy ,cz) || PlayerToPointStripped(0.5, playerid, GunPlace[11][0],GunPlace[11][1],GunPlace[11][2], cx, cy ,cz) || PlayerToPointStripped(0.5, playerid, GunPlace[12][0],GunPlace[12][1],GunPlace[12][2], cx, cy ,cz))
Linha 698:
Код:
public PlayerToPointStripped(Float:radi, playerid, Float:x, Float:y, Float:z, Float:curx, Float:cury, Float:curz)
Linha 703 a 711:
Код:
    if(IsPlayerConnected(playerid))
	{
		new Float:tempposx, Float:tempposy, Float:tempposz;
		tempposx = (curx -x);
		tempposy = (cury -y);
		tempposz = (curz -z);
		if (((tempposx < radi) && (tempposx > -radi)) && ((tempposy < radi) && (tempposy > -radi)) && ((tempposz < radi) && (tempposz > -radi))) return 1;
	}
	return 0;
}



Re: [AJUDA] Erros estranhos ao copilar. - biaamorin - 22.04.2012

Alguem ajuda porfavor. '-' ( Desculpa o duplo post)