Quote: --- Original message by: sierra117
what the script to disable dev?
Quote: --- Original message by: Kirby_422
(script continuous nocheatingSP
(sleep 5)
(if (= cheat_deathless_player 1) (begin (set cheat_deathless_player 0) (game_lost)))
(if (= cheat_infinite_ammo 1) (begin (set cheat_infinite_ammo 0) (game_lost)))
(if (= cheat_bottomless_clip 1) (begin (set cheat_bottomless_clip 0) (game_lost)))
(if (= rasterizer_wireframe 1) (begin (set rasterizer_wireframe 0) (game_lost)))
(if (= cheat_super_jump 1) (begin (set cheat_super_jump 0) (game_lost)))
(if (= cheat_medusa 1) (begin (set cheat_medusa 0) (game_lost)))
(if (= cheat_jetpack 1) (begin (set cheat_jetpack 0) (game_lost)))
(if (= cheat_omnipotent 1) (begin (set cheat_omnipotent 0) (game_lost)))
(if (= cheat_bump_possession 1) (begin (set cheat_bump_possession 0) (game_lost)))
(camera_control 0)
)
Quote: --- Original message by: sierra117
also i have a problem with the ai_living_count script: its for a solo map and this is the whole script thats based on it:
(sleep_until (= (ai_living_count encount_1) 0) 15)
or
(script startup complete
(sleep_until (= (ai_living_count swat_elites) 0) 15)
(camera_set_dead player1)
(game_won)
)
It wait's until there all dead, if that's what you want
Edited by megahalofan12 on Nov 27, 2008 at 09:23 PM