Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Item Type Key
#1
Introduction
The bug is only when facing east (DIR_RIGHT), it just has a constant wrong.

Server Side
Find:
Code:
Case DIR_RIGHT
   If GetPlayerX(Index) < MAX_MAPY Then
      x = GetPlayerX(Index) + 1
      y = GetPlayerY(Index)
   Else
      Exit Sub
   End If
End Select
Replace it with:
Code:
Case DIR_RIGHT
   If GetPlayerX(Index) < MAX_MAPX Then
      x = GetPlayerX(Index) + 1
      y = GetPlayerY(Index)
   Else
      Exit Sub
   End If
End Select
All that was changed was MAX_MAPY to MAX_MAPX.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)