Hi,
I've realized by using the zombie swarm plugin by Mini_Midget that the models are the "bug" that everyone is talking about (kickouts and errormsg "svc_bad"), since it loads models for the terrorist team all at once and the engine cant handle that. By having the cvar "zs_use 0" in the server.cfg, these kickout wont occure anymore. (zs_use 0 = dont use playermodels).
I would like the models to load on one player at a time with a few millisecs interval. And ONLY for the terrorists team that is. I've tried cs_set_user_model (1, xxx) cs_set_user_model (2, xxx) and so on, trying to set a model for players 1-16 or 16-32 (since I thought maybe the the terro team is player 1-16 or 17-32 but that just screwed up the whole plugin. I guess I totally got i wrong, so please help me with this anyone, it would help a lot of ppl if it works, this is just my theory though, maybe it doesnt work? And yes ive precached the model and right now using:
if(team == CS_TEAM_T)
{
cs_set_user_model (id, "hl2_zombie")
and cs_reset_user_model for the ct team
Its a bit different from the original zombie swarm and for me it works better, but as I said, i would like the models to be loaded one by one for the whole team, please help me out all pawn 1337s out there =)
Thanks in advance
EDIT: By loading models I mean every roundstart of course. (Thats the only time ppl get kicked out because of overload on server or whatever it is)