Skip to content

WAW Modding Releases & Resources

Plutonium T4 Mod releases and resources go here.

137 Topics 564 Posts
  • WAW DDS DUMP / T4 IPAK EXPORTER

    5
    2
    2 Votes
    5 Posts
    966 Views
    @GhostRider0125 saw u in some servers, my discord is brisko9555
  • (ZM) Gold Pack-A-Punch Camo for WaW

    12
    8
    6 Votes
    12 Posts
    6k Views
    @Deadsled8 it does work Make sure to read the instructions slowly again and to not have another PaP camo already [image: 1758123782273-c23b7bae-d935-4fb6-9f26-001114158f05-image.png] [image: 1758123890454-7cd62a62-e94f-4570-9727-c96f970246b8-image.png]
  • 0 Votes
    1 Posts
    839 Views
    No one has replied
  • 1 Votes
    7 Posts
    2k Views
    @Zelinium I might, I'd have to figure out which cats should be for the new perks (electric cherry, tombstone, who's who and vulture-aid) also I'm a little burnt out on cod zombies rn. Also in case anyone asks I wont be doing this for BO3 as I have no clue how to mod that game lol.
  • Purple Trench Gun

    1
    2
    1 Votes
    1 Posts
    862 Views
    No one has replied
  • Galaxy PAP Camo

    7
    15
    4 Votes
    7 Posts
    2k Views
    updated the camo, new screenshots at the top.
  • [RELEASE] Postal 2 HUD Perks, Viewmodel, Powerups, Font (WaW)

    13
    3
    5 Votes
    13 Posts
    4k Views
    niiiceeee B)
  • T4 WaW White Essentials Pack

    17
    5
    5 Votes
    17 Posts
    4k Views
    ty vro u cooked hard ngl
  • Cyan STG44

    5
    2
    4 Votes
    5 Posts
    1k Views
    looks good
  • zombi skin :D

    6
    2
    4 Votes
    6 Posts
    3k Views
    what is the file name of the zombie's arms and head ?
  • Colt 1911 Government Series 70 WaW Port

    3
    6
    2 Votes
    3 Posts
    1k Views
    GOAT LOVLEH
  • WAW Health script/mod to get 3 hit down?

    2
    0 Votes
    2 Posts
    1k Views
    /* * -------------------------------------------------------------------------------- * --- 3 Hit Down GSC Script for Call of Duty: World at War Zombies --- * -------------------------------------------------------------------------------- * * Description: * This script modifies the default player damage rules in Nazi Zombies to allow * players to withstand two zombie hits before going down on the third hit. * This script does not affect the damage boost provided by the Juggernog perk. * * Installation: * 1. Create a new file named "three_hit_down.gsc" in your map's GSC folder, * located at: /root/mods/your_map_name/maps/ * 2. Copy and paste the entire content of this script into the new file. * 3. Open your main map GSC file (e.g., nazi_zombie_mapname.gsc). * 4. At the top of your main map GSC file, add the following line: * #include maps\three_hit_down; * 5. In the main() function of your map's GSC file, add the following line * BEFORE maps\_zombiemode::main(); * thread three_hit_down::init(); * * Your main function should look something like this: * main() * { * // Other pre-zombiemode threads * * thread three_hit_down::init(); * * maps\_zombiemode::main(); * * // Other post-zombiemode code * } * * 6. Re-compile your map and run it. * * -------------------------------------------------------------------------------- */ init() { // This function will wait until all players are connected and then start // the monitoring process for each player. level flag_wait( "all_players_connected" ); for(;;) { level waittill( "connected", player ); player thread onPlayerConnect(); } } onPlayerConnect() { // When a player connects, this function is threaded to them. // It will end if the player disconnects. self endon( "disconnect" ); // Initialize the hit counter for this player self.hit_count = 0; for(;;) { // This is the core loop that monitors player damage. // It waits until the player is damaged. The 'eInflictor' is the entity // that caused the damage (in this case, a zombie). self waittill( "damage", damage, attacker, direction_vec, point, type, modelName, tagName, partName, iDFlags ); // We only care about damage from zombies. We check the attacker's script_noteworthy // to ensure it's a zombie. if ( isdefined( attacker.script_noteworthy ) && attacker.script_noteworthy == "zombie" ) { // We also don't want this to interfere with Juggernog. // If the player has Juggernog, we let the default damage logic handle it. if( !self maps\_zombiemode_perks::player_has_perk("specialty_armorvest") ) { // Increment the hit counter self.hit_count++; // If the hit count is less than 3, we prevent the player from taking damage. if ( self.hit_count < 3 ) { // Setting damage to 0 effectively negates the hit. damage = 0; } else { // On the third hit, we reset the counter and let the player go down. self.hit_count = 0; } } } } } This was made with AI, I just generated it as soon as I saw your question on the forum. No idea if it works havnt tested it, but maybe this could be a template to build off of. I did not write this simply asked AI to make it. Maybe this could work?
  • Upscaled WunderWaffe Textures

    12
    8
    2 Votes
    12 Posts
    2k Views
    @Brigeezy123 thx
  • Golden M1 Garand

    2
    4
    0 Votes
    2 Posts
    1k Views
    I wonder how you did it
  • 0 Votes
    15 Posts
    5k Views
    @Miaa_ see my other patches, they have install instructions
  • [ZM] Camo bowie knife obsidian block Minecraft

    2
    1
    3 Votes
    2 Posts
    670 Views
    Tutorial plsss
  • Verruckt Uncensored

    5
    4 Votes
    5 Posts
    3k Views
    how does one install it for waw
  • Purple Thompson

    1
    2
    0 Votes
    1 Posts
    439 Views
    No one has replied
  • Arizona Green Tea Camo

    4
    4
    3 Votes
    4 Posts
    902 Views
    @reret2728 youre getting molested
  • [ZM] Flamethrower Custom Green Screen Camo (Repost)

    6
    4 Votes
    6 Posts
    925 Views
    @GhostRider0125 thanks man