Computer Science Canada Can anyone tell us how to make the visual characters? |
Author: | MikeJake [ Mon Jan 19, 2009 11:20 am ] | ||
Post subject: | Can anyone tell us how to make the visual characters? | ||
WE started making this game. (see below for current progress) We were wondering if anyone could tell us how to make the characters.
|
Author: | Zren [ Mon Jan 19, 2009 1:16 pm ] | ||||
Post subject: | Re: Can anyone tell us how to make the visual characters? | ||||
Okay, what do you meen by characters? Do you meen like a guy moving around on screen? If so, is it a platformer type like ALIAS > http://www.goriya.com/flash/alias_2.shtml or a top-down view like StickArena > http://www.xgenstudios.com/play/stickarena In other words, try to describe what kind of game your trying to make. Draw a picture if necessary. It'll not only help us but you as well. Here's a bit of stuff I found to clean up you code and such.
I also suggest doing something like this:
This way people can type in lowercase and not throw errors. You might also want to consider looping the menu if an incorrect option is submitted. |
Author: | MikeJake [ Tue Jan 20, 2009 11:19 am ] |
Post subject: | Re: Can anyone tell us how to make the visual characters? |
We are making an RPG, so we want to use pictures like some of the ones we found to make the characters. Can you help us? |
Author: | copthesaint [ Tue Jan 20, 2009 12:04 pm ] |
Post subject: | RE:Can anyone tell us how to make the visual characters? |
For pictures use var picture:= Pic.FileNew (pic id) |
Author: | andrew. [ Tue Jan 20, 2009 5:22 pm ] | ||||
Post subject: | Re: Can anyone tell us how to make the visual characters? | ||||
Zren @ Mon Jan 19, 2009 1:16 pm wrote: I also suggest doing something like this:
This way people can type in lowercase and not throw errors. You might also want to consider looping the menu if an incorrect option is submitted. That makes sense, but in Turing, you would have to make a procedure to convert everything into lower case. It might just be better to have something like:
Yeah, it's kind of not right and if you type lIke THiS it won't work but still. I think it's good enough for a project of this calibre. |
Author: | TheGuardian001 [ Tue Jan 20, 2009 8:45 pm ] | ||
Post subject: | Re: Can anyone tell us how to make the visual characters? | ||
andrew. @ Tue Jan 20, 2009 5:22 pm wrote: That makes sense, but in Turing, you would have to make a procedure to convert everything into lower case. no you wouldn't
and yes, characters can be made from images using Pic.FileNew. |