项目

一般

简介

行为

setItemBind
设置指定装备栏中的道具绑定状态(禁止丢弃,禁止交易,禁止出售)

标签:命令定义|setItemBind

格式
命令名 参数1 参数2
setItemBind 装备位id 绑定或解绑
说明
  • 参数1: 装备位id
    • 0-16 指定id装备位中的道具
      参见装备位id说明装备位置
    • -1
      当前打开的自定义道具栏中的道具
      当前拾取道具
  • 参数2: 绑定或解绑
    • 0 解绑
    • 1 绑定


特戒引擎脚本示例:

[@main]
#say
<检测/@检测(检测)>\\ \\
<绑定/@检测(绑定)>\\ \\
<解绑/@检测(解绑)>\\ \\
 
[@检测]
#if
equal <$dress>
#act
sendTipsMsg 特戒提示, 没穿戴衣服/scolor=222
break
 
#if
checkScriptParam 绑定
#act
goto @绑定
break
 
#if
checkScriptParam 解绑
#act
goto @解绑
break
 
#if
checkItemBind 0
#act
sendTipsMsg 特戒提示, 衣服已绑定/scolor=222
 
#if
not checkItemBind 0
#act
sendTipsMsg 特戒提示, 衣服未绑定/scolor=222
 
[@绑定]
#if
not checkItemBind 0
#act
setItemBind 0 1
sendTipsMsg 特戒提示, 设定衣服绑定/scolor=222
#elseAct
sendTipsMsg 特戒提示, 衣服就是绑定的/scolor=222
 
[@解绑]
#if
checkItemBind 0
#act
setItemBind 0 0
sendTipsMsg 特戒提示, 设定衣服解绑/scolor=222
#elseAct
sendTipsMsg 特戒提示, 衣服就是未绑的/scolor=222

由 machenhe 更新于 超过 2 年 之前 · 1 修订