Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
anything AT ALL?
#13
Also 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
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)