-3

我正在开发一款游戏,我希望每 500 点就发生一些事情,并使其无限可扩展。

有没有有效的方法来做到这一点?

任何帮助表示赞赏

4

2 回答 2

2
if math.floor(points/500) ~= math.floor(last_points/500) then
  -- do something
end
last_points = points
于 2013-04-22T15:55:32.853 回答
0

假设我正确解释了这个问题,这应该是非常安全的:

if math.floor(points/500) >= math.floor(maximum_points/500) then
  maximum_points = points
  -- do something
end
于 2013-04-22T17:09:11.887 回答