Madeline ventures into Oceania to conquer one of New Zealand's tallest mountains, Malte Brun.
I finally figured out how sprite flags work!
This is my second ever Celeste mod and technically my first mod with new mechanics.
Credit to the Evercore team for making the base cart and Antibrain for making the slab code.

How To Make It Work? First Put Your Resolution To 720x480 Pixels then
Make Sure Only The Desktop Is Running And Web Browser Then Try These Links
Pizza Tower ETB Web Port
Pizza Tower April 2019 Web Port
Pizza Tower Pre Sage 2019 Web Port
Note: Also One Tab And No Virus's

I'm trying to change my email, so tried to change it through my account settings. After I put the new email in the email field, I get an confirmation email, but when I click at the confirmation link that's sent to that email, the bbs email doesn't change, I just get log out from my account. Pls help!



my request
here are some fragments of the game code
if collectibletype==colt_ring then
s.score=100
end
add(entities,s)
return s
end
function collectible_update(s)
end
now if on one level I have 3 rings the same and for each ring I get 100 points
I would like to change the code to something like this
if collectibletype==colt_ring then
s.bonus+=1 end
if s.bonus=1 then s.score=100 end
if s.bonus=1 then s.score=200 end
if s.bonus=1 then s.score=400 end
so that for getting the first ring in any order there would be 100 points, for the second 200 points, third 400 points
