RegBattleExitEvent

NL.RegBattleExitEvent(Dofile, FuncName)

函数功能

创建一个所有玩家离开战斗就会触发的Lua函数。

参数说明

返回值

无返回值

BattleExitCallBack(CharIndex, BattleIndex, Type)

参数说明

返回值

参考实例

NL.RegBattleExitEvent(nil,”MyBattleExitCallBack”);

function MyBattleExitCallBack(CharIndex, BattleIndex, Type)
  if(Type==2)then
    print(CharIndex.."在战斗中被飞啦。");
  end
end