• 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)

Recent content by IdioticBaka1824

  1. IdioticBaka1824

    does quote love curly ?

    This is EXACTLY my feelings on the topic :o you expressed it so much better than I ever could have lol thank you Also yes seconded, that does indeed sound like an interesting comic, so let it be known that there is one more person out there putting the pressure on you to make this (pwetty...
  2. IdioticBaka1824

    does quote love curly ?

    Looks like you've never had siblings (jk siblings can be best buds (only sometimes tho)) But yes I headcanon them as siblings too and clearly they do mean a lot to each other. "Your bond to Curly Brace, the only warrior you would trust your back to." (<-- Turned out happening pretty literally...)
  3. IdioticBaka1824

    Artwork and Stuff

    it's been so long... it's a simple style but you make it work. that glowup is indeed insane. i like the homestuck inspiration. yeah, the linework is stunningly clean. i might have said this before but your art has a very soulful and nostalgic quality to it. i like the character poses too. keep...
  4. IdioticBaka1824

    Show off your org music...

    nice cover! you translated it well to the orgmaker soundfont. the visualisation is cool too, i've never seen this format done for org songs. also if y'all are making orgs you might wanna share them over here https://organyaweb.win/ (<-- shameless self-promo...)
  5. IdioticBaka1824

    Cave Story FanArt

    Hey welcome to the forums! Cute art!
  6. IdioticBaka1824

    Cave Story 2 (English Translation)

    Thank you for making it, it was a big help :heart: I am currently making some fixes to the translation and should have a first-order correction posted sometime by tomorrow (at the latest). If you have not downloaded it yet, you may as well wait for this update. Stay tuned! Edit: the update is...
  7. IdioticBaka1824

    Cave Story 2 (English Translation)

    I recall fixing one typo in a flag jump command, but it was for some dialogue and didn't break progression, I think. Also, I kinda skipped past the totem boss while playing myself because the earlier puzzle was too hard, so if there were any issues around that area, I wouldn't know... I guess...
  8. IdioticBaka1824

    Cave Story 2 (English Translation)

    This is an old Japanese mod called Cave Story 2, originally uploaded to the now-defunct Doukutsu Uploader. The original can now be downloaded from this archive: https://uu.getuploader.com/cave_10s_important/download/36 And here's some footage of it: I have been working on an English...
  9. IdioticBaka1824

    TSC Editor+

    I did try different encoding schemes, yes, but the cipher calculation is independent of that, no? Also while I'm here, I'd like to request a feature that lets you know when text will be too long for the message box. And being able to quickly reopen the recently-opened files/folders/projects.
  10. IdioticBaka1824

    TSC Editor+

    I encountered yet another tsc file that wasn't loading properly, and again something was wrong with the cipher it was calculating. I tried a very simple change: def get_cipher_from_tsc(data: bytes) -> int: return data[len(data)//2] and that seemed to work. Your original function in...
  11. IdioticBaka1824

    TSC Editor+

    My bad, this was when exporting as a tsc file. Edit: another bug that was garbling some files because it was returning a negative cipher value: "return top_key - 0x0D" -> "return (top_key - 0x0D)%0x100" With this i think the encoding issue is solved
  12. IdioticBaka1824

    TSC Editor+

    Another small bug: sometimes one character ends up garbled when saving a file and then loading it again. I figured it has something to do with the cipher, and tried commenting out these lines: "if self.current_cipher is not None: cipher = self.current_cipher" and that seemed to fix it for...
  13. IdioticBaka1824

    Cave Story FanArt

    I love these backgrounds, they're so evocative. I wish backgrounds and landscapes were a bigger deal in fanart, but they are pretty hard, unfortunately.
  14. IdioticBaka1824

    TSC Editor+

    Okay, I think I figured it out :pignon: your decryption code had a small error that was causing null characters appear in the decoded text. On line 2412 of main.py, replace "val = 0" with "val += 256". You were clamping the result of the cipher subtraction, but apparently it needs to wrap...
  15. IdioticBaka1824

    TSC Editor+

    Neat program! I like all the features, and the layout is very nice and clean. It would be nice to have the current tsc file's name as a header while you're editing it, or maybe have it coloured in in the file directory listing on the left. Also maybe it's just me but I think it would help to...
Back
Top