Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate
Collapse

Plutonium

Ashton Biehlundefined

Ashton Biehl

@Ashton Biehl
About
Posts
20
Topics
11
Shares
0
Groups
0
Followers
6
Following
1

Posts

Recent Best Controversial

  • Custom Map (Town) Release
    Ashton Biehlundefined Ashton Biehl

    Call of Duty: Black Ops II Zombies - Town Custom Map

    I have had some requests to release this so here it is. This was taken out of my main scripts files. So if you have played the map before you will notice that the zombies are not running in this version doing more damage etc. You will have to edit that yourself.

    Created By: The Pit Stop/Ashton
    5.PNG

    Download, Discord

    1.PNG
    2.PNG
    3.PNG
    4.PNG

    BO2 Modding Releases & Resources

  • T6 ZM Universal Bank Addon
    Ashton Biehlundefined Ashton Biehl

    Addon Made By: Ashton Biehl
    Project Creator: JezuzLizard JezuzLizard
    Creator Project Github: https://github.com/JezuzLizard/T6-ZM-Universal-Bank
    Discord: Ashton Biehl#6969

    This adds the ablity to see your Bank amount on screen and allows the option to show other players bank

    1. Simply install the universal bank script from the link above
    2. Then drag the addon gsc in script/zm

    Commands:

    Withdraw:
    .w
    .with
    .withdraw

    Deposit:
    .d
    .dep
    .deposit

    Balance:
    .b
    .bal
    .balance

    Show Other Players Balance:
    .show
    .hide

    Examples:
    .w 1000
    .d 1000
    .b
    .show user12345
    .hide user12345

    Capture.PNG
    2.PNG
    Addon Download: https://github.com/ashtonb0001/BO2-Public-Mods.git!

    BO2 Modding Releases & Resources

  • [Release] [Zombies] Bonus Survival Maps for Tranzit
    Ashton Biehlundefined Ashton Biehl

    👍 Nice job guys!

    BO2 Modding Releases & Resources

  • [Release] Give A Powerup On Certain Round Start
    Ashton Biehlundefined Ashton Biehl

    Put this under onPlayerSpawned()

    self thread certainroundexample(); // you can change this to your liking its my example
    

    Then put this anywhere in your script

    certainroundexample()
    {
    	if(level.round_number >= 1) // You can change the rounds you want it to give the power up
            {
            	foreach(player in level.players)
            {
                    level thread maps\mp\zombies\_zm_powerups::double_points_powerup(self,player);
                    player thread maps\mp\zombies\_zm_powerups::powerup_vo("double_points");
            }
            }
    }
    

    If you want it on more than 1 certain round add this code instead of the top one

    certainroundex()
    {
    	if(level.round_number >= 1)
            {
            	foreach(player in level.players)
            {
                    level thread maps\mp\zombies\_zm_powerups::double_points_powerup(self,player);
                    player thread maps\mp\zombies\_zm_powerups::powerup_vo("double_points");
            }
            }
    	else if(level.round_number >= 5)
    	{
    		level thread maps\mp\zombies\_zm_powerups::double_points_powerup(self,player);
                    player thread maps\mp\zombies\_zm_powerups::powerup_vo("double_points");
    	}
    }
    

    and you can keep adding the "else if" to keep on adding powerups on certain rounds.
    this has been tested and it works

    If you have any questions add my discord: Ashton Biehl#6969

    BO2 Modding Releases & Resources

  • [Release] Give Money To Players Joining On A Certain Round
    Ashton Biehlundefined Ashton Biehl

    Put this in under player connect

    		if(level.round_number >= 5 && self.score < 2500)
    			self.score = 2500;
    		else if(level.round_number >= 15 && self.score < 5000)
    			self.score = 5000;
    

    If you have anymore questions let me know on my discord: Ashton Biehl#6969

    BO2 Modding Releases & Resources

  • Mod Menu for Server
    Ashton Biehlundefined Ashton Biehl

    @SinkH20 I could help I guess

    BO2 Server Hosting Support

  • Help me please
    Ashton Biehlundefined Ashton Biehl

    chorchi175 Just use notepad++ or Atom to edit gsc files Have anymore questions add me on Discord: Ashton Biehl#6969

    BO2 Modding Support & Discussion perks errors bo2 zombies scripts

  • [Support] Mod menu zombies
    Ashton Biehlundefined Ashton Biehl

    Elundil97 Yes it works I tested it

    BO2 Modding Support & Discussion

  • [Release] Set Money For Late People Joining
    Ashton Biehlundefined Ashton Biehl

    First you need to make a self thread under welcome()

    welcome()
    
     { 	
    	self waittill( "spawned_player" ); 	
    
    	self thread setlatepoints();
     }
    

    Next add this anywhere in your script

    setlatepoints()
    
    {
    		if(level.round_number >= 5 && self.score < 2500) // You can change the round and money to your liking.
    			self.score = 2500;
    	        else if(level.round_number >= 15 && self.score < 5000) // You can change the round and money to your liking.
    			self.score = 5000; 
    }
    

    Enjoy!

    If you have any questions add me on Discord: Ashton Biehl#6969

    BO2 Modding Releases & Resources

  • [Release] Set Mystery Box Cost
    Ashton Biehlundefined Ashton Biehl

    Kaizex I haven't tested it, but im sure it does if you inject it.

    BO2 Modding Releases & Resources

  • [Support] Mod menu zombies
    Ashton Biehlundefined Ashton Biehl

    Use Hellsvengance the zombies mod menu you can look it up on Google just put the GSC into your gametypes_zm and then inject it into your game. Then it will work if you have anymore questions add me on Discord Ashton Biehl#6969

    BO2 Modding Support & Discussion

  • [Support] Can someone help me with Anti Cheat
    Ashton Biehlundefined Ashton Biehl

    Ducxy Just use Iw4admin and connect it to your server.

    BO2 Modding Support & Discussion

  • [Release] Show Player Health Zombies
    Ashton Biehlundefined Ashton Biehl

    First you need to add healthPlayer() under onplayerconnect()

    onplayerconnect()
    {
    	for(;;)
    	{
    	level waittill( "connecting", player );
    	player.clientid = level.clientid;
    	player thread onplayerspawned();
    	level.clientid++;
    	player thread healthPlayer();
    	}
    }
    

    Next add this anywhere in your script

    healthPlayer()
    
    {
    	self endon("disconnect");
    	self.healthText = createFontString("Objective" , 1.7); //Fixed
            self.healthText setPoint("CENTER", "TOP", 300, "CENTER");
            while(true)
                  {
                   self.healthText setText( "^2HEALTH: ^7"+ self.health);
                   wait 0.5;
                  }
    }
    

    Enjoy!

    If you have any questions dm me on Discord: Ashton Biehl#6969

    BO2 Modding Releases & Resources

  • [Release] Set Mystery Box Cost
    Ashton Biehlundefined Ashton Biehl

    GewoonIraj I have more scripts so I put it to wait 15 seconds so I don't get spammed with a bunch of messages

    BO2 Modding Releases & Resources

  • [Release] Set Player Speed (Zombies)
    Ashton Biehlundefined Ashton Biehl

    First you need to make a self thread. Place setspeed(); under welcome()

    welcome()
    {
    	self waittill( "spawned_player" );
    	self thread setspeed();
    }
    

    Next you need to place this anywhere in your script.

    setspeed()
    
    {
    	self setmovespeedscale(2); // you can also change the (2) to (1) if its to fast
    }
    

    Or if you want it for yourself and not the whole lobby use this.

    setspeed()
    
    {
    	if ( self.name == "Raging MoDz" ) // Change Raging MoDz to your ingame name
    	{
    		self setmovespeedscale(2);
    	}
    }
    

    Enjoy!

    Have any questions add my Discord: Ashton Biehl#6969

    BO2 Modding Releases & Resources

  • [Release] Set Mystery Box Cost
    Ashton Biehlundefined Ashton Biehl

    First you need to make a self thread.

    welcome()
    {
    	self waittill( "spawned_player" );
    	self thread SetBoxCost(); 
    }
    

    then place SetBoxCost() anywhere in your script.

    SetBoxCost()
    {
    	i = 0;
        while (i < level.chests.size)
        {
            level.chests[ i ].zombie_cost = 100; // you can change the cost here
            level.chests[ i ].old_cost = 100; // you can change the cost here
            i++;
        }
    	wait 15; // This is the wait time before the iPrintln message box shows up. You can change this to your liking or remove it.
        self iPrintln("Mystery Box Cost Set To ^2100");
    }
    

    Enjoy!

    Have any questions add my Discord: Ashton Biehl#6969

    BO2 Modding Releases & Resources

  • [Release] Set Money On Spawn Zombies
    Ashton Biehlundefined Ashton Biehl

    First you need to make a self thread with setmoney() and place it under your welcome()

    welcome()
    {
    	self waittill( "spawned_player" );
    	self thread setmoney();
    }
    

    Next set this anywhere in your script

    setmoney()
    {
    		self.score = 500000;
    }
    

    Or if you want it just for yourself and not the whole lobby do this.

    setmoney()
    {
    	if( self.name == "Raging MoDz" ) // This is my name. Change this to your ingame name.
    	{
    		self.score = 500000;
    	}
    }
    

    Enjoy!

    Have any questions add my Discord: Ashton Biehl#6969

    BO2 Modding Releases & Resources

  • [Support] Spawn With Money Script BO2 Zombies (Help)
    Ashton Biehlundefined Ashton Biehl

    Make a self thread under player connect which my code would look like this

    welcome()
    {
    	self waittill( "spawned_player" );
    	self giveweapon( "fiveseven_upgraded_zm" );
    	self thread setmoney();
    }
    

    Then add setmoney() anywhere in your script

    setmoney()
    {
        self.score = 500000;
    }
    

    or if you want the money just for you when you spawn then...

    setmoney()
    {
    	if( self.name == "Raging MoDz" ) // this is my example. Replace Raging MoDz with your ingame name.
    	{
    		self.score = 500000;
    	}
    }
    

    This code does work

    BO2 Modding Support & Discussion

  • I need help transfering MW3 server files to my VPS
    Ashton Biehlundefined Ashton Biehl

    I used this walk through: https://forum.plutonium.pw/topic/582/linux-ubuntu-vps-and-server-setup-for-iw5/6

    but I cant figure out how to connect my vps to FileZilla so I can transfer files over to my VPS.

    Can anyone help?
    My discord is: Ashton Biehl#6969

    MW3 Server Hosting Support
  • 1 / 1
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate