[Ajuda] [y_hooks] Como sei o que retornar? - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] [y_hooks] Como sei o que retornar? (
/showthread.php?tid=664685)
[y_hooks] Como sei o que retornar? -
Paulthaz - 08.03.2019
Como eu sei qual retorno eu devo usar para dentro do modulo ?
Code:
hook OnPlayerRequestClass(playerid, classid)
{
return Y_HOOKS_CONTINUE_RETURN_1;
}
Y_HOOKS_CONTINUE_RETURN_1, Y_HOOKS_CONTINUE_RETURN_0, Y_HOOKS_BREAK... ?
Re: [y_hooks] Como sei o que retornar? -
ForT - 08.03.2019
HTML Code:
#define Y_HOOKS_CONTINUE_RETURN_1 (1) // Continue the hook chain, return 1
#define Y_HOOKS_CONTINUE_RETURN_0 (0) // Continue the hook chain, return 0
#define Y_HOOKS_BREAK_RETURN_0 (-1) // Break the hook chain, return 0
#define Y_HOOKS_BREAK_RETURN_1 (-2) // Break the hook chain, return 1