Hi all,

This one is bothering me beyond belief at the moment. I have an if Statement in my current program (Score Sender List Maker) and its working for most games, but then, on the odd game and its a particular game like Escape from Meridell Castle and Meerca Chase II it just goes wrong, wrong wrong!

Code:
score = lblPointsToNPS * txtGainNPS

lblTest = score
Score5 = lblScore5
lblScore52 = Score5

time = txtWait
If lblTest > lblScore52 Then
mMod = 40
Else
mMod = txtMod
End If
So in the case of Escape from Meridell the lblTest = 310 and the lblScore52 = 1741, now for whatever reason, the game is setting my Mod to 40 which is basically my trigger for saying hey, you can't earn 1000 nps from this game, even though the score is below the high scores :\ Its like its picking something wrong thats not wrong.