-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
6 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,14 +89,16 @@ PaoTin++ © 2020~2023 的所有版权均由担子炮(dzp <[email protected]>) | |
#delay {login.login-success} {login.login-success} 1; | ||
}; | ||
|
||
#line oneshot #action {^如果同意请用agree %w命令签署确认这些条款。$} { | ||
#if { @isTrue{$user[AGREE]} } { | ||
#send {agree %%1}; | ||
#line oneshot #action {^如果同意请用agree %*命令签署确认这些条款。$} { | ||
#local args {@str.Trim{%%1}}; | ||
#info environ save; | ||
#if { @isTrue{$info[ENVIRON][PKUXKX_AUTO_AGREE]} } { | ||
#send {agree $args}; | ||
}; | ||
#else { | ||
#undelay {login.login-success}; | ||
#undelay {login.check}; | ||
warnLog 请在十秒内输入 agree %%1 命令以继续游戏。; | ||
warnLog 请在十秒内输入 agree $args 命令以继续游戏。; | ||
#delay {login.agree.fail} {#zap} 10; | ||
}; | ||
}; | ||
|