getCustomItemText
获取自定义装备属性标题文本
标签:命令定义|getCustomItemText
格式命令名 | 参数1 | 参数2 |
getCustomItemText | 装备位id | 返回值变量 |
- 参数1: 装备位id
- 0-16 指定id装备位中的道具
参见 装备位id说明 - -1
当前打开的自定义道具栏中的道具
当前拾取道具
- 0-16 指定id装备位中的道具
- 参数2: 标题文本字符串返回值变量
特戒引擎脚本示例:
[@main]
#if
equal <$dress>
#act
messageBox 特戒提示:请穿上衣服再来测试!
break
#if
#say
<自定义装备属性测试>\\ \\
<装备位:衣服>\\ \\
<赋值属性文本标题/@@inputString0>\\ \\
<获取属性文本标题/@获取文字>\\ \\
<赋值属性文本标题颜色/@@inputInteger0>\\ \\
<获取属性文本标题颜色/@标题颜色>\\ \\
<打开角色界面,看下衣服tips/@角色界面>\\ \\
<绑定显示属性且赋值/@属性赋值>\\ \\
[@inputString0]
#act
changeCustomItemText 0 s0
;print命令在控制台输出文件内容
print 赋值为<$str(s0)>
[@获取文字]
#act
getCustomItemText 0 s0
print s0
[@inputInteger0]
#or
small n0 0
large n0 255
#act
sendMsg 6 请输入[0-255]颜色编码
break
#if
#act
changeCustomItemTextColor 0 n0
sendMsg 6 自定义装备属性文本标题颜色赋值完毕
[@标题颜色]
#act
getCustomItemTextColor 0 n0
print 文本标题颜色id:<$str(n0)>
[@角色界面]
#act
openSysUi 1 0
[@属性赋值]
#act
;衣服栏 属性0 绑定maxDc(显示id3)
changeCustomItemAbil 0 0 1 3
changeCustomItemValue 0 0 = 222222
;衣服栏 属性1 绑定显示id8
changeCustomItemAbil 0 1 1 8
changeCustomItemValue 0 1 = 11111
sendMsg 6 自定义装备属性赋值完毕