Posts: 212
Threads: 91
Joined: Jul 2013
Reputation:
0
is that to much, because in my server cars & most mapped buildings dont show up , dont you think its from that?
i add -D3 by the way , is that number to much?
Posts: 210
Threads: 11
Joined: Oct 2012
Reputation:
0
Try and use an updated version of incognitos streamer
Posts: 2,856
Threads: 6
Joined: Jun 2007
Reputation:
0
The backtrace tells you that you access an element at index 999 past upper bound 500 at line 23697 in SLRP.pwn
I am just wonderring why it doesn't show the function name if you compiled with -d3 [?? (... <3 arguments>)]
Posts: 4,878
Threads: 85
Joined: Jun 2007
Reputation:
0
16000000 bytes stack/heap is about 1000 times more than most servers will ever need. There are just very few scenarios that would need a stack that big. It doesnt cause any problems when its too big afaik, but you waste 16mb ram for absolutely nothing, rather go with the standard sizes, and rely on the shown estimated maximum. When theres no estimation available like in your case, try to estimate the needed stack size for the biggest recursion yourself and double that. Eventually increase the stack if you get errors, but just setting it to such a giant number without real reasons isnt a clever way to go.
The reason for your problems perhaps is the error, as nero_3d already said, not the stack size.
Posts: 734
Threads: 8
Joined: Jun 2009
This is a well known problem with GodFather (GF) scripts and its numerous edits; it was made for version 0.2 of SA-MP and when you try to use it today... Go figure - it's way outdated!
Try making your mode from scratch - that way you know whats going on, how and where. All considered, in the end it's better than trying to edit old scripts that have memory leaks and perhaps OBOE errors.