• Please stop embedding files/images from Discord. Discord has anti-hotlinking logic in place that breaks links to Discord hosted files and images when linked to from anywhere outside of Discord. There are a multitude of file/image hosting sites you can use instead.

    (more info here)

Search results

  1. RuneLancer

    Cave Story RPG?

    You tell me. I use plain old percentages for elemental damage and critical hits, among other bonuses (in the earlier example.) Keep in mind, though, that if health is exponential, so should damage be, and vice-versa. You're going to have some problems trying to match up a curve and a line. Read...
  2. RuneLancer

    Har, a new toy!

    Annnnd a preview! Wait wtf, this isn't a screenshot? OMG IT'S A RELEASE? O_O Actually, the compiler part doesn't work yet (some of it does, but I'm writing support for different parsers - just supporting one chipset (80x86) will be made TONS easier once I do this.) This is a bit of a preview...
  3. RuneLancer

    Cave Story RPG?

    The problem with using too low numbers is that it just won't work with an exponential system. Suppose you have 50 levels, and you make HP go from 1 to 250. You have to spread it out across an exponential curve, so there's a limit to the amount of HP you can gain on you hit level 50 otherwise...
  4. RuneLancer

    Cave Story RPG?

    Between 1.01 and 1.05 is good, IMO. I can't seem to dig up any tables in my notes, but I did find some Endless Saga algorithms laying around. For instance, for damage, I do something like... - Calculate level exponent. (1 + (Level / 500)) ^ 3.5 - Calculate innate attack. Str ^ 1.165 -...
  5. RuneLancer

    Cave Story RPG?

    My recommendation for any game is to use exponential algorithms. This takes away the problem of how gaining a level when you're going from 3 to 4 means way more than going from 95 to 96. (Protip: exponents don't have to be integers; if you use powers of 2 for an exp or damage table, you'll...
  6. RuneLancer

    KVTC: Final Fantasy Tactics Advance - Marche is Evil

    Speaking from running away from problems you can't fix, am I the only one who felt that girl's reason for wanting to stay was simply the stupidest thing ever? An albino girl who has to dye her hair everyday? Yes Square, I'm sure there are thousands of kids playing FFTA who TOTALLY relate to her...
  7. RuneLancer

    Har, a new toy!

    Unlikely. I'm filling a pineapple with rum and putting a faucet on it this weekend, and heading up north with it. Edit: Screenshot!
  8. RuneLancer

    Hard mode?

    It's not a hard "mode" so much as a hard "path" through the game. The word is just plain wrong. :confused:
  9. RuneLancer

    Cave Story RPG?

    So... what'd be a good comparaison? ToP? Or something more like a Megaman boss battle?
  10. RuneLancer

    Cave Story RPG?

    Spriting? I thought that video was 3D.
  11. RuneLancer

    Har, a new toy!

    This is coming along great. So far, it supports the following mnemonics entirely. aaa cbw cdq clc cld cli clts cmc cmpsb cmpsd cmpsw cpuid cwd cwde daa das emms f2xm1 fabs fchs fclex fcompp fcos fdecstp fdisi feni fincstp finit fld1 fldl2e fldl2t fldlg2 fldln2 fldpi fldz fnclex fndisi fneni...
  12. RuneLancer

    Most annoying way to die

    You forgot to put quotes. Methinks that would cause a syntax error. :p 415796 if(EquippedItems & 0x0001) ; Booster 0.8 4157a1 JetpackEnergy = 00000032 4157ab else 4157ad if(EquippedItems & 0x0020) ; Booster 2.0 4157b7 JetpackEnergy = 00000032 4157c1 else 4157c3 JetpackEnergy =...
  13. RuneLancer

    Movie script

    I've always wondered why people don't count in bases equal to the amount of fingers they have on one hand rather than two. In base 4, like a mimiga would have, you can represent numbers up to 24 using both hands (one for each digit; 00 to 44.) In base 5, we could count up to 35, rather than just...
  14. RuneLancer

    Random Cave Story related questions/comments/stupidity

    Even so, that's not infinit. That's a large number, but nowhere near infinit. These things are possible ways to play through the game, not endings. You can pick up some health capsules or you can leave them be and you'll still get a shot at the same ending(s) in either case. There are only 5...
  15. RuneLancer

    Cave Story RPG?

    Well, like I said earlier (I think?) if the tools fit the job, there's no need to go out and find a bigger wrench. Myself, I'm just debating languages for the sake of debating languages. :p Although not everyone here has (constant and reliable) access to a PC running Windows. I know CM is on a...
  16. RuneLancer

    So I restarted a hack...

    Do you even know how you'd proceed if you did? I'm curious how you'd do this, you sound like you have some ideas...
  17. RuneLancer

    Cave Story RPG?

    Wouldn't FFXIV be an RPG? :) The things you listed have nothing to do with the kind of game you're making or how complex it it; they're just a matter of making the game do what you want it to be able to do. Game-makers provide you with a fixed degree of customization built around a mostly...
  18. RuneLancer

    Har, a new toy!

    Hehe. Behold, some unrelated assembly work! Before 00001220 push ebp mov ebp, esp push ecx mov [ebp - 04], 00000000 0000122B cmp [ebp - 04], 08 jnl 0000124F mov eax, [ebp - 04] imul eax, eax, 14 mov ecx, [eax +...
  19. RuneLancer

    So I restarted a hack...

    Copy-paste-rename? I'm sure anyone with some basic VB knowhow could write a little launcher for Cave Story that renames profile.dat files according to which game you want to load... :)
  20. RuneLancer

    So I restarted a hack...

    I'm all for adding people's ideas, but don't post in here just because you thought something up on a whim. There's a limit to how many ideas I can reasonably implement (or even implement at all without messing with what I've already planned) and it seems to be turning into a big random mess of...
  21. RuneLancer

    Cave Story RPG?

    I think you missed my point. Game Maker doesn't make you write your own resource manager, to set up the graphic/sound engines, query the device caps, write an input manager, implement synchronization mechanisms, and basically everything that you don't have to do. The only "code" (script) you...
  22. RuneLancer

    Music/Sound Hacking

    This is a shot in the dark, but that's probably because Doom Builder is an editor and not a compiled game. The purpose of an editor is to edit a game. The purpose of a game is to be played. They're not easily interchangeable generally. I should also point out that wether the graphics are 2D or...
  23. RuneLancer

    Har, a new toy!

    Well... usually, when you write and compile a program, the source code doesn't vanish... :p Makes it that much easier to add functionality afterwards.
  24. RuneLancer

    Cave Story RPG?

    It's not that simple. Game Maker takes away the programming element, leaving you with pretty much just the game design. All things engine are left 100% up to Game Maker - ie, you don't have to poll device caps to see what you can set DirectX up with, create a window, bind a display surface to...
  25. RuneLancer

    Har, a new toy!

    That's exactly why I'm rewriting it. It's simply impossible working on a segment of code as large as my hack's title screen to use short jumps anymore. :x I'm also going to make the formatting looser. No more "two spaces here, a semi-colon there, three letters, five commas, eight numbers, a...
Back
Top