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



Copilar Gamemode - Ortk - 18.05.2014

pawno\include\a_samp.inc(17) : fatal error 100: cannot read from file: "core"

Estб tudo correto, nгo estou entendendo esse seguinte erro. Alguйm mais especializado pode me ajudar?


Re: Copilar Gamemode - tonisantolia - 18.05.2014

Falta a include core na pasta includes do pawno.


Re: Copilar Gamemode - Ortk - 18.05.2014

Certo, mas no meu gamemode nгo tem include core...

Onde posso encontrar essa include? No ****** nгo encontro.


Re: Copilar Gamemode - tonisantolia - 18.05.2014

Quote:
Originally Posted by Ortk
Посмотреть сообщение
Certo, mas no meu gamemode nгo tem include core...
Sim pode atй nгo ter, mas a include a_samp necessita dela.. Por isso ela faz a chamada.


Re: Copilar Gamemode - Ortk - 18.05.2014

Quote:
Originally Posted by tonisantolia
Посмотреть сообщение
Sim pode atй nгo ter, mas a include a_samp necessita dela.. Por isso ela faz a chamada.
A compreendi... E onde eu encontro ela? Nгo encontrei no ******.


Re: Copilar Gamemode - tonisantolia - 18.05.2014

pawn Код:
/* Core functions
 *
 * © Copyright 1998-2005, ITB CompuPhase
 * This file is provided as is (no warranties).
 */

#if defined _core_included
  #endinput
#endif
#define _core_included
#pragma library Core

native heapspace();

native funcidx(const name[]);

native numargs();
native getarg(arg, index=0);
native setarg(arg, index=0, value);

native tolower(c);
native toupper(c);
native swapchars(c);

native random(max);

native min(value1, value2);
native max(value1, value2);
native clamp(value, min=cellmin, max=cellmax);

native getproperty(id=0, const name[]="", value=cellmin, string[]="");
native setproperty(id=0, const name[]="", value=cellmin, const string[]="");
native deleteproperty(id=0, const name[]="", value=cellmin);
native existproperty(id=0, const name[]="", value=cellmin);



Re: Copilar Gamemode - lKoDlFuLLaNNo - 18.05.2014

Quote:
Originally Posted by Ortk
Посмотреть сообщение
A compreendi... E onde eu encontro ela? Nгo encontrei no ******.
pawn Код:
/* Core functions
 *
 * © Copyright 1998-2005, ITB CompuPhase
 * This file is provided as is (no warranties).
 */

#if defined _core_included
  #endinput
#endif
#define _core_included
#pragma library Core

native heapspace();

native funcidx(const name[]);

native numargs();
native getarg(arg, index=0);
native setarg(arg, index=0, value);

native tolower(c);
native toupper(c);
native swapchars(c);

native random(max);

native min(value1, value2);
native max(value1, value2);
native clamp(value, min=cellmin, max=cellmax);

native getproperty(id=0, const name[]="", value=cellmin, string[]="");
native setproperty(id=0, const name[]="", value=cellmin, const string[]="");
native deleteproperty(id=0, const name[]="", value=cellmin);
native existproperty(id=0, const name[]="", value=cellmin);



Re: Copilar Gamemode - Ortk - 18.05.2014

Obrigado galera...