Question regarding #define - 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: Question regarding #define (
/showthread.php?tid=533196)
Question regarding #define -
dionisak0s - 23.08.2014
Alright, cause I would like to organize my gamemode a little bit and make it look much better I would like to ask something about #define, let's say I have #define HOUSES 200, what if I change the 200 number to (200), is it going to affect my script or it is going to be exactly the same?
Re: Question regarding #define -
[XST]O_x - 23.08.2014
You mean like:
pawn Код:
#define HOUSES 200
//To
#define HOUSES (200)
Then no, it doesn't change anything
Re: Question regarding #define -
dionisak0s - 23.08.2014
Yeah, that's what I mean. Thanks a lot, I was jus curious to know.