The ungreatful tag mismatch - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: The ungreatful tag mismatch (
/showthread.php?tid=87186)
The ungreatful tag mismatch -
Shots - 18.07.2009
This is the pawno error
Код:
C:\Users\PI\Desktop\Pawno\pawno\script.pwn(3165) : warning 213: tag mismatch
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Warning.
And this is the code itself
Код:
if (strcmp(command, "/enter", true) == 0 && GetPlayerState(playerid) == PLAYER_STATE_ONFOOT)
{
3165--> if(PlayerToPoint(2.0,playerid, -2026.9370, 67.1545, 28.6916))
{
SetPlayerInterior(playerid,3);
SetPlayerPos(playerid,1494.0132,1305.1205,1093.2891);
SetPlayerVirtualWorld(playerid,1);
return 1;
}
return 1;
}
Could use some help here searched for some answers but nothing exactly helped me so.
Re: The ungreatful tag mismatch -
Khelif - 18.07.2009
Код:
if(PlayerToPoint(playerid, -2026.9370, 67.1545, 28.6916, 2.0))
Re: The ungreatful tag mismatch -
Shots - 18.07.2009
/facepalm
Thank you.