19-03-2007, 10:01 AM
Introduction
The bug is only when facing east (DIR_RIGHT), it just has a constant wrong.
Server Side
Find:
Replace it with:
All that was changed was MAX_MAPY to MAX_MAPX.
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
Code:
Case DIR_RIGHT
If GetPlayerX(Index) < MAX_MAPX Then
x = GetPlayerX(Index) + 1
y = GetPlayerY(Index)
Else
Exit Sub
End If
End Select