Left 4 Dead 2

Left 4 Dead 2

156 个评价
Realism Hard Eight
   
奖励
收藏
已收藏
取消收藏
Game Content: Scripts
Game Modes: Mutations
文件大小
发表于
更新日期
39.728 KB
2017 年 2 月 2 日 下午 1:46
6 月 13 日 下午 5:01
7 项改动说明 ( 查看 )

订阅以下载
Realism Hard Eight

描述
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

New version with corrections (made by
热门讨论 查看全部(1)
0
2022 年 10 月 24 日 下午 8:58
置顶: Bug reports
ᵀғ Jack Bauer ︻デ▬—
65 条留言
落花听雨 2024 年 10 月 8 日 下午 8:39 
How did you do it? Teach me
ᵀғ Jack Bauer ︻デ▬—  [作者] 2024 年 10 月 8 日 下午 2:45 
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.
落花听雨 2024 年 10 月 7 日 下午 7:39 
I am a cloud server, but I didn't build the game room myself
ᵀғ Jack Bauer ︻デ▬—  [作者] 2024 年 10 月 7 日 上午 10:35 
@落花听雨 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?
落花听雨 2024 年 10 月 6 日 下午 7:44 
This code seems to only be able to change modes using commands in the game, adding startup code directly outside has no effect
ᵀғ Jack Bauer ︻デ▬—  [作者] 2024 年 10 月 6 日 下午 1:22 
@落花听雨 Oh, xD. The translation was really off. The mode name is in the description: realismhardeight.
落花听雨 2024 年 10 月 6 日 上午 11:26 
For example, this startup code+mp_gamemode "mutation4"
落花听雨 2024 年 10 月 6 日 上午 11:22 
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
落花听雨 2024 年 10 月 6 日 上午 11:22 
I don't understand
ᵀғ Jack Bauer ︻デ▬—  [作者] 2024 年 10 月 6 日 上午 9:18 
@落花听雨 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.