Results 1 to 9 of 9
  1. #1
    math340c's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    Denmark
    Posts
    88
    Reputation
    10
    Thanks
    8
    My Mood
    Goofy

    Question How to enable cheats in zombie?

    Hello guys. So me and my friends playing through redacted. And you cant be banned from there when you play offline lan. We want to play with cheats. But also with console cheats. How can we enable cheats. Because Redacted has this external console. When i want to give a weapon nothing happens. Then i writing sv_cheats 1, and console says itīs read only. I readed on wikia and it seems we need to start a map with "devmap" but any know the console names of all zombie maps? mp_tranzit, did not work? If someone knows, please say it, thanks in advance
    Just i could make trainers

  2. #2
    dtx12's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    145
    Reputation
    10
    Thanks
    1,853
    Quote Originally Posted by math340c View Post
    Hello guys. So me and my friends playing through redacted. And you cant be banned from there when you play offline lan. We want to play with cheats. But also with console cheats. How can we enable cheats. Because Redacted has this external console. When i want to give a weapon nothing happens. Then i writing sv_cheats 1, and console says itīs read only. I readed on wikia and it seems we need to start a map with "devmap" but any know the console names of all zombie maps? mp_tranzit, did not work? If someone knows, please say it, thanks in advance
    Even if you set sv_cheats to 1, it will be useless, commands which you trying to use, isn't exists in BO2.

  3. #3
    math340c's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    Denmark
    Posts
    88
    Reputation
    10
    Thanks
    8
    My Mood
    Goofy

    Thumbs up

    Quote Originally Posted by dtx12 View Post
    Even if you set sv_cheats to 1, it will be useless, commands which you trying to use, isn't exists in BO2.
    Oh hey dtx12, i also have you trainer, is so nice! As you say there is no cheats, then there is anyway to give ammo, to refill ammo completely, not infinite, but something like give ammo cheat, like in old codīs?

    I have got all command names for weapons. Is there anyway to example give stairs for bus? You trainer can give builded parts, but there is anyway to give example: stairs, jet engine part etc...
    Just i could make trainers

  4. #4
    dtx12's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    145
    Reputation
    10
    Thanks
    1,853
    Quote Originally Posted by math340c View Post
    Oh hey dtx12, i also have you trainer, is so nice! As you say there is no cheats, then there is anyway to give ammo, to refill ammo completely, not infinite, but something like give ammo cheat, like in old codīs?

    I have got all command names for weapons. Is there anyway to example give stairs for bus? You trainer can give builded parts, but there is anyway to give example: stairs, jet engine part etc...
    You can do it using GSC.

  5. #5
    HDJoWa's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Location
    Germany
    Posts
    52
    Reputation
    10
    Thanks
    185
    My Mood
    Dead
    speed = g_speed (190 is normal)

  6. #6
    math340c's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    Denmark
    Posts
    88
    Reputation
    10
    Thanks
    8
    My Mood
    Goofy
    Quote Originally Posted by dtx12 View Post
    You can do it using GSC.
    Yes i know, and thatīs also you creation, but how do i use it? Its a console? And where can i find command list for it?
    Just i could make trainers

  7. #7
    dtx12's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    145
    Reputation
    10
    Thanks
    1,853
    You can find enough information in the google about GSC scripting. Note: version of loader on mpgh is very old, you can find newer version in the google. Also according with what you want, this code should work fine for you.
     
    Code:
    #include common_scripts/utility;
    #include maps/mp/_utility;
    #include maps/mp/zombies/_zm_utility;
    
    //Place call to your main function here.
    init()
    {
    	thread onPlayerConnect();
    }
    
    onPlayerConnect()
    {
    	for (;;)
        	{
           		 level waittill("connected", player);
           		 player thread onPlayerSpawned();
    	}
    }
    
    onPlayerSpawned()
    {
    	for (;;)
        	{
          	        self waittill("spawned_player");
    		wait 10;
    		self thread give_piece();
    		self thread toggle_ammo();
    	}
    }
    
    toggle_ammo()
    {
    	while ( isDefined( self ) )
    	{
    		weapon = self getcurrentweapon();
    		if ( weapon != "none" )
    		{
    			self setweaponoverheating( 0, 0 );
    			max = weaponmaxammo( weapon );
    			if ( isDefined( max ) )
    			{
    				self setweaponammostock( weapon, max );
    			}
    			if ( isDefined( self get_player_tactical_grenade() ) )
    			{
    				self givemaxammo( self get_player_tactical_grenade() );
    			}
    			if ( isDefined( self get_player_lethal_grenade() ) )
    			{
    				self givemaxammo( self get_player_lethal_grenade() );
    			}
    		}
    		wait 1;
    	}
    }
    
    give_piece()
    {
    	candidate_list = [];
    	foreach (zone in level.zones)
    	{
    		if ( isDefined( zone.unitrigger_stubs ) )
    		{
    			candidate_list = arraycombine( candidate_list, zone.unitrigger_stubs, 1, 0 );
    		}
    	}
    	foreach (stub in candidate_list)
    	{
    		if ( isDefined( stub.piece ) && isDefined( stub.piece.buildable_slot ) )
    		{
    			if ( !isDefined( self maps/mp/zombies/_zm_buildables::player_get_buildable_piece( stub.piece.buildable_slot ) ) )
    			{
    				self thread maps/mp/zombies/_zm_buildables::player_take_piece( stub.piece );
    			}
    		}
    	}
    }
    Last edited by dtx12; 08-06-2014 at 10:02 AM.

  8. #8
    Master.Shake's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    My Mood
    Aggressive
    there is a trainer I found that works online and off. And it works with zombies and multiplayer on redacted. Pm me and Ill give it to you.

  9. #9
    math340c's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    Denmark
    Posts
    88
    Reputation
    10
    Thanks
    8
    My Mood
    Goofy
    Quote Originally Posted by dtx12 View Post
    You can find enough information in the google about GSC scripting. Note: version of loader on mpgh is very old, you can find newer version in the google. Also according with what you want, this code should work fine for you.
     
    Code:
    #include common_scripts/utility;
    #include maps/mp/_utility;
    #include maps/mp/zombies/_zm_utility;
    
    //Place call to your main function here.
    init()
    {
    	thread onPlayerConnect();
    }
    
    onPlayerConnect()
    {
    	for (;;)
        	{
           		 level waittill("connected", player);
           		 player thread onPlayerSpawned();
    	}
    }
    
    onPlayerSpawned()
    {
    	for (;;)
        	{
          	        self waittill("spawned_player");
    		wait 10;
    		self thread give_piece();
    		self thread toggle_ammo();
    	}
    }
    
    toggle_ammo()
    {
    	while ( isDefined( self ) )
    	{
    		weapon = self getcurrentweapon();
    		if ( weapon != "none" )
    		{
    			self setweaponoverheating( 0, 0 );
    			max = weaponmaxammo( weapon );
    			if ( isDefined( max ) )
    			{
    				self setweaponammostock( weapon, max );
    			}
    			if ( isDefined( self get_player_tactical_grenade() ) )
    			{
    				self givemaxammo( self get_player_tactical_grenade() );
    			}
    			if ( isDefined( self get_player_lethal_grenade() ) )
    			{
    				self givemaxammo( self get_player_lethal_grenade() );
    			}
    		}
    		wait 1;
    	}
    }
    
    give_piece()
    {
    	candidate_list = [];
    	foreach (zone in level.zones)
    	{
    		if ( isDefined( zone.unitrigger_stubs ) )
    		{
    			candidate_list = arraycombine( candidate_list, zone.unitrigger_stubs, 1, 0 );
    		}
    	}
    	foreach (stub in candidate_list)
    	{
    		if ( isDefined( stub.piece ) && isDefined( stub.piece.buildable_slot ) )
    		{
    			if ( !isDefined( self maps/mp/zombies/_zm_buildables::player_get_buildable_piece( stub.piece.buildable_slot ) ) )
    			{
    				self thread maps/mp/zombies/_zm_buildables::player_take_piece( stub.piece );
    			}
    		}
    	}
    }

    Thank you very much, what are the commands to activate it?
    Just i could make trainers

Similar Threads

  1. How to enable cheats on zombies(Multiplayer)?
    By akres13 in forum Call of Duty Black Ops Help
    Replies: 9
    Last Post: 02-15-2011, 08:13 AM
  2. How to ENABLE cheats ZOMBIE PRIVATE MATCH
    By Loudness_ in forum Call of Duty Black Ops Help
    Replies: 6
    Last Post: 12-18-2010, 08:41 PM
  3. how to enable cheats in mp in zombies?
    By xbeatsszzx in forum Call of Duty Black Ops Help
    Replies: 9
    Last Post: 12-04-2010, 08:14 PM
  4. how to enable cheats on SKIDROW BO
    By 2unbaned acc in forum Call of Duty Black Ops Help
    Replies: 5
    Last Post: 12-02-2010, 09:00 AM
  5. How to enable Cheats in Training?
    By DigitalMind in forum Call of Duty Black Ops Discussions
    Replies: 3
    Last Post: 11-13-2010, 09:53 AM