Skip to content
  • 0 Unread 0
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
Collapse

Plutonium

  1. Home
  2. WAW Modding Releases & Resources
  3. [ZM] [RELEASE] First Box patch + timer + movement speed patch NACHT DER UNTOTEN

[ZM] [RELEASE] First Box patch + timer + movement speed patch NACHT DER UNTOTEN

Scheduled Pinned Locked Moved WAW Modding Releases & Resources
12 Posts 6 Posters 3.1k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • MrConfettiundefined MrConfetti

    AlexInVr Would there be a way to have just the timer and move speed fix, I cant seem to find those standalone.

    AlexInVrundefined Offline
    AlexInVrundefined Offline
    AlexInVr
    wrote on last edited by
    #3

    MrConfetti For sure,

    #include maps\_utility;
    #include common_scripts\utility;
    #include maps\_zombiemode_utility;
    
    //First Box by twitch.tv/AlexInVR
    
    init()
    {
    	thread OnPlayerConnect();
       
    }
    
    OnPlayerConnect()
    {
    	for(;;)
    	{
    		level waittill( "connecting", player );
    		player thread OnPlayerSpawned();
    	}
    }
    
    
    
    game_timer()
    {	
    	hud = create_simple_hud( self );
    	hud.foreground = true; 
    	hud.sort = 1; 
    	hud.hidewheninmenu = true; 
    	hud.alignX = "left"; 
    	hud.alignY = "top";
    	hud.horzAlign = "user_left"; 
    	hud.vertAlign = "user_top";
    	hud.x = hud.x - -700; 
    	hud.y = hud.y + 35; 
    	hud.alpha = 1;
    	time_text = string(GetTime() / 1000);
    	flag_wait("all_players_spawned");
    	while (1){
    		hud setTimerUp(1);
    		hud setTimer(time_text);
    	}
    	
    }
    
    OnPlayerSpawned()
    {
    	self endon( "disconnect" ); 
    
    	for( ;; )
    	{
    		
    		level waittill( "connected", player ); 
    		self thread game_timer();
    		self SetClientDvars( 
    			"player_backSpeedScale", "1", 
    			"player_strafeSpeedScale", "1");
    
    		
    		wait 3;
    
    		self IPrintLnBold("Timer and speed patch by ^1twitch.tv/^2AlexInVR");
    	}
    	level waittill( "connected", player ); 
    	
    }   
    
    MrConfettiundefined 1 Reply Last reply
    0
    • AlexInVrundefined AlexInVr

      MrConfetti For sure,

      #include maps\_utility;
      #include common_scripts\utility;
      #include maps\_zombiemode_utility;
      
      //First Box by twitch.tv/AlexInVR
      
      init()
      {
      	thread OnPlayerConnect();
         
      }
      
      OnPlayerConnect()
      {
      	for(;;)
      	{
      		level waittill( "connecting", player );
      		player thread OnPlayerSpawned();
      	}
      }
      
      
      
      game_timer()
      {	
      	hud = create_simple_hud( self );
      	hud.foreground = true; 
      	hud.sort = 1; 
      	hud.hidewheninmenu = true; 
      	hud.alignX = "left"; 
      	hud.alignY = "top";
      	hud.horzAlign = "user_left"; 
      	hud.vertAlign = "user_top";
      	hud.x = hud.x - -700; 
      	hud.y = hud.y + 35; 
      	hud.alpha = 1;
      	time_text = string(GetTime() / 1000);
      	flag_wait("all_players_spawned");
      	while (1){
      		hud setTimerUp(1);
      		hud setTimer(time_text);
      	}
      	
      }
      
      OnPlayerSpawned()
      {
      	self endon( "disconnect" ); 
      
      	for( ;; )
      	{
      		
      		level waittill( "connected", player ); 
      		self thread game_timer();
      		self SetClientDvars( 
      			"player_backSpeedScale", "1", 
      			"player_strafeSpeedScale", "1");
      
      		
      		wait 3;
      
      		self IPrintLnBold("Timer and speed patch by ^1twitch.tv/^2AlexInVR");
      	}
      	level waittill( "connected", player ); 
      	
      }   
      
      MrConfettiundefined Offline
      MrConfettiundefined Offline
      MrConfetti
      wrote on last edited by
      #4

      AlexInVr Thanks so much, godspeed to you

      AlexInVrundefined 1 Reply Last reply
      1
      • MrConfettiundefined MrConfetti

        AlexInVr Thanks so much, godspeed to you

        AlexInVrundefined Offline
        AlexInVrundefined Offline
        AlexInVr
        wrote on last edited by
        #5

        MrConfetti Welcome my friend ! 🙂

        1 Reply Last reply
        0
        • chuyito9154undefined Offline
          chuyito9154undefined Offline
          chuyito9154
          wrote on last edited by
          #6

          que es lo que hace este mod?

          AlexInVrundefined aku_undefined 2 Replies Last reply
          0
          • chuyito9154undefined chuyito9154

            que es lo que hace este mod?

            AlexInVrundefined Offline
            AlexInVrundefined Offline
            AlexInVr
            wrote on last edited by
            #7

            chuyito9154 I'm sorry bro I don't speak spanish, using google translate your comment asks what does this mod do, without offense, I wrote everything in the title and the description of the post my guy, idk what to tell you more 😕

            1 Reply Last reply
            0
            • chuyito9154undefined chuyito9154

              que es lo que hace este mod?

              aku_undefined Offline
              aku_undefined Offline
              aku_
              wrote on last edited by
              #8

              chuyito9154 no es un mod, es un parche. first box-timer- fix speed

              1 Reply Last reply
              1
              • WockXundefined Offline
                WockXundefined Offline
                WockX
                wrote on last edited by
                #9

                How do I properly set this patch up? I dropped it in the nazi_zombie_prototype Folder as a txt Doc. but still wont run as intended. Could you maybe help clarify on the correct way to have it set up? I even downloaded Notepad++ to see if it would let me convert it to a GSC file but couldn't figure it out unfortunately. I just got into modding so this is all very new to me. This Photo is how I have it set up as of now. Screenshot 2023-01-08 121214.png

                AlexInVrundefined 1 Reply Last reply
                0
                • WockXundefined WockX

                  How do I properly set this patch up? I dropped it in the nazi_zombie_prototype Folder as a txt Doc. but still wont run as intended. Could you maybe help clarify on the correct way to have it set up? I even downloaded Notepad++ to see if it would let me convert it to a GSC file but couldn't figure it out unfortunately. I just got into modding so this is all very new to me. This Photo is how I have it set up as of now. Screenshot 2023-01-08 121214.png

                  AlexInVrundefined Offline
                  AlexInVrundefined Offline
                  AlexInVr
                  wrote on last edited by
                  #10

                  WockX you need to change the extension of the file to .gsc, in your windows explorer, click "View" then there should be an option called something like "Show file extensions" click that, you will now see your file as .txt, rename it, and rename the .txt to .gsc

                  1 Reply Last reply
                  0
                  • Classical Castleundefined Offline
                    Classical Castleundefined Offline
                    Classical Castle
                    wrote on last edited by
                    #11

                    can i just get the box patch

                    AlexInVrundefined 1 Reply Last reply
                    0
                    • Classical Castleundefined Classical Castle

                      can i just get the box patch

                      AlexInVrundefined Offline
                      AlexInVrundefined Offline
                      AlexInVr
                      wrote on last edited by
                      #12

                      Classical Castle add // before the line game_timer()

                      1 Reply Last reply
                      0

                      Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                      Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                      With your input, this post could be even better 💗

                      Register Login
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

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