Skip to content

Commit 5c68cf7

Browse files
committed
增加了获取目前标点的方法
1 parent b0f9110 commit 5c68cf7

File tree

3 files changed

+70
-1
lines changed

3 files changed

+70
-1
lines changed

Main.cs

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
[assembly: AssemblyTitle("库啵标点")]
1313
[assembly: AssemblyDescription("在场地上标明安全点等提示")]
14-
[assembly: AssemblyVersion("1.1.0.0")]
14+
[assembly: AssemblyVersion("1.1.1.0")]
1515

1616
namespace PlaceKupo
1717
{
@@ -142,6 +142,22 @@ public static void WriteWaymark(Waymark waymark, int id = -1)
142142
Log(e.ToString());
143143
}
144144
}
145+
/// <summary>
146+
/// 读取游戏内的标点
147+
/// </summary>
148+
/// <returns>游戏内的标点预设</returns>
149+
public static Preset ReadWaymark()
150+
{
151+
try
152+
{
153+
return Namazu.ReadWaymark();
154+
}
155+
catch (Exception e)
156+
{
157+
Log(e.ToString());
158+
return Preset.Reset;
159+
}
160+
}
145161

146162
#region 其它
147163

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,4 @@
4949
* `PlaceKupo.TTS(string)` 文字转语音
5050
* `PlaceKupo.WriteWaymark(Zodiark.Namazu.Preset)` 写入一套标点预设
5151
* `PlaceKupo.WriteWaymark(Zodiark.Namazu.Waymark, int)` 写入单个标点
52+
* `PlaceKupo.ReadWaymark()`读取游戏内标点

post.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,53 @@
11
# 库啵标点工具
2+
3+
[![GitHub last commit](https://img.shields.io/github/last-commit/toolsmax0/PlaceKupo)](https://github.com/toolsmax0/PlaceKupo)
4+
5+
库啵标点工具是一个更底层的Triggernometry的替代品,旨在解决高级触发器面对较复杂计算时程序繁琐不够灵活的问题。
6+
此外本工具还内置了标点和发送指令功能,不需要依赖其他插件。
7+
8+
以人偶军事基地为例,905P使用辅助机程序时可以通过计算判断出安全点并标记。
9+
10+
![GIF 2021-1-18 22-40-49.gif](https://i.loli.net/2021/01/18/wul5v9tRy4ihz2E.gif)
11+
12+
四个大锤的情况是没有标点的,因为我估计大概没人需要(
13+
14+
其实这个全部是激光的情况也没必要标点,不过因为看起来很炫酷我就留下来了
15+
16+
![GIF 2021-1-18 22-42-30.gif](https://i.loli.net/2021/01/18/5G48NWIu3rnYCoi.gif)
17+
18+
激光结束之后标点会自动消失
19+
20+
我们再来看看第二次和第三次激光:
21+
22+
![GIF 2021-1-18 22-43-43.gif](https://i.loli.net/2021/01/18/cmMfugowihC6LKz.gif)
23+
![GIF 2021-1-18 22-44-24.gif](https://i.loli.net/2021/01/18/gmvPoWNF2pRKO1B.gif)
24+
![GIF 2021-1-18 22-44-59.gif](https://i.loli.net/2021/01/18/3AZ5Y9ozNSWRvr4.gif)
25+
![GIF 2021-1-18 22-46-14.gif](https://i.loli.net/2021/01/18/IbEnfaFdgs1KZBu.gif)
26+
27+
虽然比起来手动判断可能会慢一点,不过足够跑到安全点了,可以救急用。
28+
29+
不过2P的传送激光比起这个来更难判断,所以轮椅就更有用武之地了:
30+
31+
![GIF 2021-1-18 22-47-00.gif](https://i.loli.net/2021/01/18/vQLOegqUNGPnFXC.gif)
32+
33+
在Boss读条强制传送的瞬间就可以判断出安全点,~~龙骑用了再也放不出LB~~
34+
35+
![GIF 2021-1-18 22-47-36.gif](https://i.loli.net/2021/01/18/6mXqFcOhsWArIZa.gif)
36+
37+
那么说了这么多,这个插件要如何使用呢?
38+
39+
## 下载和安装
40+
41+
[![GitHub all releases](https://img.shields.io/github/downloads/toolsmax0/PlaceKupo/total)](https://github.com/toolsmax0/PlaceKupo/releases)
42+
43+
下载之后在ACT插件列表中添加即可。注意该插件必须在游戏启动后运行。
44+
45+
## 开发
46+
47+
目前该插件只适配了一个副本。不过GitHub页面上有简单的开发指南,源码里也有注释,欢迎各路神仙为这个插件添砖加瓦。
48+
有问题也可以直接回复/私信/发issue/托梦。
49+
50+
## 鸣谢
51+
52+
感谢@PrototypeSeiren [![GitHub followers](https://img.shields.io/github/followers/PrototypeSeiren?style=social)](https://github.com/PrototypeSeiren)
53+
提供的莫迪翁传送器以及各位好兄弟的测试反馈。

0 commit comments

Comments
 (0)