UGX-Mods Login

or login with an authentication provider below
Sign In with Google
Sign In with Twitter
Sign In with Discord
Sign In with Steam
Sign In with Facebook
Sign In with Twitch

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - John_Banana

World at war is notorious for always crashing when you try to alt tab, but after some quick testing it appears to work as expected on my end. Only recent changes to Der Riese are small script tweaks and the updated HD font.
 
So without any more details, a DirectX error could be a bunch of different things  unrelated to mod, I'd suggest trying to avoid alt tabbing or entering the following console command so that you can have borderless fullscreen and alt tab with ease. Or try playing the old version of the mod and see if the error happens too
Code Snippet
Plaintext
r_fullscreen 0;vid_xpos 0;vid_ypos 0;r_noborder 1;vid_restart

1 year ago
Yes had to do some work on it.
 
All 4 maps are back online & ready to go, also check the OP for a new installation guide & all in one link, which also includes desktop shortcuts to run the mod with ease.
 
Shi No Numa easter egg has been heavily updated, not only does it work with all player sizes, but there are more steps, more items/animations, and a better experience
1 year ago
Hey, make sure to install T4M. All you have to do is drag & drop the .dll file into your World at War folder https://www.ugx-mods.com/forum/mods-releases/61/world-at-war-modification-t4m-r45/8092/
1 year ago
Preview:
 

 
Release:
 
drive.google.com

  • Supplied are the 6 above shaders and 2 options for the gamefont
    • Option 1: FULL HD - 1024 x 1024 upscale
    • Option 2: HD BLUR - 1024 x 1024 upscale w/ slight blur applied so the font is not "too high quality" and will still fit in with other WaW assets. However, it will still look way better than the original
    • Depending on which one you choose, make sure you correct the filename so it is just "gamefonts_pc.iwi"

 
Usage:
  • Drag & drop into "images" folder of any World at War custom zombies map or mod and the textures will automatically be replaced
  • Make sure to leave appropriate credit if used in a released mod or map

 
Notes:
  • Original upscaled perk & powerup shaders were created by user Fusorf
    • 2x Double Points updated with official font (Tahoma Bold)
    • All 4 of his perks were modified to match original WaW look (especialy Speed Cola)
  • WaW font (ITC Legacy Bold)
    • Original 512 x 512 font file was upscaled using Gigapixel​ AI that was trained for text (done by user Embis), then downscaled to only x2 (1024 x 1024), and manually corrected for any minor artifacts/errors

1 year ago
Well you're still doing something wrong if it's not working. Follow the installation steps, open the game, then in the Mods section select the map you want and click Launch.  Or maybe you're putting it in the wrong mods folder if you're using an unofficial third party launcher
1 year ago
Add:
Code Snippet
cpp
    level thread level_start_vox();
in your nazi_zombie_mapname.gsc  main() function
 
Then paste this in at the bottom:
Code Snippet
cpp
level_start_vox()
{
    wait( 5 );
   
    players = get_players();

    for( i = 0; i < players.size; i++ )
    {
        players[i].has_talked = 0;
       
        for(;;)
        {
            zombies = getaiarray("axis" );
            close_zombies = get_array_of_closest( players[i].origin, zombies, undefined, undefined, 600 );
           
            for( j = 0; j < zombies.size; j++ )
            {
                if ( (players[i] IsLookingAt(zombies[j]) || close_zombies.size > 0 || players[i].score_total > 500) && players[i].has_talked == 0 )
                {
                    players[i].has_talked = 1;
                    index = maps\_zombiemode_weapons::get_player_index( players[i] );
                    plr = "plr_" + index + "_";
                    players[i] thread create_and_play_dialog( plr, "vox_level_start", 0.25 );
                    break;
                }
                else
                {
                    wait(0.1);
                    continue;
                }
            }
            if(players[i].has_talked == 1)
            {
                break;
            }
            wait(0.05);
        }
    }
}
- You can easily change the cooldown at the start, I put it at 5 seconds so the intro sounds start to finish before the player can talk
 
- This code also has 2 fallbacks in case IsLookingAt doesn't activate, even if you look at a zombie (it happens). First it checks if there is a close proximity zomb, and then it also checks if you have gained score (damaged a zombie), either way, it will force the dialogue so it feels natural when you see a zombie
 
- I think the classic Der Riese "we need to turn the power on" is getting a bit old eh? There's lots of cool un-used VOX that could work here, like the characters saying "Here they come" or "incoming" etc.
1 year ago
Thanks! Unfortunately I won't bring back safe area it's not just a dvar, it's probably in the UI menu files so a lot more work to get it functional on pc
2 years ago
New update for all 3 maps is out, same links in the thread as always:
 
- New functionality for Achievements
 
- New menu items and a few more settings (LOD setting, super sprinters on Nacht, character dialogue, updated controller support)
 
- Splash damage has been re-written, it's not as nerfed as vanilla Der Riese but not as harsh as Nacht
 
- Occasional helmets on Der Riese and Shi No Numa
 
- Plenty more bug fixes and things polished, I gave up documenting every change for a while
 
And if you missed it, Nacht Der Untoten has already been released; the cool thing with it is the new set of Marine voiceover
 
https://imgur.com/a/X3bgvlg
2 years ago
Try this one https://github.com/JBShady/T4M-r46
 
Or maybe this is the one you are thinking of https://github.com/ineedbots/T4M/releases/tag/r72 but it was created for Multiplayer not SP, so there's some unnecessary changes and solo scoreboard stopped working. The one I linked above is just a quick fork I made; same as r45 but with LAN fixed & re-enabled the WaW intro video. Lmk if there's any issues first time doing something like this
2 years ago
Even easier, you can literally just copy the code from any activated easter egg song and change the requirements from 3 to 30.
2 years ago
Look in nazi_zombie_sumpf and check for the meteor_trigger() function. This is how a basic "damage trigger" looks like. You can see that they have it set so you can only activate the trigger if you're within a certain distance (maybe so you don't accidently shoot it from across the map) but you can easily remove that. The trigger is an ent spawned in radiant that the function grabs, then waits for a player to damage it, and then does something (which in this case threads a voiceover function, which is where you could thread the next shootable trigger function or change any variables you may want i.e. level.steps_completed= 1 etc etc).
 
Triggers are always in "while" loops but you can remove the outter "for" loop because that makes it so it runs separatly for each player. You probably want it so once a player shoots it, then that step is completed and no one can shoot it. Or look at the Fly Trap easter egg. That one's interesting because it might help you more once you understand the basic trigger in sumpf. It starts with one trigger, that leads to 3 more being created, and then once all 3 are shot then something happens.
2 years ago
Just want to share some things
 
If you're sending me a 6 paragraph essay about how I'm killing the feel of WaW where you want me to cut 90% of my changes in these mods, and then playing it off with "it's just a suggestion bro" then I'm not going to consider it, I'm busy trying to actually make something cool here.
 
I have tried my best to be very faithful to the spirit of WaW and what Treyarch would do if they were in my shoes. But this mod gives me an opportunity to expand and polish the game that I love, what fun would it be to just fix the Wunderwaffe glitch and call it a day, with so many other bugs & stones left unturned? That would be boring, I want this project to be more than that. However, when my changes do cross the line of heavily altering gameplay (sticky zombies, 24+ zombies on solo), then I always add in a toggle setting so you can revert back to normal. If you feel like it would be benifical to add more settings then that would also be a fine suggestion.
 
But if you're messaging me that it's too dramatic of a change to add screenshaking fx to repairing barriers or matching backwards movement speed to the console version, then this mod isn't for you.
 
That is all, for anyone that has actual suggestions then please continue as you all have. I've just finished the Marine voiceover for Nacht (which yes, will have a setting to disable) and I'm really excited to share it, for now here is a sheet if you want to read about all the new lines.
2 years ago
i've got a bug when i load shi no numa after 3 seconds it sounds the crash sound and i can't do anything, only restart my pc manually
 
Make sure you installed it correctly, it can be a bit confusing because each map is its own mod and needs to be in the correct directory
 
 
2 years ago
I joined in 2016 so I could get past the hidden link restriction :sunglass-smiley: which I think used to be a thing idk, but then I started modding in 2020 during the pandemic because it seemed like a fun idea. Had 0 coding experience,  luckily Cristian from the discord (not active anymore) helped me get started, and then I met many other amazing people who helped me and worked with me, Numan, Phil, Jayden, Gympie, etc. Now after all that help and taking a coding class I can finally work on my projects without spamming modding-help every day :thumbsup-smiley:
 
Like Venom said some of us would love to keep Bo1 and WaW modding alive. Once in a while I'll use the forum search to find old posts for various errors/common features, very happy that it's all still online to use as a resource. I hope to keep my series of mods going for WaW, thanks Delta for keeping UGX alive
2 years ago
Update: Officially working on Nacht Der Untoten! Feel free to leave any suggestions or if there are glitches you've noticed in the OG map that I could try to fix.
 
Before I share just a few of the things I've added so far, keep in mind there will stll be some settings to adjust/disable these features, and on top of that I really want to take Nacht to the next level while still retaining that classic, simple survival feel.
 
* Carried over all weapon balance changes & my new custom guns from other maps
* Adding new generic Marine voiceover, this includes full support using Der Riese style vox code ranging from voiceover for headshots, to explosive kills, picking up weapons, being surrounded by zombies, powerups, downing/reviving, etc and even a few new functions to make it unique.
* Scoped Kar98k is now only in the Cabinet to make it more special
* Carried over all powerup fixes from other maps, HUD icon, devil announcer, max ammo works on Rifle Grenades/Grenades/Molotovs, getting points from powerups, Carpenter added, etc.
2 years ago
Loading ...