4 Player mod

is there documentation somewhere on how 4 player mod interacts with a game that was designed for 2 players only? I am getting a bug where there is an "in game cutscene" where the players jump from one platform to the next.via animationscript.

However player 3 and 4 don't seem to have the "code" to execute the cutscene. Files attached

playmove.c is the name of the playmovescript file
 

Attachments

Last edited:
Because the codes are referring only to the first 2 players.

@cmd DeControl 0 1
@cmd DeControl 1 1
...
@cmd DirPlayer 0 1
@cmd DirPlayer 1 1
...
@cmd AnimPlayer 0 "ANI_FOLLOW100"
@cmd AnimPlayer 1 "ANI_FOLLOW101"
...

You need to set it for the other players too:
@cmd DeControl 0 1
@cmd DeControl 1 1
@cmd DeControl 2 1
@cmd DeControl 3 1
...

@cmd DirPlayer 0 1
@cmd DirPlayer 1 1
@cmd DirPlayer 2 1
@cmd DirPlayer 3 1
...

@cmd AnimPlayer 0 "ANI_FOLLOW100"
@cmd AnimPlayer 1 "ANI_FOLLOW101"
@cmd AnimPlayer 2 "ANI_FOLLOW101"
@cmd AnimPlayer 3 "ANI_FOLLOW101"
...
 
Last edited:
Back
Top Bottom