SA-MP Forums Archive
sampgdk exits server - 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)
+--- Thread: sampgdk exits server (/showthread.php?tid=648884)



sampgdk exits server - Baltazar - 30.01.2018

So I start my blank server [untitled.amx] with my plugin compiled and he are the resuts:

Код:
PLUGIN_EXPORT int PLUGIN_CALL AmxLoad(AMX *amx){
  return true;
}
loads

Код:
PLUGIN_EXPORT int PLUGIN_CALL AmxLoad(AMX *amx){
  return false;
}
loads

Код:
PLUGIN_EXPORT int PLUGIN_CALL AmxLoad(AMX *amx){
  return amx_Register(amx, natives, -1);
}
I am fucked, my server shuts down like a champ right when .amx should load.
WHAT's the problem? I empty the natives list, doesn't load still


Re: sampgdk exits server - Baltazar - 30.01.2018

nvm, solved