27.12.2014, 03:42
Is there any possible way to use this on displaying stuffs such as "Enable" if true and "Disable" false (print)
Is there anyway to do it without using the functions manually but this.
pawn Код:
#define TEST true
pawn Код:
new yes[4] = "Yes", no[3] = "No";
printf("Test: %s", TEST ? yes : no);