http://www.perlmonks.org?node_id=304643


in reply to Re: Sainthood via Seniority Simulation
in thread Sainthood via Seniority Simulation

I'm not sure I understand you. Can you explain in code or pseudocode? My intent was that everything in the loop after the ++$day is events occurring during the course of a day. Before ++$day is events occurring at the end of a day. (This doesn't correctly model exactly when the level actually changes, but I think it does use fields based on the correct level everywhere.)
  • Comment on Re: Re: Sainthood via Seniority Simulation

Replies are listed 'Best First'.
Re: Re: Re: Sainthood via Seniority Simulation
by ysth (Canon) on Nov 05, 2003 at 19:18 UTC
    People didn't seem to like my asking for further explanation :(. I still don't see the bug, though I see my loop is written in a rather confusing way :(. I'm trying to compare what I have with sauoq's version. The first difference I see is whether the day number is printed just before or just after incrementing, which is really a cosmetic issue. We also differ on if the "used all votes" bonus applies to monks; Voting/Experience System could be read either way. (update: monks(5) don't seem to get the bonus--updating my version now)

    my version:

    increment level if appropriate increment day add per-vote xp add login xp add all-votes-used xp repeat
    sauoq's version:
    increment day increment level if appropriate add login xp add per-vote xp add all-votes-used xp repeat