LoginLogin
Nintendo shutting down 3DS + Wii U online services, see our post

SUPER BASIC submission thread

Root / General / [.]

TarudahatCreated:
So I have been working pretty long on a project, that will make programming for newcomers easier. It kinda works like scratch. It still needs some improvements but it is already functional. The only thing I still need is a lot of really beginner friendly functions. And that's why I made this thread to ask for function submissions. Hopefully there will be at least a few people who will be willing to submit functions. So that my project will be useful. (Credits will of course be given).

The first post of this thread is my 100th ... So yeeay 🎇🎆🎇🎆🎇 :D (won't be deleting it) Also link to the project : http://smilebasicsource.com/page?pid=1435

It's hard to use because, unlike scratch, blocks do not fit...

And, if you can add, like scratch, drawing functions, it woud be really cool

It's hard to use because, unlike scratch, blocks do not fit...
yeah you just gotta place them under one another
And, if you can add, like scratch, drawing functions, it woud be really cool
there are already drawing functions . You mean make them even more simple?? (that's pretty hard)

@heredos Would you like me to upload a video on how to use the program?

Yes, because it's hard to understand for now...

Idea: MML. What can you do for that?

Idea: MML. What can you do for that?
I'm gonna add more features later but you can just use this for now (it's just normal smilebasic code)
BGMPLAY "T160@57 0:ABCBCAGCA"
T160 -> tempo @57 -> instrument 0: -> channel I think you can have multible in 1 MML ABCBCAGA -> song (pretty ugly) More help on MML can be found here http://smilebasic.com/en/reference/

@Heredos oh did you mean something to draw sprites with with
And, if you can add, like scratch, drawing functions, it woud be really cool

And, if you can add, like scratch, drawing functions, it woud be really cool
oh did you mean something to draw sprites with
I think Heredos was talking about this: It uses the sprite to leave a trail.

And, if you can add, like scratch, drawing functions, it woud be really cool
oh did you mean something to draw sprites with
I think Heredos was talking about this: It uses the sprite to leave a trail.
Yeah those are already in Super basic there called DRAW functions like
DRAWLINE,DRAWCIRCLE,SETCOLOR
you could maybe try to read the included documentation. (the book like thing on the top screen)

And, if you can add, like scratch, drawing functions, it woud be really cool
oh did you mean something to draw sprites with
I think Heredos was talking about this: It uses the sprite to leave a trail.
Yeah those are already in Super basic there called DRAW functions like
DRAWLINE,DRAWCIRCLE,SETCOLOR
you could maybe try to read the included documentation. (the book like thing on the top screen)
I think what chicken means are turtle graphics.

Ugh I hate that stuff. Oh welp you can combine/use the SPRITE functions plus the DRAW functions to make that for now.

Yes, i was thinking about a width line

make it so you can make multiple elseifs for example:
IF I==1 THEN
'do something... 
ELSEIF I==2 THEN
' do something else
ELSEIF I==3 THEN
'...
ELSE
'...
ENDIF

make it so you can make multiple elseifs for example:
IF I==1 THEN
'do something... 
ELSEIF I==2 THEN
' do something else
ELSEIF I==3 THEN
'...
ELSE
'...
ENDIF
Hmmm sure you can add more and delete the unnecessary IFs and ENDIFs for now.