Problem with wierd errors and ques
#2

You should either use COLOR_GREEN or the hex code. Not both of them. So use
pawn Код:
SendClientMessage(playerid,COLOR_GREEN,"Hello");
or
pawn Код:
SendClientMessage(playerid,0xFFFFFF,"Hello");
print is to display something in the server window, also shows up in server_log.txt. With define you can do
pawn Код:
#define hellomessage "hello you"
Now you can use hellomessage instead of "hello you".
With #if defined you can check if you defined something. With this you can do
pawn Код:
#define filterscript
then check with
pawn Код:
#if defined filterscript
wether you have to run OnGameModeInit or OnFilterScriptInit
Reply


Messages In This Thread
Problem with wierd errors and ques - by Michael Abbruzi - 04.03.2009, 19:00
Re: Problem with wierd errors and ques - by Marcel - 04.03.2009, 19:03
Re: Problem with wierd errors and ques - by Daren_Jacobson - 04.03.2009, 21:55
Re: Problem with wierd errors and ques - by Michael Abbruzi - 05.03.2009, 12:10
Re: Problem with wierd errors and ques - by Daren_Jacobson - 05.03.2009, 13:59

Forum Jump:


Users browsing this thread: 3 Guest(s)