In Ksnake's Defense, if you averaged his 1st dice roll from every game he and I ever played it would be 1.000001. Only one time did I ever see him get a six on the first dice roll. I think I told him I would report the bug to Nick

After
Hacking into the system, I have found the following code that is very interesting

<% ' Dice Roll function for Damage calculation in Blue Max - Comment added by Nxxk
Private Function DiceRoll(Pilot,Opponent)
'Case handling 1. Head to Head, Stalled plane vs non-stalled, reason - I just like stall, and this function give me advantage!!
If
Is_stalled(pilot) =
False and
Is_stalled(Opponent) =
True then
DiceRoll = 1
End if
'Case 2. ACE handling, they are super hard to kill, damn, you all
ACE make me this

If
Is_ACE(Pilot) then
DiceRoll = 1
End if
'Return the result
Return NormalDice(roll)
End Function
Private Function Is_ACE(Pilot)
Is_ACE = False 'Webmaster is kind enough to set the default as False

'
If IsNameEqual(TxT,Cxpt_tuttle,Bxamley Bomber,Dxrken......,
Kxnake.....) ' I have cut 100 top Ace Name here. i'
then
Is_ACE = true
End if
End Function
Private Function NormalDice(roll)
roll=int(rnd()* 6+ 1)
Return roll
End Function
%>