Ah thanks for pointing that out! Should I post the other parts of the code that tie into this system? Maybe they are responsible for the resets... The only other thing I could imagine outside of the code is that the Twitch channel has grown a good bit since the code was first initialized. There used to be an average of 10-20 people watching and now the channel receives upward of 60-80. Could it be that the memory needed or the timers are being overloaded?

Here are the other portions of the code that are used with the exp system.

Code:
;LINK BANNER
on *:TEXT:*http*:#: {
  if ($readini(Points.ini,$+(#,.,$nick),Points) isnum 50-99999) { return }
  else { msg $chan Links not allowed for viewers under !level 3 } { msg $chan /timeout $nick 30 }
}
on *:TEXT:*www.*:#: {
  if ($readini(Points.ini,$+(#,.,$nick),Points) isnum 50-99999) { return }
  else { msg $chan Links not allowed for viewers under !level 3 } { msg $chan /timeout $nick 30 }
}


Code:
on *:text:!level:#:{
  if ((%floodpoints) || ($($+(%,floodpoints.,$nick),2))) { return }
  set -u5 %floodpoints On
  set -u15 %floodpoints. $+ $nick On 
  if ($readini(Points.ini,$+(#,.,$nick),Points) isnum 1-19) { msg # /me  The Plebeian $nick - Level 1 }
  if ($readini(Points.ini,$+(#,.,$nick),Points) isnum 20-49) { msg # /me  The Squire $nick - Level 2 }
  if ($readini(Points.ini,$+(#,.,$nick),Points) isnum 50-89) { msg # /me  The Whore $nick - Level 3 }
  if ($readini(Points.ini,$+(#,.,$nick),Points) isnum 90-139) { msg #  /me  The Bloodrider $nick - Level 4 }
  if ($readini(Points.ini,$+(#,.,$nick),Points) isnum 140-199) { msg # /me  The Maegi $nick - Level 5 }
  (---------------- this code continues like this for 20 more levels/lines--------------)
  else { return }
}


There is also a !levelcheck command that looks similar to the !level command but is used for the mods to check someones level on the fly.

The only other portion of the code that I have been having problems with (which, by coincidence, the person helping my test it yesterday had their points reset) has another thread up but that portion of the code has nothing to do with the point system.

Your thoughts are much appreciated. Thank you for helping me out =)