@dvassallo MiniScript and Mini Micro were literally made for this. Completely free, though if you want to show your support there are a couple of good books (one of which is squarely aimed at the 9-year-old demographic). https://t.co/9bpm5kMQX1
Did you know that some blocks are programmable in Linkito's create mode? It uses the small but powerful #miniscript !
So you can create anything you want in the game with this script !
Great free scripting langage by @JoeStrout 🥰
#gamedev#indiedev#indiegamedev#indiegame #madewithunity #game #gaming #puzzle
import"tc"
cls
r=0; ir=0
b = new Bounds; b.x = 480; b.y=320
while 1
flip; yield
gfx.clear
r = r - 2; ir=ir+0.01
for i in range(1,100,2)
b.width = i*7
b.height = i*5
b.rotation = r + i*ir
gfx.drawPoly b.corners, rgb(i*2,200-i*2,i), 2
end for
end while
n=ceil(100*rnd)
g=0
c=0
while n!=g
g=input("Your guess?").val
if n < g then print "Lower!"
if n > g then print "Higher"
c = c + 1
end while
print "You got it in " + c + " tries!"
Here's a simple guessing game! How many tries do you need to guess a number from 1 to 100? The whole program fits in a tweet (see reply). #miniscript#minimicro#tweetcode https://t.co/6DrSJi9DM8