I want to substitute a default precached file with my own which changes on map change (ServerDeactivate/pfnChangeLevel?).
ie:
Code:
server start: de_dust
substitute BotProfile.db with DesertBots.db
precache models in DesertBots.db
run AddDesBots.cfg
play map with desert camo models
change map: fy_iceworld
substitute BotProfile.db with ArcticBots.db
precache models in ArcticBots.db
run AddArcBots.cfg
play map with arctic camo models
I'm assuming that if I can tell the engine which Bot Profile to load on each map change it will only precache the models in that bot profile instead of precaching all models in the master BotProfile.db (50+) which I can't do now because of the 512 precache limit. Thanks to Splorygon, I've been editing the cfg loader he made out of the HPB_Bot template to try and allow this map specific model minipulation.