Log In  

Cart #tweet_8-0 | 2024-03-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
14


Well, use your eyes to enjoy...

  • X for new layout
  • C to toggle layout

Its all made in 257 bytes or so, also I can make a version with fluids, where they drop down and fill it up.
Also is it just me, or the carts here are kinda broken?

Thanks for checking it out :)

P#143128 2024-03-15 15:14 ( Edited 2024-03-15 15:15)

can anyone please give me a html and js file of the game, I made it on pico educational, and now when I download it to pico 8 it says:

P#143164 2024-03-15 17:20

You can probably load it if you update to 0.2.6b, but the source code is right there in the web player if you hit the "Code" dropdown at the bottom.. you should also be able to copy that over. Cool effect BTW!

P#143173 2024-03-15 18:09 ( Edited 2024-03-15 18:10)

Effect is cool but the cart needs its sprite sheet to display cheese mug hello picotron and any other subliminal message you hid in there. Aren't tweets carts supposed to use code only ?

P#143246 2024-03-16 03:47

yes, but i just decided to have a spritesheet, and also I could not get anywhere close to the tweetcart limit, so I just screw it. but I still tried to minimize my code. thanks for checking it out :)

P#143268 2024-03-16 07:01

When I try to bring it over to pico8 it says the same thing :(

P#144301 2024-03-24 14:48

its because, you need to update pico 8

P#144308 2024-03-24 16:46

Strange, I thought I posted a shorter version of the code here???
I won't do it again but the optimizations I remember were

  • variable o is assigned to 8 twice in the code and never gets any other value -> o replaced by 8 and assignments removed. Also gains a space somewhere.
  • 64 and 128 everywhere assigned to 1 letter variables.
  • d=1-d (+1char) pal(7,d,1) (-2char)
  • assigning 1character names to pget pset, rnd and sspr. Yes, even native functions can be assigned to variables and called from them.
  • replacing .5 by the shift+A constant (exact match)
  • replacing 4000 by a 1 character constant with a value of around 3800 I think.
  • assigning variables to i+1,i-1,f+1,f-1
  • using nil instead of false since nil's boolean value is false.
P#144409 2024-03-25 13:32

[Please log in to post a comment]