SA-MP Forums Archive
"if not defined" - 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: "if not defined" (/showthread.php?tid=110588)



"if not defined" - Dreftas - 27.11.2009

pawn Код:
#if defined SOMETHING
// do smth
#endif
This check if SOMETHING is defined. Is it posible to check if SOMETHING is not defined, without using this method:
pawn Код:
#if defined SOMETHING
// smth
#else
// not defined, do smth
#endif
?


Re: "if not defined" - Streetplaya - 27.11.2009

pawn Код:
#if !defined SOMETHING

#endif



Re: "if not defined" - Dreftas - 27.11.2009

oh thats simple, thanks