Skip to content

Commit f48a5b0

Browse files
committed
Updated.
1 parent 8d41c28 commit f48a5b0

File tree

12 files changed

+81
-57
lines changed

12 files changed

+81
-57
lines changed

.vuepress/public/favicon.ico

-4 MB
Binary file not shown.

cn/Components/CustomTypes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ category:
66

77
## ActorFilter
88

9+
## ActorReference
10+
| 名称 | 类型 | 描述 |
11+
| ----------- | ----------- | ----------- |
12+
| type | enum | 要筛选到的人物(`Player`=仅玩家, `SquadMember`=小队成员, `VehiclePassenger`=载具乘客, `FromSignal`=触发触发器的人物, `None`=无) |
13+
| squad | SquadReference | (仅`type``SquadMember`时可用)目标小队 |
14+
915
## MeshSkin
1016
| 名称 | 类型 | 描述 |
1117
| ----------- | ----------- | ----------- |

cn/Components/ToggleableItem.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ category:
1919

2020
## 注释
2121

22+
在projectlie生成的一瞬间,触发的动画机trigget是`throw`
23+
2224
## 变量
2325
| 名称 | 类型 | 描述 |
2426
| ----------- | ----------- | ----------- |

cn/Components/TriggerActivation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ category:
77
## 描述
88
[TriggerReceiver](./TriggerReceiver.md)类派生
99

10-
一般用于激活或隐藏一些特定的游戏物体
10+
用于激活或隐藏一些特定的游戏物体
1111
## 用法
1212

1313
挂载在任意空物体上后触发即可

cn/Components/TriggerAddActorAccessory.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ category:
88
[TriggerReceiver](./TriggerReceiver.md)类派生
99

1010
官方特别行动模式中的通讯兵身上使用了本组件相同的方法
11-
## 用法
1211

12+
用于给bot添加一点额外的东西到人物模型(装饰物)
13+
## 用法
1314

1415
挂载在任意空物体上触发即可
1516

@@ -18,6 +19,6 @@ category:
1819
## 变量
1920
| 名称 | 类型 | 描述 |
2021
| ----------- | ----------- | ----------- |
21-
| Type | enum | 添加人员装饰物或清理人员装饰物 |
22+
| type | enum | 目标操作(`AddAccessory`=添加, `ClearAccessories`=移除) |
2223
| actor | ActorReference | 要添加或清理装饰物的人员 |
2324
| accessory | ActorAccessory | 要添加的装饰物模型和对应的材质组 |

cn/Projects/mlang.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ XUnity.AutoTranslator是一个由BepInEX官方开发人员开发的一个游戏
101101

102102
我们故意将翻译文件作为工坊物品上传是为了进行正版认证(毕竟Steam已经关闭了Mod下载工具对RF工坊访问权限),如果您确有需要且无主观恶意,请自行找一个朋友代下
103103

104-
打开游戏目录,返回当前目录的上两级目录(例如游戏目录为`E:\Program Files\Steam\steamapps\common\Ravenfield`,返回上级目录后,文件管理器应处在`E:\Program Files\Steam\steamapps\`
104+
打开游戏目录,返回当前目录的上两级目录(例如游戏目录为`E:\Program Files\Steam\steamapps\common\Ravenfield`,返回上级目录后,文件管理器应处在`E:\Program Files\Steam\steamapps`
105105

106106
然后依次打开当前目录下的`\workshop\content\636480\3237432182`,如图(保证已订阅上面的工坊项目,此处的`3237432182`即为我们的工坊项目id):
107107

cn/Projects/ravenm.md

Lines changed: 30 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -32,43 +32,39 @@ RavenM是社区驱动的Ravenfield联机插件,国际版在[Github](https://gi
3232
**你也可以在[这里](#使用)获取RavenM的详细使用指南**
3333
:::
3434

35-
> **直接安装**
36-
>
37-
> 在开始菜单找到并打开 [终端](https://apps.microsoft.com/detail/9n0dx20hk701?hl=zh-CN&gl=CN)[Powershell](https://www.51cto.com/article/696873.html),右键复制粘贴以下命令到那边,并回车确定,稍等一下,按说明操作即可:
38-
> ```powershell
39-
> $w=(New-Object System.Net.WebClient);
40-
> $w.Encoding=[System.Text.Encoding]::UTF8;
41-
> iex($w.DownloadString('https://ravenfieldcommunity-static.netlify.app/get_ravenmcn_d-utf8.ps1'));
42-
> Read-Host;
43-
> ```
44-
>
45-
> 直接安装方式不支持Win7自带的Powershell 2.0,有需要可以自行升级Powershell或使用手动安装方式
35+
### 直接安装
4636

47-
> **Macos/linux直接安装**
48-
>
49-
>如果你是MacOS或Linux用户,请打开终端运行以下命令,这会自动打开安装文件,按说明操作即可:
50-
> ```sh
51-
> curl -sSL http://ravenfieldcommunity.github.io/static/get_ravenmcn_d-utf8.sh | bash
52-
> ```
53-
>
54-
> 或者请按照[BepInEX官方文档](https://docs.bepinex.dev/articles/user_guide/installation/index.html?tabs=tabid-nix#installing-bepinex-1)来配置你的BepInEX环境后,让一个用Windows的朋友安装RavenM并让他把游戏目录下的`BepInEX\plugins\RavenM.dll`发给你,然后安装这个插件dll
37+
在开始菜单找到并打开 [终端](https://apps.microsoft.com/detail/9n0dx20hk701?hl=zh-CN&gl=CN)[Powershell](https://www.51cto.com/article/696873.html),右键复制粘贴以下命令到那边,并回车确定,稍等一下,按说明操作即可:
5538

56-
> **工具辅助安装**
57-
>
58-
> `Win键`+`R`打开运行框,输入以下命令并确定,这会自动打开安装文件,按说明操作即可:
59-
> ```batch
60-
> powershell -nop -c "$w=(New-Object System.Net.WebClient);$w.Encoding=[System.Text.Encoding]::UTF8;iex($w.DownloadString('https://ravenfieldcommunity-static.netlify.app/get_ravenmcn-utf8.ps1'));Read-Host;"
61-
> ```
62-
>
63-
>此安装方式不支持Win7自带的Powershell 2.0,有需要可以自行升级Powershell或使用手动安装方式
39+
```powershell
40+
$w=(New-Object System.Net.WebClient);
41+
$w.Encoding=[System.Text.Encoding]::UTF8;
42+
iex($w.DownloadString('https://ravenfieldcommunity-static.netlify.app/get_ravenmcn_d-utf8.ps1'));
43+
Read-Host;
44+
```
6445

65-
> **手动一键安装**
66-
>
67-
> 访问链接获取安装文件:[[蓝奏云(提取码:eetl)]](https://wwyl.lanzouj.com/b007slq59i) 最新版本号见网盘内备注
68-
>
69-
> 若无法访问蓝奏云,请参考[此知乎专栏](https://zhuanlan.zhihu.com/p/419457461)
70-
>
71-
> 在电脑上**下载并运行**网盘zip压缩包内的EXE文件即可
46+
直接安装方式不支持Win7自带的Powershell 2.0,有需要可以自行升级Powershell或使用手动安装方式
47+
48+
如果你是MacOS或Linux用户,请打开终端运行以下命令,这会自动打开安装文件,按说明操作即可:
49+
```sh
50+
curl -sSL http://ravenfieldcommunity.github.io/static/get_ravenmcn_d-utf8.sh | bash
51+
```
52+
53+
### 手动安装
54+
先安装[BepInEX](./mlang.md#安装BepInEX)
55+
56+
然后加入qq群,获取插件包,将其解压到游戏目录下的 `BepInEX/plugins` 目录
57+
58+
如果没有这个目录,就在正确安装BepInEX后先运行一遍游戏
59+
60+
61+
### 工具辅助安装
62+
63+
访问链接获取安装文件:[[蓝奏云(提取码:eetl)]](https://wwyl.lanzouj.com/b007slq59i)
64+
65+
若无法访问蓝奏云,请参考[此知乎专栏](https://zhuanlan.zhihu.com/p/419457461)
66+
67+
在电脑上**下载并运行**网盘zip压缩包内的EXE文件即可
7268

7369
## 使用
7470

cn/in-GAME/ravenm.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -68,19 +68,18 @@ description: 适用于国内版RavenM联机插件的使用说明
6868

6969
`Tab`打开的计分面板会也会显示玩家击杀统计
7070

71-
另附聊天框的可用命令(有些命令需要权限,`true``false`参数不分大小写):
71+
另附聊天框的可用命令(有些命令需要权限,`true``false`参数不分大小写,等价`on``off`):
7272
| 命令 | 仅房主可用 | 描述 |
7373
|------|------|------|
7474
| `/help <命令名>` || 获取对应命令的帮助 |
75-
| `/nametags <True\|False>` || 是否启用玩家名牌 |
76-
| `/nametagsteamonly <True\|False>` || 是否仅启用同队伍的玩家名牌 |
77-
| `/kill <玩家名>` || 击杀对应名称的玩家 |
78-
| `/kick <玩家名>` || 将对应名称的玩家踢出房间 |
79-
| `/ban <玩家名>` || 将对应名称的玩家永久踢出房间 |
80-
| `/hostteammemberchange ?` || |
81-
| `/hostteamchange ?` || |
82-
83-
示例如: `/nametags true`
75+
| `/tags (on|off|team)` || 是否启用玩家名牌,或仅为同队伍启用 |
76+
| `/kill ...` || 击杀对应名称的玩家 |
77+
| `/ban ...` || 将对应名称或id的玩家永久踢出房间 |
78+
| `/unban ...` || 撤销`/ban` |
79+
| `/hostteammemberchange <玩家名> (0|1|2)` || 为特定玩家设置队伍 |
80+
| `/setallteam (0|1|2)` || 为所有玩家设置队伍 |
81+
82+
示例如: `/tags true`
8483

8584
玩的开心!
8685

en/Projects/havenm.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,11 @@ It belongs to [Standt_Up](https://steamcommunity.com/profiles/76561198296228036)
2424

2525
Refer Github
2626

27-
```batch
28-
powershell -nop -c "$w=(New-Object System.Net.WebClient);$w.Encoding=[System.Text.Encoding]::UTF8;iex($w.DownloadString('http://ravenfieldcommunity.github.io/static/get_havenm-utf8.ps1'));Read-Host;"
27+
```powershell
28+
$w=(New-Object System.Net.WebClient);
29+
$w.Encoding=[System.Text.Encoding]::UTF8;
30+
iex($w.DownloadString('http://ravenfieldcommunity.github.io/static/get_havenm-utf8.ps1'));
31+
Read-Host;
2932
```
3033

3134
Re-installing equals updating!

en/Projects/ravenm.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ Here we also provide a community edition of RavenM for newer game as the officia
3838

3939
join the [Official discord server](https://discord.gg/63zE4gY), you can get the Windows installer on [#mod-installation channel](https://discord.com/channels/458403487982682113/458455470793949234).
4040

41+
It will finish all thing you need.
42+
4143
Official version of RavenM only.
4244

4345
#### By script on Macos/Linux
@@ -66,7 +68,7 @@ You can download the plugin here:
6668
6769
> [Community edition's github](https://github.com/RavenfieldCommunity/RavenM/releases)
6870
69-
As you downloaded the release, unzip the `.zip` file to `BepInEX\plugins` in game directory, or directly put the plugin `.dll` to `BepInEX\plugins` in game directory.
71+
As you downloaded the release, unzip the `.zip` file to `BepInEX\plugins` in game directory, or directly put the plugin `.dll` to `BepInEX\plugins` in game directory if there are only dlls(`.dll` files are plugin itself).
7072

7173
Now start the game, there will be a line of RavenM info at the down-left corner of window, if the plugin is installed correctly.
7274

@@ -128,4 +130,4 @@ All [contributors](https://github.com/RavenfieldCommunity/RavenM/graphs/contribu
128130

129131
![GitHub Contributors Image](https://contrib.rocks/image?repo=RavenfieldCommunity/RavenM)
130132

131-
And all the dev version testers in the discord server, thanks for finding out the bugs!
133+
**And all the dev version testers in the discord server, thanks for taking time to find out the bugs! ❤❤❤❤️❤️**

0 commit comments

Comments
 (0)