Ok-- I need your opinion: should I keep Project KeyGen:A random download key generator, or Go back with the SmileStore:UI and browsing of different apps? I need to know asap
newest prototype of monquer 3d! heavy visual updates as well as a couple of gameplay updates. please report any bugs. game not quite finished, please give me more gameplay ideas.
Methods of accessing a third minidemo within EX8TECHDEMO are completely intact, but no such demo routine exists! Was this something cut during development, or reserved space to add another demo later?
Can somebody help me? Im trying to make a snake game, i already made the controls and the snake (wich is just squares) but i dont know how to make it so the "tail" dissappears acording to the score (Score=1 then theres only two squares).
Here are the details:
-Theres a SCORE variable.
-I made XE and YE variables to locate where to print a black square so the "tail" dissappears.
[Character Limit]
This may at first look like the world's ugliest Hello World program, but what if I said this is the compiled code of a Hello World program in brainf---? Yes, I've made a brainf--- to SmileBasic compiler, and this is an example of the result.
Ha, you'll never get me!
RPG Log 11: Missed me? Well, I've been busy with... other things... but I did add stuff. For starters, now your eyes get to stare at this wonderful BG during battles. If you have a better one, I would LOVE it. I also added circle-pad controls, new music for your house, and more data. Gotta love that android... I also added 4 battle musics, all of which are standard tracks.
During a long roadtrip this past weekend, I made this totally playable clone of Ball, the first Game & Watch game. It just needs graphics, tuning, and polish.
Inspired by Phillip's Brainf--- compiler, I am making a Pure C compiler! This actually will run! The hardest part will be far removed stuff, such as FORs...
I finally figured out how to word-wrap! Search for the space that's nearest to the end of line mark, break from there by printinh only the part to the left of said space, then run the rest of the text to repeat the process until it's shorter than width, then print the rest. Thanks to ZAEBRKR who pointed out the bug when I was only using 1 variable!
I'm aware of PUSH along with its counterparts and how they work with single dimensional arrays.
VAR Foo[0]
PUSH Foo, 3
PUSH Foo, 999
etc.
Is it possible to PUSH (and POP) a multidimensional array?
ie:
VAR Foo[0,2]
VAR bar[2]: bar[0]=111: bar[1]=444
PUSH Foo, bar