Left 4 Dead 2

Left 4 Dead 2

148 ratings
Realism Hard Eight
   
Award
Favorite
Favorited
Unfavorite
Game Content: Scripts
Game Modes: Mutations
File Size
Posted
Updated
39.484 KB
Feb 2, 2017 @ 1:46pm
Oct 24, 2022 @ 7:58pm
6 Change Notes ( view )

Subscribe to download
Realism Hard Eight

Description
Hard Eight with the Realism made by Valve.

The internal mode name for use in the console is realismhardeight.

Double the specials, quadruple the fun! NOW IN REALISM... This addon simply merges the amount of specials and faster respawns of Hard Eight with the difficulties of the classic Realism mode.

Now no one can say that Realism is harder than Hard Eight. This mutation is for tough guys (and girls) who are hardcore players. If you think you're good at this game... try this mutation.

Source: https://github.com/alexiscoutinho/RH8
Popular Discussions View All (1)
0
Oct 24, 2022 @ 8:58pm
PINNED: Bug reports
[TF] Jack Bauer ︻デ▬——
65 Comments
落花听雨 Oct 8, 2024 @ 8:39pm 
How did you do it? Teach me
[TF] Jack Bauer ︻デ▬——  [author] Oct 8, 2024 @ 2:45pm 
I also used a cloud server. I uploaded the mutation to the appropriate folder there, then I would configure and create the matches normally ingame. The server would automatically load the correct mutation vpk depending on what gamemode the friends lobby was using.
落花听雨 Oct 7, 2024 @ 7:39pm 
I am a cloud server, but I didn't build the game room myself
[TF] Jack Bauer ︻デ▬——  [author] Oct 7, 2024 @ 10:35am 
@落花听雨 Humm, idk. I've never tried to play the mutation through the +mp_gamemode launch option. When I used my dedicated server, I used a server search key, so that whenever I chose the "Best available dedicated" option in the lobby configuration, my server would be chosen and it would automatically run the chosen mutation (Realism Hard Eight). Have you already tried this?
落花听雨 Oct 6, 2024 @ 7:44pm 
This code seems to only be able to change modes using commands in the game, adding startup code directly outside has no effect
[TF] Jack Bauer ︻デ▬——  [author] Oct 6, 2024 @ 1:22pm 
@落花听雨 Oh, xD. The translation was really off. The mode name is in the description: realismhardeight.
落花听雨 Oct 6, 2024 @ 11:26am 
For example, this startup code+mp_gamemode "mutation4"
落花听雨 Oct 6, 2024 @ 11:22am 
What is the startup code for this mutation pattern. For example, the startup code for Hard Eight mode is mutation4. I want to automatically become Realism Hard Eight when I enter my server
落花听雨 Oct 6, 2024 @ 11:22am 
I don't understand
[TF] Jack Bauer ︻デ▬——  [author] Oct 6, 2024 @ 9:18am 
@落花听雨 Put this in your director_base_addon.nut:

DirectorOptions.DefaultItems <-
[
//"weapon_pistol_magnum",
//"weapon_defibrillator",
]

DirectorOptions.GetDefaultItem <- function ( idx )
{
if ( idx < DefaultItems.len() )
return DefaultItems[idx];

return 0;
}

Obviously uncomment the items with what you want.