Jump to content

Untested Diagonal Movement


Shenmue

Recommended Posts

  • 1 month later...
  • 1 month later...

@Xiphoid I did a check if patch is suitable and i got the following:

 

First one is the basic mod, and the second is the diagonal movement patch.

8c6e223e21e59d2d41600ea24a0d2db3.png

 

Should I ignore it or you have any suggestions? Im using vanilla intersect

Link to comment
Share on other sites

  On 6/20/2021 at 5:05 PM, Hiai said:

@Xiphoid I did a check if patch is suitable and i got the following:

 

First one is the basic mod, and the second is the diagonal movement patch.

8c6e223e21e59d2d41600ea24a0d2db3.png

 

Should I ignore it or you have any suggestions? Im using vanilla intersect

Expand  

you should add code changes manually

Link to comment
Share on other sites

  On 6/20/2021 at 5:09 PM, Xiphoid said:

you should add all modification codes they have bug fixes

 

Expand  

How should i add it manually? open the .patch file in notepad and just manually replace the code in my source? or there is any simple path to follow?

Link to comment
Share on other sites

  • 1 month later...
  On 6/27/2021 at 4:09 PM, Hiai said:

Wondering if anyone had this issue installing this mod on pre release:

49a3b954c3ed7a866c5b65793c484776.gif

 

Also how can I add sprites to those 4 new directions that have been added?

Any suggestions?

Expand  

To fix it, in B7 pre-release (today version) 

Search for:

public virtual void Move(int moveDir, Player forPlayer, bool doNotUpdate = false, bool correction = false)

 

in Intersect.Server.Entities.Entity

 

and after: case 3 

:

 

  Quote

 case 4: //UpLeft
                        --yOffset;
                        --xOffset;

 

                        break;
                    case 5: //UpRight
                        --yOffset;
                        ++xOffset;

 

                        break;
                    case 6: //DownLeft
                        ++yOffset;
                        --xOffset;

 

                        break;
                    case 7: //DownRight
                        ++yOffset;
                        ++xOffset;

                        break;

Expand  

 

Bye bye!

Link to comment
Share on other sites

  • 1 month later...
  On 9/8/2021 at 5:12 AM, Lucressia said:

Sorry for bumping again but how can I clone Version 0.6.2.421 (development branch) ? It's already been updated so I'm not able to get the old version. It doesnt seem to be working with the 6.0 version.

Expand  

 

I wouldn't recommend using 6.2 at all. 

Unfortunately the mod is simply outdated and requires some manual fixing. 

Link to comment
Share on other sites

  • 7 months later...
  • 1 year later...
  • panda locked this topic
Guest
This topic is now closed to further replies.
Γ—
Γ—
  • Create New...