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

How do you make characters walk through eachother?


Spaz Bunny
 Share

Recommended Posts

if you want to change it in the source code, just find```
For i = 1 To MAX_PLAYERS
            If IsPlaying(i) Then
                If GetPlayerMap(i) = GetPlayerMap(MyIndex) Then
                    If GetPlayerX(i) = X Then
                        If GetPlayerY(i) = y Then
                            CanMove = False
```and change the last line to```
CanMove = True
```
I believe that's it
Link to comment
Share on other sites

@Admiral:

> This can be done a couple of ways to do this.
>
> The first way, is to simply use a "Walkthough Attribute".  This will allow the user to well… walkthough other users ;)
>
> The second way, is to modify the source code, so you ALWAYS walk though another player.

Yeah… Just use the walkthrough tile. Takes a bit more time to finish maps though. Modifying the source would make it easier, for not having to put down the tile every time.
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...