SA-MP Forums Archive
Pawno problems - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Server (https://sampforum.blast.hk/forumdisplay.php?fid=6)
+--- Forum: Server Support (https://sampforum.blast.hk/forumdisplay.php?fid=19)
+--- Thread: Pawno problems (/showthread.php?tid=620634)



Pawno problems - Azdaha - 01.11.2016

http://prnt.sc/d1n6jx


Re: Pawno problems - Konstantinos - 01.11.2016

COLOR_GREEN is defined as an integer and it is not supposed to be used as color embedding which results in the errors you got. For that matter, it should be defined as a string (an example):

pawn Code:
#define COL_GREEN "{008000}"
and you use COL_GREEN instead.