Quote:
Originally Posted by Rirre
Why not take a look at itself?
The answer is pretty veeery clear.
The engine is limited to 900 entities default.
You can increase it by using -num_edicts
|
what i know right now is that default entity limit is something 1300.
255 can be render in one client sceen.
this things also come when you do just loop like this:
PHP Code:
new var
public plugin_init()
{
var = 1
func1()
}
func1()
{
func2()
}
func2()
{
if(var) func1()
}
game will be stuck in one place and never go farther.