You speak the truth. I wasn't aware of that.Eraser wrote:I doubt info_null counts towards that limit?Code: Select all
void SP_info_null( gentity_t *self ) { G_FreeEntity( self ); }
max # of entities in a quake 3 map?
-
- Posts: 384
- Joined: Fri Mar 05, 2010 5:29 pm
Re: max # of entities in a quake 3 map?
-
- Posts: 4022
- Joined: Sat Mar 12, 2005 6:24 pm
Re: max # of entities in a quake 3 map?
No. Hitscan weapons use a different system. Only rockets and bolts (RL, GL, PG, BFG) take up entity slots.dghost77 wrote:I'll have to leave more room for entities then, so I guess that all shots being fired in a map count as an entity? Even the machine gun shots?
Re: max # of entities in a quake 3 map?
ah ok, thx for the precision.
[b]DG[color=#0040FF]host[/color][/b]
[url]http://www.dghost.com[/url]
[url]http://www.dghost.com[/url]
Re: max # of entities in a quake 3 map?
Isn't there this 256 func_door limit too?
Re: max # of entities in a quake 3 map?
I believe that dead bodies and gibs count as well - part of that goes toward the allocation of 64 for players - unless you had 64 players and then it would roll over into the remainder of the 1024 entities.
[color=#4040FF][b]www.mrlego.com[/b][/color]
Re: max # of entities in a quake 3 map?
I'm not sure about dead bodies, but gibs certainly don't. They're client side things. The server doesn't even know there is such a thing as a gib.MrLego wrote:I believe that dead bodies and gibs count as well - part of that goes toward the allocation of 64 for players - unless you had 64 players and then it would roll over into the remainder of the 1024 entities.
Re: max # of entities in a quake 3 map?
The server doesn't care about gibs or bodies but they still apply towards the entity count on the client side.
Once you hit the limit things start to randomly blink in and out or just disappear completely.
I have seen this more times on RTCW and Enemy Territory maps where there are more scripted events happening - Quake 3 maps are more run & gun and usually don't contain all of the extra eye-candy gamemodels.
Once you hit the limit things start to randomly blink in and out or just disappear completely.
I have seen this more times on RTCW and Enemy Territory maps where there are more scripted events happening - Quake 3 maps are more run & gun and usually don't contain all of the extra eye-candy gamemodels.
[color=#4040FF][b]www.mrlego.com[/b][/color]
Re: max # of entities in a quake 3 map?
Yeah but this is not directly related to the number of entities in maps. The client will only hold a list of entities that are of relevance to the client, so if there's 1000 entities elsewhere in the map, those won't be present on the client and won't work towards the client's entity limit.MrLego wrote:The server doesn't care about gibs or bodies but they still apply towards the entity count on the client side.