项目

一般

简介

行为

checkItemNameColor
检测指定装备位的装备名字颜色,是否满足条件

标签:命令定义|checkItemNameColor

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


特戒引擎脚本示例:

[@main]
#say
<衣服名称改颜色/@@inputInteger0>\\ \\
<查看衣服装备位/@查看>\\ \\
<点击装备位衣服,查看名称变化>
 
[@inputInteger0]
#if
equal <$dress>
#act
messageBox 未穿戴衣服,穿上再试试
break
 
#or
equal n0 255
equal n0 222
equal n0 254
equal n0 244
equal n0 70
#act
goto @改颜色
#elseAct
mov s$info \"请从以下颜色编码中选1个\\255, 222, 254, 244, 70\"
messageBox <$str(s$info)>
break
 
[@改颜色]
#if
#act
changeItemNameColor 0 <$str(n0)>
sendMsg 6 衣服名称颜色变更完毕
goto @查看
 
#if
checkItemNameColor 0 255
#act
messageBox 衣服名称颜色变为了白色
 
#if
checkItemNameColor 0 222
#act
messageBox 衣服名称颜色变为了绿色
 
#if
checkItemNameColor 0 254
#act
messageBox 衣服名称颜色变为了蓝色
 
#if
checkItemNameColor 0 244
#act
messageBox 衣服名称颜色变为了紫色
 
#if
checkItemNameColor 0 70
#act
messageBox 衣服名称颜色变为了橙色
 
[@查看]
#act
openSysUi 1 0

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