SA-MP Forums Archive
[Ajuda] Y_Hooks - 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 (/showthread.php?tid=665459)



Y_Hooks - SrBlu - 05.04.2019

Preciso de ajuda, instalei a include Y_Hooks, defini ela no headers da minha gamemode, porem esta dando esse erro abaixo. Porfavor me ajudem, ja instalei a include.

C:\Users\Blue\Desktop\Gamemodes e Projetos\GM\gamemodes\Modulo.pwn(4) : fatal error 100: cannot read from file: "Y_Hooks"


Re: Y_Hooks - iAplle - 05.04.2019

Tente assim

PHP Code:
#include <YSI\y_hooks> 



Re: Y_Hooks - SrBlu - 05.04.2019

Quote:
Originally Posted by iAplle
View Post
Tente assim

PHP Code:
#include <YSI\y_hooks> 
Resolvido, Vlw amigo!


Re: Y_Hooks - SrBlu - 05.04.2019

agr estou com esse warning '-'
warning 201: redefinition of constant/macro (symbol "isnull(%1)")


Re: Y_Hooks - iAplle - 05.04.2019

Tenta baixar as mais atualizadas

https://github.com/pawn-lang/YSI-Includes/releases


Re: Y_Hooks - SrBlu - 05.04.2019

Atualizei e deu nada. Mas vlw, mlhr que nada, oq importa que rode e agr partiu refazer a gm em modulos KKK'


Re: Y_Hooks - iAplle - 05.04.2019

Tentar baixar a versгo 4.0.2 se nгo der baixe a 4.0.1 ou a 4.0. Mas boa sorte ai xD


Re: Y_Hooks - RodrigoMSR - 05.04.2019

Quote:
Originally Posted by SrBlu
View Post
agr estou com esse warning '-'
warning 201: redefinition of constant/macro (symbol "isnull(%1)")
Coloque a include logo apуs a_samp, antes de qualquer outra.
Code:
#include <a_samp>
#include <YSI\y_hooks>
//suas outras includes...



Re: Y_Hooks - SrBlu - 05.04.2019

Quote:
Originally Posted by RodrigoMSR
View Post
Coloque a include logo apуs a_samp, antes de qualquer outra.
Code:
#include <a_samp>
#include <YSI\y_hooks>
//suas outras includes...
jб esta no topo, tenho sempre um template em todas minhas GM... A_samp dps zcmd...( etc ). Obrigado por comentar, caso eu esquecer ainda hehehe


Re: Y_Hooks - RenanMsV - 05.04.2019

vai na linha do script onde ta dizendo warning 201: redefinition of constant/macro (symbol "isnull(%1)")
e digita '#undef isnull' numa linha antes .
Gambiarra, mas deve funcionar.


Re: Y_Hooks - Cauezin - 05.04.2019

Tente essa versгo:

https://github.com/pawn-lang/YSI-Includes/tree/5.x


Re: Y_Hooks - SrBlu - 08.04.2019

Quote:
Originally Posted by RenanMsV
View Post
vai na linha do script onde ta dizendo warning 201: redefinition of constant/macro (symbol "isnull(%1)")
e digita '#undef isnull' numa linha antes .
Gambiarra, mas deve funcionar.
Nгo existe codigo sem gambiarra... forum samp = stackoverflow <3 metade dos codigo daqui KKKK ( cirurgia de script )


Re: Y_Hooks - RodrigoMSR - 08.04.2019

Quote:
Originally Posted by SrBlu
View Post
jб esta no topo, tenho sempre um template em todas minhas GM... A_samp dps zcmd...( etc ). Obrigado por comentar, caso eu esquecer ainda hehehe
Acho que vocк nгo entendeu amigo.

Tem que ser exatamente nessa ordem: a_samp, depois y_hooks e sу depois as demais.

Ex:
Code:
#include <a_samp>
#include <YSI\y_hooks>
#include <streamer>
#include <zcmd>
#include <sscanf2>