- 积分
- 6108
- 注册时间
- 2024-9-14
- 最后登录
- 2025-4-29
- 在线时间
- 197 小时
版主
- 积分
- 6108
- 威望
- 381
- 金币
- 1612
- 贡献
- 4622
|
Blue引擎+登录器+程序全部免费开放,QQ快捷登陆,加入BLUE引擎论坛!
您需要 登录 才可以下载或查看,没有账号?立即注册
×
功能:
自定义命令内容功能
介绍:
@@InPutInteger(X) 针对个人数字变量M操作 (X)取值范围:数字(0~99)
@@InPutString(X) 针对个人字符变量S操作 (X)取值范围:数字(0~99)
@@InPutString 若输入字符包含于过滤列表(GUIldRankNameFilter.txt)中.则跳到@IsInFilterList执行
注意:
执行时必须加DelayGoto,DelayGoto能有效过滤多重操作,比如网络延迟时连续点NPC可以不断执行同一个节
示例:
;==========================================
(@@InPutInteger, @@InPutString)
[@Main]
<输入数字/@@InPutInteger5>\
<输入字符/@@InPutString5>\
<关闭/@Exit>
[@@InPutInteger5]
#If
CheckLevelEx > 0
#Act
DelayGoto 1 ~InPutInteger5
[~InPutInteger5]
#If
CheckLevelEX > 0
#Say
你输入的数字是:<$STR(M5)>
[@@InPutString5]
#If
CheckLevelEx > 0
#Act
DelayGoto 1 ~InPutString5
[~InPutString5]
#If
CheckLevelEX > 0
#Say
你输入的字符是:<$STR(S5)>
;示例脚本.仅简单表达意思.!
[@IsInFilterList]
#If
CheckLevelEx > 0
#Act
MessageBox 输入数据中包含了非法字符.请重新编辑
Goto @Main |
|