27.12.2014, 06:46
Quote:
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 Код:
|
pawn Код:
#define retTrueFalse(%0) (%0 == true ? ("Yes") : ("No"))
//Can be used as
new
bool:test;
printf("%s", retTrueFalse(test));