27.09.2013, 18:33
It's full of runtime errors index out of bounds.
When you see lines such as ... at C:\Users\Brandon\Desktop\Backup\gamemodes\NYOGames .pwn:line_here
Goto the line, that's what it causes it. Index out of bounds is when a number (out of the bounds [min-max]) passes as index in an array.
Doing "new something[256];", it means you can use inside the [ ] numbers only 0-255 but you exceed the limits.
When you see lines such as ... at C:\Users\Brandon\Desktop\Backup\gamemodes\NYOGames .pwn:line_here
Goto the line, that's what it causes it. Index out of bounds is when a number (out of the bounds [min-max]) passes as index in an array.
Doing "new something[256];", it means you can use inside the [ ] numbers only 0-255 but you exceed the limits.