Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Raylin

Pages: 1 ... 3 4 [5] 6 7 8
61
Post pictures of you in your natural environment (when you program calcs). :P

Spoiler For Spoiler:




62
General Calculator Help / Raylin's Rules for Making RPG's
« on: August 02, 2010, 09:29:27 pm »
Yeah. I've seen too many people flounder about to have it happen anymore.
So, here you go.

Rule 1: If you're a beginner, DO NOT make a Final Fantasy/Pokemon/Borderlands/Ultima/<insert console game here> clone. The sheer amount of content will crush you, your spirits, and your lifespan. This also means don't try to tackle a huge project if you haven't don't enough experience.

Rule 2: Always, always, ALWAYS code the battle engine first. Don't even worry about story right now. Get characters and a couple enemies and make that beast of a battle system now. It will kick you in the face later if you don't do it early.

Rule 3: Make sure your menus/GUI and button configuration are the same throughout.

Rule 4: BALANCE YOUR FORMULAS! Attack, Defense, Speed, Stat Gain, Level Up, EXP... Make it all realistic. I shouldn't be able to kill a LV 10 with an uber-randomed LV 2. Make sure your curves are parabolic but not super steep.

Rule 5: Having Japanese-sounding names in an RPG doesn't make a good game. It's gameplay that does it. Make sure your gameplay is solid.

Rule 6: Immersing the player doesn't involve super-awesome graphics. It's the fusion between storyline and gameplay. Innovation is key on this point.

Rule 7: Draw ALL of your sprites and tiles first!

Rule 8: Have a basis to start on when it comes to stats. Just because you know a Fighter's stats at max level doesn't mean that should be your starting point. Work from the ground up.

Rule 9: Write your story on paper first. It will help organize your thoughts.

Rule 10: Code your program in subroutines. I don't care if you hate them. It will help.

Rule 11: If you are making a pure-BASIC game with limited access to archive memory, make sure that NPC convos are as short as possible, while making sure to not destroy your storyline. DO NOT USE LOWERCASE LETTERS! Otherwise, prepare to run out of memory very fast. Text takes a ridiculous amount of memory.

Rule 12: If you are making an ASM/Axe game (doesn't apply to ASM Flash APPs), make sure that as many things as possible in your RPG is in data form. The NPC/Event text, enemy names/stats, monsters encounters possible in each areas, NPC movement patterns, battle background images, not just the sprites and maps. Data doesn't count towards the 8/16 KB executable code limit in 8xp/8xk executables, respectively. If you just hard-code everything with If blocks, prepare to run out of code space very fast!

Rule 13: Don't artificially lengthen an RPG by making the player level up to a certain amount before advancing. Different difficulty modes are a nice touch, though. If you add them, you can go as crazy as you want with grinding in harder modes. (while making sure it's beatable). Illusiat 6 original only had one difficulty. Later, DJ Omnimaga added an easier mode.

EDIT: A warning if you decide to save memory on enemy formulas by adding an universal level per area, like DJ Omnimaga did in Illusiat 3 through 12 (AKA dynamic enemy stats generation): those are VERY hard to keep balanced. Use at your own risk! Halfway through the game, you may end up having to give the character a magic ring that reduces all magic damage by 80% from now on, like DJ Omnimaga had to do in Illusiat 10 and 12. At that point, no matter how high he was in LV, all magic spells casted by enemies seemed to kill him instantly. Such dynamic enemy stats are good to save space, but the downside is that they're ridiculously hard to balance.

Rule 14: When creating characters and situations, write down your character's personality somewhere. When a character does or says something that goes against what they believe in without any provocation, it detracts from the mood. Nothing is worse that having a selfish thief suddenly give something they took back without a reason.

Rule 15: Do not make an ultimate weapon if you plan to make the game multiplayer or you plan on adding a secret boss.

Rule 16: When coding, get a piece of paper and write down the letters A-Z on one side. Then, put the symbol <theta> on the other. Now, any permanent values you don't want to be overwritten, assign a variable to them and leave them on that side of the paper. When you are completely sure of those values, erase all unused letters and put them on the other side of the paper. There. Now, the variables on the left are GLOBAL variables. Don't touch those. The ones on the left are LOCAL variables. You can use those for your temporary loops, counters, whatever you need. And, if you lack enough local variables, throw all of your globals into a list and save it. Then, run rampant with your local variables.

NOTE: If you are making a subroutine, make sure none of the variables overwrite any of your values.

Rule 17: When programming in BASIC, don't use Y if you're using the graphscreen. Some graph functions overwrite that value.

Rule 18: Optimize as you go. But, make sure that you can figure out what each line of your program does.

Rule 19: Ask for help if you are struggling.

P.S. Please rate me up on this if you like this. My respect is fluctuating.

63
News / 2010 ACT-SO National Gold Medalist in Computer Science
« on: July 12, 2010, 06:45:47 pm »
Quote from: NAACP program
"Glenbard North High School senior Ray Perry from the DuPage County ACT-SO chapter has been awarded the gold medal in Computer Science for his impressive project that involved turning a calculator into a low-cost gaming device."

Today, I got a gold medal in Computer Science at the ACT-SO Nationals using this game.
I am happy and it was awesome.

This also came with $2000 and a laptop.

HUZZAH! (I've been playing Cave Story.)

64
General Calculator Help / Little endian in Axe?
« on: June 29, 2010, 08:31:25 am »
When you are trying to display a sprite that is bigger than 8x8 and you are reading two bytes at a time, does that mean that the data needs to be reversed or something?

65
Art / 46x46 lemon GO!
« on: June 29, 2010, 08:10:33 am »
Well, basically... that's what I need.
A 46x46 lemon.
I basically remembered that Lemonade Tycoon is only a proof of concept.
As a result, I don't need to make it all fancy and stuff.
So, yes.
46x46 lemon.
GO! :D

66
Axe / BGM in Axe?
« on: June 28, 2010, 07:36:06 pm »
Is it possible to play BGM music in Axe if the following were true:

*If there was an AppVar that acted like a filetype and the bytes for the sound frequencies were stored inside.
*If it was played as frequently as an interrupt.

Comment and tell me what you think.

67
TI Z80 / Lemonade Tycoon FAIL.
« on: June 23, 2010, 11:44:24 pm »
I've lost interest in this. But, this is as far as I got...

69
Axe / Displaying one character at a time on the graph screen
« on: June 17, 2010, 07:35:48 pm »
I can't get the spacing right on this thing. D:>

Code: [Select]
"experience points!->Str27
...
For(X,0,17
Text(X*4+3,3,{Str27+X}
End

70
Axe / Line by line hex to pixel display
« on: June 17, 2010, 12:42:36 am »
Is it possible?
I want to display 4 bytes of a 16x24 sprite in a line.
Would I use Pt-On or Pxl-On for this?

71
Art / What could I be planning?
« on: June 14, 2010, 11:38:53 pm »
:)

72
Axe / External level support?
« on: June 14, 2010, 10:37:35 am »
Okay.

This has been alluded to before in another topic, but I need to understand.
How exactly would one get external data from another program?

73
General Calculator Help / CalcSys
« on: June 11, 2010, 01:06:41 am »
If CalcSys has the ability to instantly fix a problem that I had for months, I want to know what else this APP can do.

Fellow Omnimaga members, I implore you to tell me the secrets of this program. Go!

74
Humour and Jokes / Weaponized Rickroll
« on: June 10, 2010, 12:51:15 am »
Oh. My. God.

EDIT: A zombie invasion invoked this. Proof.

75
General Calculator Help / Dear Brandon Wilson <BrandonW>
« on: June 09, 2010, 06:26:08 pm »
Hello.

In your YouTube video "Hands-On with the TI-Presenter", you helped me stumble upon the reason why my Presentation Link gives me problems. In your video around 1:36, you stated the reason why these "wavy lines" occur. I am in a Science Olympiad called ACT-SO and we go to Nationals on the week of July 7th. My project for ACT-SO is "Can you create a video game on a calculator?" (Silly, I know. But not everyone is as savvy about these things as we are.) I need the Presentation Link to work before Nationals and I'm afraid my project will be all for naught if I can't fix it.

My game, Lemonade Tycoon, is made in xLib and BASIC. How would I fix that problem?

Pages: 1 ... 3 4 [5] 6 7 8