Any! The cutscenes are made via .hscript
EvcazinDeveloper
2
Posts
A member registered Nov 19, 2021 · View creator page →
Recent community posts
function start(song) { var trail = new FlxTrail(dad, null, 4, 24, 0.3, 0.069); addSprite(trail, BEHIND_ALL ); (This is for trail, ignore this)
}
function beatHit(beat) { }
function update(elapsed) { }
function stepHit(step) { }
function playerTwoTurn() { }
function playerTwoMiss() { }
function playerTwoSing() { ** currentPlayState.health-= (0.01);** FlxG.camera.shake(0.01, 0.08); (Camera shaking) gf.playAnim(‘scared’); (Scared Anim for GF) boyfriend.playAnim(‘scared’); (Scared Anim for BF) }
function playerOneTurn() { }
function playerOneMiss() { }
function playerOneSing() { }
Taken this of my mod’s modchart, delete the texts that explain everything for it to work.