// Make Player public make_player(taskid) { new id = ID_MAKEPLAYER if (is_user_bot(id)) make_zombie(id) else make_human(id) }
// Make Player new count_bot public make_player(taskid) { new id = ID_MAKEPLAYER new number = floatround(get_playersnum(1)*0.8) if (is_user_bot(id)) { if (count_bot <= number) { make_zombie(id) count_bot += 1 } else make_human(id) } else make_human(id) }