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

[EO] Walk Through Character (Easy)


hisherwin
 Share

Recommended Posts

This is the most easiest fix i ever done..
Actually this is my First Tut that i made since i start VB6 hehehe

Delete this
```
    ' Check to see if a player is already on that tile
    For i = 1 To Player_HighIndex
        If IsPlaying(i) And GetPlayerMap(i) = GetPlayerMap(MyIndex) Then
            If GetPlayerX(i) = x Then
                If GetPlayerY(i) = y Then
                    CheckDirection = True
                    Exit Function
                End If
            End If
        End If
    Next i

```
That will allow you to walk through Players

Credits by Sherwin (Or Not)
Link to comment
Share on other sites

@vinyl:

> Where do i delete the files from?

Isn't not files but code.
And its in modGameLogic at client side.
But I get the idea your not using VB6, which is required to compile the source so that you change the executable file.
Link to comment
Share on other sites

@vinyl:

> I do not have vb6
>
> But i need this addon.

Without VB6 you can't compile it so you can't add the tutorial, yes you can add it in using Notepad or another programm, but then you can't modify the .exe so you have nothing basically.
Link to comment
Share on other sites

Yeah what you're doing there is essentially breaking the entire PVP system since people will be constantly walking through each other.

[This](http://www.touchofdeathforums.com/smf2/index.php/topic,70436.0.html) checks if it's on a safe map or not.
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...