I’ve just published Piffle, a Pico-8 version of the online word game Waffle, reimagined as an 8-bit console title, complete with sound effects, music, particles, multiple levels, and a final “boss battle” unlocked when you complete all preceding levels. https://t.co/74P2n725db
@MorningToast For most of my games I edit maps and paths in Tiled & write programs to convert them to #Pico8 data and Lua code, which I #include into my Pico8 program.
@Cerbyo1@pico8tweets E.g.
t = {} — an empty table
function test()
if t.happy then
print”:-)”
else
print”:-(”
end
end
test() — prints :-(
t.happy = true
test() — prints :-)
t.happy = false
test() — prints :-( again