Abra o Client~Side e na modGameLogic procure por:
- Código:
'Check to see if a npc is already on that tile
For i = 1 To Npc_HighIndex
If MapNpc(i).num > 0 Then
If MapNpc(i).x = x Then
If MapNpc(i).y = y Then
CheckDirection = True
Exit Function
End If
End If
End If
Next
- Código:
' Check to see if a npc is already on that tile
' For i = 1 To Npc_HighIndex
' If MapNpc(i).num > 0 Then
' If MapNpc(i).x = x Then
' If MapNpc(i).y = y Then
' CheckDirection = True
' Exit Function
' End If
' End If
' End If
' Next