Little question about returns - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Little question about returns (
/showthread.php?tid=173139)
Little question about returns -
Danny - 01.09.2010
Hi guys,
I have a question. Will return nothing, suchs as this:
Код:
Callback ...
{
SendClientMessage(playerid, COLOR_ANYCOLOR,"This will return nothing.");
}
have the same effect as returning 0, such as this?:
Код:
Callback ...
{
SendClientMessage(playerid, COLOR_ANYCOLOR,"This will return 0.");
return 0;
}
For example in loops, dcmd commands and more.