09-12-2008, 05:02 PM
Also this:
Could be this:
Code:
If GetTickCount > MapAnimTimer + 250 Then
If MapAnim = 0 Then
MapAnim = 1
Else
MapAnim = 0
End If
MapAnimTimer = GetTickCount
End If
Could be this:
Code:
If GetTickCount > MapAnimTimer + 250 Then
MapAnim = Not MapAnim
MapAnimTimer = GetTickCount
End If