找回密码
 register

QQ登录

只需一步,快速开始

查看: 83|回复: 0

[游戏教程] 天龙判断双数小时刷新boss

[复制链接]

[游戏教程] 天龙判断双数小时刷新boss

[复制链接]
  • 打卡等级:热心大叔
  • 打卡总天数:94
  • 打卡月天数:17
  • 打卡总奖励:94
  • 最近打卡:2025-01-18 01:28:20
Waylee

主题

0

回帖

1万

积分

仙帝

积分
12100
Waylee 2022-7-18 15:50 | 显示全部楼层 |阅读模式

马上注册,查看网站隐藏内容!!

您需要 登录 才可以下载或查看,没有账号?register

×
原来的代码过于复杂

  1. if nHour == 0 or nHour == 2 or nHour == 4 or nHour == 6     or nHour == 8 or nHour == 10 or nHour == 12 or nHour == 14 or nHour == 16 or nHour == 18 or nHour == 20 or nHour == 22 then
  2. x900047_CreateMonster( sceneId )
  3. AddGlobalCountNews( sceneId, x900047_g_BossSysMsgByGroupID[27].Msg )
  4. end
复制代码
利用取余数运算,优化为:
  1. if sceneId==423 then    --火焰山:魔王·共工
  2.     if (nHour - floor(nHour/2)*2 )==0 then   
  3.         x900047_CreateMonster( sceneId )     
  4.         AddGlobalCountNews( sceneId, x900047_g_BossSysMsgByGroupID[28].Msg )
  5.     end
  6. end
复制代码
天龙LUA4不支持%运算,a%b = a-floor(a/2)*2 )

方法二,用自带函数实现双数刷新:

local CurHourTime = GetQuarterTime()
--每双数点散落雪堆....
local QTime = mod(CurHourTime,100)
if mod(QTime,8) ~= 0 then
                return
end


每半小时刷新一次:
(nMinute==15) or (nMinute==45)


每小时刷新
nMinute==45

您需要登录后才可以回帖 登录 | register

本版积分规则

雪舞知识库 | 浙ICP备15015590号-1 | 萌ICP备20232229号|浙公网安备33048102000118号 |天天打卡

GMT+8, 2025-1-19 07:04 , Processed in 0.096762 second(s), 8 queries , Redis On.

Powered by XueWu Licensed

Copyright © Tencent Cloud.

快速回复 返回顶部 返回列表