01.09.2010, 14:10
Hi guys,
I have a question. Will return nothing, suchs as this:
have the same effect as returning 0, such as this?:
For example in loops, dcmd commands and more.
I have a question. Will return nothing, suchs as this:
Код:
Callback ...
{
SendClientMessage(playerid, COLOR_ANYCOLOR,"This will return nothing.");
}
Код:
Callback ...
{
SendClientMessage(playerid, COLOR_ANYCOLOR,"This will return 0.");
return 0;
}

