FindItemId(_CharIndex, _ItemId);


函数功能:

检测指定玩家对像身上某编号道具的道具栏位置(如多个道具只返回第一个)。


操作参数:

参数名 是否必须 类型 说明
_CharIndex int 角色对象索引
_ItemID int 指定编号道具

返回值:

返回值类型 成功 失败
int >=0 <=-1

操作实例:

  1. local Pos = Char.FindItemId(_CharIndex, 1);
  2. if(Pos < 0)then
  3. print("未找到指定道具");
  4. else
  5. print("找到指定道具,位置为:"..Pos);
  6. end

备注:

  • 更多返回错误代码请看首页的错误代码描述
文档更新时间: 2022-11-08 14:44   作者:105493660