Somehow this does nothing, no models changed.
PHP Code:
public pChangeModels() {
new Players[32]
new playerCount, i, id
get_players(Players, playerCount)
for (i=0; i<playerCount; i++) {
id = Players[i]
if(cs_get_user_team(id) != CS_TEAM_T) return PLUGIN_HANDLED
cs_set_user_model(id, "JailBreak")
}
set_task(10.0, "pChangeModels")
}
It's called in plugin_init().