Codea Developer Simulator

@jaj_TheDeveloper I think I’ll just do something like:

function setup()
blogPosts={"Check out my new game: Poo Simulator 2015",
"Thank you for your support :D", "LMAO, I just saw some dude running around in my street, dressed like santa claus"}

post = false
end

function draw()
p=math.random(0,1000)
if p == 500 then
post = true
end
if post == true then
for i = 0,#blogPosts do
fill(0,0,0,255)
text(blogPosts, WIDTH/2, HEIGHT/2)
end
end
end

It probably doesn’t work, I wrote this quickly on my mac with no way to test it, but you get the idea.

You should add something for when you’ve bought everything.