now i need a modchart so when p2 sings it drain health
Viewing post in i need a fading modchart for my mod pack
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.