UseTech

Battle.UseTech(CharIndex, SkillSlot, TechSlot, Target)

函数功能

让对象执行指定的战斗技能释放,必须在对象Battle.IsWaitingCommand(index)返回值为1时才可以有效使用。

参数说明

返回值

0 失败, 1 成功

范例

if( Battle.IsWaitingCommand(index) == 1) then
    Battle.UseTech(index, 0, 0, 11);
    print("offline player use tech");
end