-
I've been practicing for the first time with base game modding recently by porting a song from a mod just for fun, the song in question has 4 characters in the stage at the same time. Is there a way to implement the fourth character and also add notes to it that make it sing like the rest? I'd say I've got everything else covered, but I don't really know how to do it, so I'd appreciate the help. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
You could add an extra character by script using |
Beta Was this translation helpful? Give feedback.
Well, you'd do something similar to the various character scripts. You could make an extension of BF that doesn't play his hit animation when
event.note.kind = 'fourthCharacterNameIdkHere'
, and insteadreturn;
for example, and if the fourth character is also of the BF character type, who has a onNoteHit function that is the opposite of that code, then it'll still properly grant the score and all that jazz: