RegPartyEvent

NL.RegPartyEvent(Dofile, FuncName)

函数功能

创建一个玩家组队触发的事件。

参数说明

返回值

无返回值

PartyEventCallBack(CharIndex, TargetCharIndex, Type)

参数说明

返回值

返回1表示允许操作,返回0表示禁止操作(组队失败/离队失败)

参考实例

NL.RegPartyEvent(nil,”MyPartyEvent”);

function MyPartyEvent(CharIndex, TargetCharIndex, Type)
  if(Type==0)then
    print("不能加入组队哟!");
    return 0;
  end
  return 1;
end