SA-MP Forums Archive
Error 217 - 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: Error 217 (/showthread.php?tid=476139)



Error 217 - ReD_DeVi - 16.11.2013

when i try to create neon system
Код:
C:\Documents and Settings\Administrator\Desktop\Mani\filterscripts\Neon.pwn(51) : warning 217: loose indentation
C:\Documents and Settings\Administrator\Desktop\Mani\filterscripts\Neon.pwn(55) : warning 217: loose indentation
C:\Documents and Settings\Administrator\Desktop\Mani\filterscripts\Neon.pwn(56) : warning 217: loose indentation
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


3 Warnings.
51 pawno
pawn Код:
if(listitem == 1)
55 pawno

pawn Код:
DeletePVar(playerid, "neon")
56 pawno
pawn Код:
DestroyObject(GetPVarInt(playerid, "red1"));



AW: Error 217 - Skimmer - 16.11.2013

You have tabulator problem. Script properly.

No warning.
pawn Код:
if(Hello == 1)
{
   
}
But this would cause to warning on compiler.
pawn Код:
if(Hello == 1)
    {
   
}