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

Quick Modding/Hacking Answers Thread

Mar 5, 2025 at 6:54 AM
Neophyte Member
"Fresh from the Bakery"
Join Date: Mar 4, 2025
Location:
Posts: 3
Pronouns: She/her
Unfortunately, the textbox being open requires the event to be running from what i can tell. Which means as long as it's open, interacting with interactable npcs is disabled >.>
I've tried a setup like this:
#0101
<WAI0001<EVE0101
#0102
<CAT<MS20-1: Hello World!<EVE0101
In the hopes that maybe I could maybe use some out of bounds flag checking in event 101 to poll for the player pressing down, to actually enter the level or something while the textbox is still open, but unfortunately even jumping to another event closes the textbox entirely :<

(and even if it worked i guess without some other way of breaking out of a currently running event, that still wouldn't solve me wanting the textbox to disappear if you move away from the door >.>)
 
Last edited:
Mar 5, 2025 at 7:24 AM
Moo~
"Life begins and ends with Nu."
Join Date: Jun 27, 2013
Location:
Posts: 2910
Age: 30
Pronouns: She/Her
Yeah, I get what you're going for, but I think even with custom ASM, you won't be having any luck with how the TSC goes in Freeware. Maybe it can be more feasible through the other two engines, CSE2 and d-rs, depending on whether you'd like to take the extra time to learning C++ or Rust. I know there's some people in the CSMC that can suggest ideas for that, even if the TSC required for that won't be 1:1 to your plans on how they'll work.
 
Mar 5, 2025 at 7:37 AM
Neophyte Member
"Fresh from the Bakery"
Join Date: Mar 4, 2025
Location:
Posts: 3
Pronouns: She/her
Noted, thanks for your help in any case :>
 
Mar 5, 2025 at 7:51 AM
The miracles of alchemy...!
Bobomb says: "I need a hug!"
Join Date: Jul 20, 2015
Location: Under sea level or something
Posts: 810
Age: 26
Pronouns: 菓子
The problem is the player can't interact with objects (like doors) while the textbox is open.
This might not help with the flickering but you could try using key-related flags to check for player input, for example using <FLJ9094
:XXXX to check if the player is holding down the Z/Jump key (arrow key flags don't work with controller).
 
Last edited:
Apr 1, 2025 at 11:39 AM
Senior Member
"Wahoo! Upgrade!"
Join Date: May 18, 2024
Location: First Cave
Posts: 53
Pronouns: He/him
I was trying to make a boss fight, and when I ran the game it crashed. I used <BSL0000 and <BOA0020 individually and they both crashed the game.
(I was trying to use The Dragon Sisters btw.)
The same thing happened with Omega but only when I ran <BSL0000.
(Note: I did not mess with any of the major boss fights except the X and Y coordinates for spawning Omega.)
Here's the event code:
Code:
#0100
<BSL0000<CMU0004<BOA0020<MNA<END

#1000
<KEY<CNP0111:0012:0004<CNP0110:0012:0004
<ANP0111:0020:0004<ANP0110:0020:0004<MM0<WAI0200<SOU0029<TRA0010:0090:0000:0000<END
The code is pretty much the same as when I was trying to load in Omega.
 
Last edited:
Apr 1, 2025 at 1:37 PM
Neophyte Member
"Fresh from the Bakery"
Join Date: Jan 15, 2025
Location: Nowhere
Posts: 9
Age: 21
Pronouns: he/him
Hmm strange. I had no problems using these commands. As I understand it, you made a small hack to change the initial position of Omega right? If you look through OllyDbg, these commands are responsible for this:
Code:
0047B71E    MOV DWORD PTR DS:[4BBA60],1B6000
0047B728    MOV DWORD PTR DS:[4BBA64],20000
You edited this, right?
 
Apr 1, 2025 at 10:07 PM
Neophyte Member
"Fresh from the Bakery"
Join Date: Jan 15, 2025
Location: Nowhere
Posts: 9
Age: 21
Pronouns: he/him
Well, I repeated your actions and <BSL and <BOA work properly. Maybe the problem is something else. Did you do anything else besides this?
 
Apr 2, 2025 at 9:57 AM
Neophyte Member
"Fresh from the Bakery"
Join Date: Jan 15, 2025
Location: Nowhere
Posts: 9
Age: 21
Pronouns: he/him
I checked and I can say that both Omega and Dragon Sisters work without errors. Honestly, I can't say what the problem is.
 
Apr 2, 2025 at 12:13 PM
Senior Member
"Wahoo! Upgrade!"
Join Date: May 18, 2024
Location: First Cave
Posts: 53
Pronouns: He/him
Is there something that could make them act weird if certain SkipFlags are set? Because I do have a couple that are over 100 if that has anything to do with it.
 
Apr 2, 2025 at 10:14 PM
Neophyte Member
"Fresh from the Bakery"
Join Date: Jan 15, 2025
Location: Nowhere
Posts: 9
Age: 21
Pronouns: he/him
I don't think so. Unfortunately, I don't know how to help you. Alternatively, you can send additional files related to the map where the crash occurs. Or even the entire mod. That's the last thing I can offer.
It would be nice if someone else responded to your problem besides me.
 
Back
Top