UseTech
Battle.UseTech(CharIndex, SkillSlot, TechSlot, Target)
函数功能
让对象执行指定的战斗技能释放,必须在对象Battle.IsWaitingCommand(index)返回值为1时才可以有效使用。
参数说明
- CharIndex: 数值型 玩家对象index
- SkillSlot: 数值型 技能所在技能栏位置
- TechSlot: 数值型 指定等级的技能所在位置
- Target: 数值型 施法目标对象在战场中的位置
返回值
0 失败, 1 成功
范例
if( Battle.IsWaitingCommand(index) == 1) then
Battle.UseTech(index, 0, 0, 11);
print("offline player use tech");
end