• 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. andwhyisit

    Switch to phpbb?

    PhpBB lacks anything close to the feature set of vB and IPB and my experience with it as a user was subpar. vB was great until vB4 when Internet Brands took vB off of Jelsoft's hands and from what I've heard it hasn't gotten any better. Hell. I heard that vB5 is 3x as slow as the bugfest that...
  2. andwhyisit

    Another Jenka's Nightmare remake

    I think you can read max health's 6 least significant bits via OOB flag values (assuming that it doesn't ever exceed 63), then <FLJ bunny hop your way across 96 different events. At least that was my understanding of the matter, I've never tried it personally.
  3. andwhyisit

    adding extra face pictures?

    Never came across that one. Thanks.
  4. andwhyisit

    Modding tools for mac?

    http://java.com/en/download/manual.jsp Just because your operating system doesn't have java installed by default doesn't mean that you can't just install it yourself.
  5. andwhyisit

    .bin into .nds

    You can put anything you want on an SD card.
  6. andwhyisit

    Is it possible to heal before the Sacred Grounds?

    I edited my post so you may have missed this but you can fully heal by flipping backwards and forth between B2F and B3F. Essentially enemies, hearts, etc. will reset if you go to B2F and immediately back to B3F. You can farm health this way and it's a great way to practice B3F. Beat Hell and...
  7. andwhyisit

    .bin into .nds

    1. Cave Story is on DSiWare. Just buy it. It doesn't exactly cost much. 2. You can't convert a wii binary into an nds binary. They are completely different systems with completely different limitations and instruction sets. 3. .bin is a generic binary format, it can represent absolutely...
  8. andwhyisit

    Is it possible to heal before the Sacred Grounds?

    Send me the save and I'll fix it for you. You can also fully heal by flipping backwards and forth between B2F and B3F.
  9. andwhyisit

    Con story spritesheet show!

    That is the case. The majority of mods barely ever get started. Someone will start modding and will be daunted by the amount of work involved or become bored with the idea. Because of this no-one will contribute time of effort towards your mod unless you've proven that you can produce...
  10. andwhyisit

    I've finished both ports. I am just getting the Mac port tested before I release it.

    I've finished both ports. I am just getting the Mac port tested before I release it.
  11. andwhyisit

    Modding tools for mac?

    The mapdata for Mac is stored in two different locations in the mac executable both with slightly different layouts for each. ORG files are in a separate folder rather than embedded in the exe, same for credit art. Most non-windows ports will not read 24-bit bitmaps or pbms. 8-bit is the max. I...
  12. andwhyisit

    Your Favorite Underrated Games?

    Project Altered Beast Almost forgot this one.. Project Altered Beast (not to be confused with Altered Beast) got plenty of negative reception for not being anything like the game that is its namesake, but it was a good game in its own right...
  13. andwhyisit

    Is it just the forums or the site as well? What url is he getting the error on? Tell Shane to...

    Is it just the forums or the site as well? What url is he getting the error on? Tell Shane to go to command prompt and type in "tracert cavestory.one". Right-click on the icon for the command prompt window, then go to edit > select all and then edit > copy. Paste it into an email and send it to...
  14. andwhyisit

    No that's fine. Keep it up. <img...

    No that's fine. Keep it up. <img src='http://www.cavestory.one/forums/public/style_emoticons/<#EMO_DIR#>/grin2.gif' class='bbc_emoticon' alt=':D' />
  15. andwhyisit

    Your Favorite Underrated Games?

    Telefang A monster-raising rpg series that received a bad reputation because Chinese bootleggers gave it a poor and profane translation, random bugs, and passed off as a Pokemon game. The original game is actually quite good. Unfortunately the translation patch for the game is a long way off...
  16. andwhyisit

    Is modding Cave Story+ actually illegal?

    I'm pretty sure that you can use the base CS+ resources without ever including them in your mod folder. Like RM2K does with RTP. You can't distribute official 2xRes graphics but that doesn't mean that you can't use them in your mod. You only need to 2x res the graphical resources that you intend...
  17. andwhyisit

    Is modding Cave Story+ actually illegal?

    You are mistaken in that regard. You are not allowed to mod the console/handheld commercial ports (so no CSWii/CS3D/CS+3DS/CSDS/CSDSi modding), but CS+ modding is fine and always has been. I really should clarify that in the forum rules at some point.
  18. andwhyisit

    TSC Flag Tracker

    Can I put this on the site?
  19. andwhyisit

    Sorry about that. I've got the mapdata, start point tsc, lounge fix and image bit depth sorted...

    Sorry about that. I've got the mapdata, start point tsc, lounge fix and image bit depth sorted. Now all I need is to extract the custom orgs, find my old JNR eboot pics, and copy it all into the Mac and PSP versions of the game. I feel like an idiot though since I had plenty of time to do all...
  20. andwhyisit

    Booster's Lab - It's Pretty Good Now

    By god this is awesome! What once took me half a day now takes half a minute. Thank you so much!
  21. andwhyisit

    On Modding and Mods

    I am yet to come across a build of php that didn't have short tags enabled in this day and age since they are a default in all current php releases. Furthermore xhtml is very much dead and any xml header conflicts that caused people to shun short tags voided. I only use short tags as a...
  22. andwhyisit

    Your best ingame achievements

    I've defeated every Illusion of Time/Gaia boss as Will at least once (including Solid Arm). Except for Dark Gaia since you're not given a choice in the matter. A complete Cave Story Bubbler-only run, including hell. 600+ hours in a single Pokemon Silver save before the internal battery died...
  23. andwhyisit

    On Modding and Mods

    <? $someArgument='testfv.txt'; $haha='file_get_contents'; echo $haha($someArgument); ?> Like this? It works btw. You can't blame them really. Eval is powerful, but it is also a massive security risk in the hands of the uninitiated.
  24. andwhyisit

    On Modding and Mods

    It makes sense. This way you cannot create conflict with existing functions or objects. I've had a number of situations with javascript where I used the name of a preset property in javascript for a variable and it took forever to find the issue. + to concatinate strings? Hell no. That was...
  25. andwhyisit

    On Modding and Mods

    PHP is a hell of a lot better than C++ as it doesn't have C++'s irritatingly strict and messy typing. C++: Oh. I need to turn a char array into a string? Lets write an 6 line long function for that. Oh. I need to turn a string into an int? Lets write an 6 line long function for that. Oh. I need...
Back
Top