Log In  

Cart #sanorohomi-0 | 2023-02-18 | Code ▽ | Embed ▽ | No License
4


Welcome To Pico Clicker A Simplified Cookie Clicker
---Instructions---
X - Click
O - Select
Arrows - Navigate Menu
Enjoy :D

P#126037 2023-02-18 23:39

That's neat! I hope you keep working on it, could become a really cool game!

However, the first thing you need to do is to find a way to overcome the 32k limitation for numbers in Pico-8, or your cookies will go negative really fast!

P#126049 2023-02-19 14:57

You can add numbers up to pretty high numbers this way, @Estronoid and @caranha.

Cart #simekuyesa-0 | 2023-02-19 | Code ▽ | Embed ▽ | No License

a="0"
cls()
for i=1,400 do
?a
a=tostr(tonum(a.."",2)+tonum("123",2),2)
end

Of course this can go a lot higher.

P#126064 2023-02-19 22:58

[Please log in to post a comment]