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

Plutonium

Segaundefined

Sega

@Sega
About
Posts
3
Topics
1
Groups
0
Followers
4
Following
3

Posts

Recent Best Controversial

  • Black Ops 2 Zombies Reimagined
    Segaundefined Sega

    I was about to download this, but you missed the mark terribly with all of these Origins changes 👎


  • new cheater discoverd (Khaledpaascal)
    Segaundefined Sega

    shut up


  • Zombies Counter Error
    Segaundefined Sega

    Error: https://imgur.com/a/KQU64Fl

    _clientids:

    #include maps\mp\_utility;
    #include common_scripts\utility;
    #include maps\mp\gametypes_zm\_hud_util;
    #include maps\mp\gametypes_zm\_hud_message;
    #include maps\mp\gametypes_zm\counter; 
    
    init()
    {
       
        level.perk_purchase_limit = 9;
        for(;;)
        {
            level waittill("connected", player);
            player thread welcome();
        }
    }
    
    welcome()
    {
        self endon("disconnect");
        self waittill("spawned_player");
        wait 7;
    	self iprintln("^0 No Perk Limit in BLACK IRIDESCENT");
    }
    

    counter:

    #include maps\mp\_utility;
    #include common_scripts\utility;
    #include maps\mp\gametypes_zm\_hud_util;
    #include maps\mp\gametypes_zm\_hud_message;
    #include maps\mp\gametypes_zm\counter; 
    
    init()
    {
    level thread drawZombiesCounter();
    }
    drawZombiesCounter()
    {
        level.zombiesCounter = createServerFontString("hudsmall" , 1.9);
        level.zombiesCounter setPoint("CENTER", "CENTER", "CENTER", 190);
        level thread updateZombiesCounter();
    }
    updateZombiesCounter()
    {
        oldZombiesCount = get_current_zombie_count();
        while(true)
        {
            newZombiesCount = get_current_zombie_count();
            wait 0.05;
            if(oldZombiesCount != newZombiesCount)
            {
                level thread updateZombiesCounter();
                return;
            }
            else
            {
            	if(newZombiesCount != 0)
            		level.zombiesCounter.label = &"Zombies: ^1";
            	else
            		level.zombiesCounter.label = &"Zombies: ^6";
            	level.zombiesCounter setValue(newZombiesCount);
            }
        }
    }
    

    Been stealing code and asking for help for 2 hours. 10/10 contemplating suicide.

  • 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