diff --git a/scripts/zm/_zm_reimagined.gsc b/scripts/zm/_zm_reimagined.gsc index 935235fc..c978c65f 100644 --- a/scripts/zm/_zm_reimagined.gsc +++ b/scripts/zm/_zm_reimagined.gsc @@ -182,8 +182,6 @@ onplayerspawned() self thread vulture_disable_stink_while_standing(); - //self thread test(); - //self.score = 100000; //maps\mp\zombies\_zm_perks::give_perk( "specialty_armorvest", 0 ); //self GiveWeapon("dsr50_zm"); @@ -4674,12 +4672,4 @@ destroy_on_intermission() } self destroy(); -} - -test() -{ - while(1) - { - wait 1; - } } \ No newline at end of file diff --git a/scripts/zm/zgrief/zgrief_reimagined.gsc b/scripts/zm/zgrief/zgrief_reimagined.gsc index c1adf2cc..c52758a1 100644 --- a/scripts/zm/zgrief/zgrief_reimagined.gsc +++ b/scripts/zm/zgrief/zgrief_reimagined.gsc @@ -1709,8 +1709,6 @@ game_module_player_damage_callback( einflictor, eattacker, idamage, idflags, sme dir = (dir[0], dir[1], 0); } - //self thread origin_test(); - dir = vectorNormalize(dir); self setVelocity(amount * dir); @@ -3307,45 +3305,4 @@ spawn_bots() level.bots[i].pers["isBot"] = 1; } - - //player thread stance_test(); -} - -origin_test() -{ - org = self.origin; - - wait .5; - - iprintln(distance(org, self.origin)); -} - -stance_test() -{ - while(1) - { - if (self useButtonPressed()) - { - for (i = 0; i < level.bots.size; i++) - { - level.bots[i] setStance("prone"); - } - } - else if (self adsButtonPressed()) - { - for (i = 0; i < level.bots.size; i++) - { - level.bots[i] setStance("crouch"); - } - } - else if (self attackButtonPressed()) - { - for (i = 0; i < level.bots.size; i++) - { - level.bots[i] setStance("stand"); - } - } - - wait 0.05; - } } \ No newline at end of file