My gravity simulator will have 2 modes: universe creator, where you can make anything, and space explorer (shown), where you can explore as a ship affected by gravity. The universe will be generated randomly.
Say hello to ZOS! Key:[5KS8Q4RS] ZOS is both an amazing OS and a tech demo of what's possible! It can run multiple programs at once - and can turn some ordinary BASIC files into ZBASIC files and run them! 1 demo program currently exists, but for the most part, just program and run! (batteries not included)
Technically, everything is copyrighted that is a work, though you need to actually have some legal stuff to take legal action. Some will be in the public domain and thus you can use it, but for the most part, just come up with original ideas before just copying sprites, or at least check to see if you need to come up with an original idea/original artwork.
Debes usar GOSUB para cosas en que quieres regresar, como este:
PRINT "ADONDE IRE?"
GOSUB @A
PRINT "AHORA SABES?"
STOP
@A
?"FUI AQUI (A)"
RETURN
Sé que es un ejemplo rediculo, pero puedes usar GOSUB para cosas como eso. Debes usar GOTO si es un lugar que no quieres regresar de. Este puede ser como este:
INPUT "¡HOLA! ¿COMÓ TE LLAMAS?";NOMBRE$
IF NOMBRE$=="EL MEJOR" THEN GOTO @MIENTAS
I came up with a great idea: make a program that makes sentences. So far, it does work (but ignores nouns like corn or money that is it's own plural). It is actually really cool, and fairly simple to make. IN OTHER NEWS: ZOS is almost done, I just need to make desktop editing and a profile creator.
GOSUB va a un lugar y regresa cuando llega a un RETURN. GOTO va a un lugar y no regresa. Puedes empezar por escribir una palabra y ver que el software recomenda poner. Después, leer como usar que escribiste. También pueder leer la programa que una otra persona escribió y ver como usó los mandatos. ¿Es este que me queres dicerte?
Aprendí en esto camino: yo escribía que el software decía que estaba correcto y veía como usar el mandato. También veía las programas que otras personas hacían para aprender como usar unos mandatos. Y saber: si no triunfas la primera vez, insiste, insiste otra vez. Puedes hacerlo si puedes ver como usar unos mandatos. Lo siento si no hablé bien, solo tomé dos años de español.
You're sprite's size is not 1x1, is it?
Because that code block wouldn't work for anything smaller than 16x16. If your sprite really is 1x1, just do a single BGGET for it's location, multiple would not be necessary.