19.02.2014, 11:31
(
Последний раз редактировалось MP2; 19.02.2014 в 14:15.
)
When I try to start my server, I get this:
I haven't changed anything in regards to the streamer, so that is an effect, not the cause. I updated it to the newest version just to be safe anyway.
I have only really been working on one script in my gamemode recently, which gets included in to the main .pwn file. Commenting out this inclusion didn't solve the problem, so I have no idea what's causing it.
Other game modes (also using the streamer) work fine. There are no errors/warnings on compile.
EDIT - FIXED:
It seems this was the problem:
Changing it to this worked:
Quote:
[12:32:07] *** Streamer Plugin: Warning: Include file version (0x59) does not match plugin version (0x27002) (script might need to be recompiled with the latest include file) [12:32:07] Script[gamemodes/MNS/main.amx]: Run time error 22: "AMX not initialized (or doubly initialized)" |
I have only really been working on one script in my gamemode recently, which gets included in to the main .pwn file. Commenting out this inclusion didn't solve the problem, so I have no idea what's causing it.
Other game modes (also using the streamer) work fine. There are no errors/warnings on compile.
EDIT - FIXED:
It seems this was the problem:
pawn Код:
new Float:gGasStationCPCoords[19][][3] =
{...};
pawn Код:
new Float:gGasStationCPCoords[19][2][3] =
{...};