Re: [Playable] Yoshi's Island-styled Yoshi
Posted: Thu Jun 06, 2024 2:08 am
Forums for SMBX
https://www.smbxgame.com/forums/
Cannibalism
apologies for the bump...
Someone gave me this in PMs:$h31d0nc00p3rfan wrote: ↑Fri Dec 27, 2024 3:56 pmapologies for the bump...
remind me again how that health system was implemented?
Code: Select all
function onStart()
player.character = CHARACTER_KLONOA;
player.powerup = 2;
yoshi.setHealthSystem((yoshi.generalSettings.healthSystem+1)%2)
end
This goes in luna.lua or yiYoshi.lua, yes?mariobrigade2018 wrote: ↑Fri Dec 27, 2024 4:12 pmSomeone gave me this in PMs:$h31d0nc00p3rfan wrote: ↑Fri Dec 27, 2024 3:56 pmapologies for the bump...
remind me again how that health system was implemented?Code: Select all
function onStart() player.character = CHARACTER_KLONOA; player.powerup = 2; yoshi.setHealthSystem((yoshi.generalSettings.healthSystem+1)%2) end