Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

RoofBlock.


cheatking
 Share

Recommended Posts

Fixed it :) Changed this code in server

                ' Check to make sure that the tile is walkable.
                If TileType = TILE_TYPE_BLOCKED Or TileType = TILE_TYPE_NPCAVOID  Then
                    CanNpcMove = False
                    Exit Function
                End If

To

                ' Check to make sure that the tile is walkable.
                If TileType = TILE_TYPE_BLOCKED Or TileType = TILE_TYPE_NPCAVOID Or TileType = TILE_TYPE_ROOFBLOCK Then
                    CanNpcMove = False
                    Exit Function
                End If
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...