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

    Quick Modding/Hacking Answers Thread

    Well, I don't think C is inside the Compendium's Keypressed table, so you're gonna have to hack it to make the C key generate a custom value in those key offsets. Here's a conversation between me and Noxid. He sorta describes the process. You should be most interested in the last sentence or...
  2. C

    Quick Modding/Hacking Answers Thread

    All you need to do is check if a key exists via ANDing (or even CMPing is technically possible for single-keypresses) on the offsets [49E210] and [49E214] at any point while the game is running. In the Compendium, here's the keypressed table: ANDing by the key_held or key_pressed offsets...
  3. C

    Quick Modding/Hacking Answers Thread

    00424EAF |> \A1 D85A4A00 MOV EAX,DWORD PTR DS:[4A5AD8] ;CurrentScript 00424EB4 |. 0305 E05A4A00 ADD EAX,DWORD PTR DS:[4A5AE0] ;Script position 00424EBA |. 0FBE48 01 MOVSX ECX,BYTE PTR DS:[EAX+1] 00424EBE 83F9 41 CMP ECX,41 00424EC1 75 70 JNE SHORT 00424F33...
  4. C

    Loose 34kg(75pounds)/4months :)

    For me, I'm kinda suspicious about how he said "I`m a doctor" and then misspelled the word weight as "wait". But whatever. Most of the stuff he said makes sense - eat more green vegetables, beans, fish (healthy foods) and a lot less pizza, mayonnaise, etc. However, I don't think that 1 meal a...
  5. C

    Quick Modding/Hacking Answers Thread

    From the Assembly Compendium: Check flag function: PUSH (flag number) ;Convert to hex first. Flag 5000 is actually PUSH 1388. CALL 0040E930 ADD ESP, 4 After you run the function, look in EAX for the answer. EAX will be 1 if the flag is set, and 0 if the flag is not set. And yeah, there...
  6. C

    Quick Modding/Hacking Answers Thread

    I think you mean put npc.ini into the mod folder. Then it works. Hmm... I didn't know you could do that. I assumed that Sue's Workshop reading off of npc.ini wasn't implemented yet. Ah well - that makes life easier. === === === I don't wanna double post so I'm answering something here: I...
  7. C

    Jenka's Nightmare Revived - Final release

    Re: Jenka's Nightmare Revived Ah sweet, an update. Old save files are compatible with the new version, right? I haven't yet bothered to get very far in this mod, which is kind of sad since I finished the original JN. ._.
  8. C

    Quick Modding/Hacking Answers Thread

    Those right-hand boxes are actually useless. EDIT: NEVERMIND, I am a moron. Copy and paste npc.ini to your mod folder and you can now see (and double click) stuff in the right-hand boxes. Now for the left-hand box. There you can change event number, sprite number (which is actually entity...
  9. C

    Expansion of our Repetoir

    I'm sure there are plenty of other people who would. Take Final Columbus for example. New game programmers and game creators pop up all the time.
  10. C

    Expansion of our Repetoir

    Yes. (I would certainly be one of the interested ones.) Also, is there a possibility for a Cave Story Art forum? Right now, we have a single CS fanart thread where everything gets posted and it's just a big long mess.
  11. C

    Doukutsu Assembler

    Updated to version 1.1 Version 1.1 introduces a very interesting feature: syntax coloration! See the first post of this thread for a screenshot. Download version 1.1
  12. C

    Most Important Character Without a Facepic?

    Many fungi can reproduce sexually, especially in the case of mushrooms. But you are correct in that they don't actually have a "male" and "female" component of their race. Anyway, I don't think Ma Pignon is the most important character without a facepic, regardless of whether it is a mushroom...
  13. C

    I thought I just posted this. Oh wow, it's been a year already. Happy birthday once more! :momo:

    I thought I just posted this. Oh wow, it's been a year already. Happy birthday once more! :momo:
  14. C

    The Happy Birthday Thread

    Yes he is truly a good modder[ator]. (Both at the same time!)
  15. C

    The Best Christmas

    This album lives up to its name. And yes, Track 6 is amazing.
  16. C

    Quick Modding/Hacking Answers Thread

    In OllyDbg, each onto its own line. You also have to translate the lettering into addresses.
  17. C

    Org Making Discussion

    This is indeed the way to go. Addition resources for Music Theory http://www.musictheory.net/lessons Learn piano & music stuff: http://www.youtube.com/watch?v=vphWgqbF-AM
  18. C

    new law that will prohibit the streaming of games if passed.

    But you're not making the money, Google is. Since Google owns YouTube and puts ads on it to gain profits for themselves, that's their problem and not yours. You are a single user, among others, who is there to "stream videos without intending to profit". So no, nobody who streams videogames...
  19. C

    new law that will prohibit the streaming of games if passed.

    I don't think it's true that it won't pass without more specific wording. It might pass even with the vague wording, because congressmen like to do that. Especially with the ridiculous Protect IP Act looming over us as well. Article...
  20. C

    Yes indeed, happy birthday!

    Yes indeed, happy birthday!
  21. C

    Doukutsu Assembler

    In that case, the instruction has a different binary skeleton, so MOV register,register is different from MOV register,data. MOV register1,register2 = 1000 100<w-bit> 11 <reg2><reg1> MOV register,data = 1011 <w-bit> <reg> <data> MOV EBP,ESP = 89E5 MOV EBP,4 = BD 04 00 00 00 MOV EBP,ESP =...
  22. C

    Doukutsu Assembler

    This is kinda hard to explain, but here goes. The old Doukutsu Assembler (version 0.4 and earlier) used the byte as the smallest unit of data it manipulated (in most cases). This is not a good way to build a compiler. Looking at bytes only, let us compare MOV EBP,ESP and MOV AL,CL. MOV EBP,ESP...
  23. C

    'ello there Noxid. Just wanted to tell you about this update...

    'ello there Noxid. Just wanted to tell you about this update. http://www.cavestory.org/forums/index.php?showtopic=2669 Development time took approximately forever and a half, but it's done now.
  24. C

    Doukutsu Assembler

    Updated to version 1.0 Version 1.0 is a major overhaul of the Doukutsu Assembler. It encodes all instructions the smart way (bit level encodings) instead of the previous wrong way (byte level encodings). So now, almost every instruction in the Intel x86 integer instruction set is supported...
  25. C

    Lossless Soundtrack

    These sound amazingly similar to the ORGs. Nice job.
Back
Top