Recent content by ChimuKun

  1. C

    CaveShark

    Yeah, that's kinda what I was getting at. basically like, y'know, the class being a wrapper FMOD, but basically it being an embodyment in object form of the FMOD -system- object, that's more within the programmer's reach and can have everything set up by the programmer AFTER construction. Just...
  2. C

    CaveShark

    When I have time, I'll work on another update. A friend of mine used it and immediately pointed out that I have the Maximum exp values for some or all of the weapons all messed up. I coulda sworn I entered those into my code correctly. So when I have time, I'll have a look and see what the...
  3. C

    CaveShark

    LOL. Yeah, I'm not stupid enough to make a constructor go as far as PLAY the sound. But it'd be clean enough to at least have the constructor call System_Create() and MAYBE system->init(), right? If you don't, it seems kinda silly to create a wrapper, other than to make the function calls...
  4. C

    CaveShark

    That's why you can use function overloading on constructors ;) say, for class snd: snd(); snd(char * file); later, declaring variables: snd theSnd; // construct the object with snd(), but leave it alone for later use snd wpnSnd = "sounds\\weapon.wav"; //construct the object with snd(char *...
  5. C

    CaveShark

    As I said, this wasn't coded to work elsewhere. I was coding it quick, without much thought of making it versatile. I suppose I really should make it a wrapper that loads ONE sound and plays it back, with init() as void init(char * file_name_or_path) instead. and since the object would then...
  6. C

    CaveShark

    Err, it's a seperate class, but it does specifically what it needs to do for CaveShark. A wrapper class wouldn't be too hard though. It'd just take slight modification of my current class. It also should have the ERRCHECK with result as PART of the class. It's a seperate stand alone function...
  7. C

    CaveShark

    No no no, it wasn't passed the reserved space or I would have specifically stated 'off the array'. If I ever have a problem like that, it's rare, because I'm not stupid. ;P The array is fixed to Cavestory's maximum item slots, and CaveShark was already programmed NOT to go off the array. It's...
  8. C

    CaveShark

    Somewhat major update. CaveShark 1.2 CaveShark now has Sounds! Although, I wish I could store the sound in the exe instead of adding a folder to your CaveStory directory. Also, a big bug I overlooked has been fixed. The code that kept it from going past the 'no item' following your last item...
  9. C

    A side project;Gonna need resources =O

    Chipset? Don't you mean Tileset? Meh. Been a while since I used RPGMaker. Must be something else.The one thing that would make RPGMaker more worth using would be a much more programmable battle system. Keeping us stuck with a Dragon Quest/Warrior-esque battle system is retarded. I'd be happy...
  10. C

    CaveShark

    making it play the sounds for moving the selection over weapons and items, just because I can, and it will help the whole 'part of CaveStory' feel. I could easily do it with the wav files I've converted from the ptones, but just because I want to embed the wav files in the exe and play them from...
  11. C

    So I started a hack.

    Silly me. I wasn't paying attention to the fact that Winamp said the WAV file was 0:00, meaning it ACTUALLY HAD A LENGTH. And Winamp is set by default to fade out so many miliseconds before the end of a file that playing it did nothing. I ran the wav in windows media player and boom, it's fine...
  12. C

    Mod: Caveoholic!'s recent addiction/The Origin of Evil (Final Version)

    Yup, it's the wires. there's no h in 'sure'. ;)
  13. C

    Mod: Caveoholic!'s recent addiction/The Origin of Evil (Final Version)

    One of the signs I think. It's only like a letter swap 'tpyo' kind if I remember correctly, it just sticks out like a sore thumb in full screen mode, as the text is huge. lvl 3 bubbler? I didn't think of that, as for trying to fire down while jumping, the problem is the lack of space to jump...
  14. C

    So I started a hack.

    Thanks, man. Time to take a look ;) Uhm...What good is a .wav file if it's not realy a wav? I thought the .pxt was the one used to place it in CaveStory. DOH -.-
  15. C

    Trainer to cavestory?

    I'll have to take a look at that. ;) I myself have a 'trainer' of the sort mentioned in the first post, complete with the interface emulating the CaveStory inventory screen to a T. Except the extra stuff added for modifying the data, of course. Take a look at the 'CaveShark' thread in the...
Top