EditOff(fd,time);


函数功能:

根据连接句柄重新设置人物离线时间。


操作参数:

参数名 是否必须 类型 说明
fd int 设置离线返回的句柄
time int 重新修改离线时间

返回值:

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

操作实例:

  1. local Retime = Off.OffGetTime(fd);
  2. if(Retime == -1)then
  3. print(NL.GetErrorStr());
  4. return;
  5. end
  6. local LocalTime = NLG.timeGetTime();
  7. local Buf = string.format("此fd:%d 离线状态剩余:%d秒",fd,Retime - LocalTime);
  8. print(Buf);
  9. localTime = Retime + 300;--再加300
  10. local ret = Off.EditOff(fd,localTime);
  11. if(ret == -1)then
  12. print(NL.GetErrorStr());
  13. end

备注:

  • 更多返回错误代码请看首页的错误代码描述
文档更新时间: 2018-01-08 18:16   作者:105493660