Search results

  1. EmeraldLockdown

    the ability to save (and possibly share) custom color presets

    You can already do this in coopdx v1. For sharing presets, in the user folder, open the palettes folder, and your custom palettes will be there.
  2. EmeraldLockdown

    Tag - Tag v2.4

    Gamemodes Added Oddball Added Royale Revamped Oddball Modifiers Added Hard Surfaces Added Sandy Floor Readded Swap Added Z Button Challenge Added Only Firsties Romhacks Added Lug's Delightful Dioramas (jzzle and TheMan) Added SM64: The Green Stars (Bear64DX, or just Bear) Improved Star...
  3. EmeraldLockdown

    Tag

    EmeraldLockdown updated Tag with a new update entry: Tag v2.4 Read the rest of this update entry...
  4. EmeraldLockdown

    Detect if the player is in the air?

    if m.action & ACT_FLAG_AIR ~= 0 Increasing vel in the HOOK_BEFORE_PHYS_STEP hook should work fine, however these actions break when doing so: ACT_TWIRLING ACT_GETTING_BLOWN ACT_FLYING_TRIPLE_JUMP ACT_SHOT_FROM_CANNON ACT_LAVA_BOOST
  5. EmeraldLockdown

    Need a list of actions.

    If you havent already, set up vscode, then select an action like ACT_IDLE, control click the action, and there should be all the actions there. Main reason I'm showing this to you this way is because you can get all constants, and everything's way easier when you setup vscode : ).
  6. EmeraldLockdown

    what's the light X, Y, and Z value for ex-coop?

    Pretty unsure on how to do it then.. sorry about that :/
  7. EmeraldLockdown

    what's the light X, Y, and Z value for ex-coop?

    It's just a function, so example code would be function shading(m) set_lighting_dir(0, 0) set_lighting_dir(1, 0) set_lighting_dir(2, 127) end ----------- -- hooks -- ----------- hook_event(HOOK_MARIO_UPDATE, shading) You can tweak the variables to get the desired effect.
  8. EmeraldLockdown

    what's the light X, Y, and Z value for ex-coop?

    I'm sorry, I just looked at the image, I believe you're editing the wrong variable. What you're wanting to change is the light direction. That can be done with set_lighting_dir, this passes in an index and a value. The index 0 is X, the index 1 is Y, and the index 2 is Z. Then simply set the...
  9. EmeraldLockdown

    what's the light X, Y, and Z value for ex-coop?

    Wait I'm stupid lol. It's lightR, lightG, and lightB, for red green and blue.
  10. EmeraldLockdown

    what's the light X, Y, and Z value for ex-coop?

    What's the error, and what does your code look like?
  11. EmeraldLockdown

    what's the light X, Y, and Z value for ex-coop?

    No you can do this, this code simply isn't correct. Firstly, be sure you're hooking the shading function via hook_event(HOOK_MARIO_UPDATE, shading). Next, the light_X variable and y and z are all named wrong, it's lightX, lightY, and lightZ, no underscore. Once that's done that code should work...
  12. EmeraldLockdown

    Mario's Speed Cap

    Should have made this more clear, be sure to use the HOOK_BEFORE_PHYS_STEP hook, then it'll work.
  13. EmeraldLockdown

    Mario's Speed Cap

    You can multiply Mario's `vel` vec3f, like this: ``` m.vel.x = m.vel.x * 2 m.vel.z = m.vel.z * 2 ``` Please note that multiplying by 2, while not strong in some actions, can be VERY strong in others. Doing this can constantly increase mario's velocity to a unreasonable number, so be sure...
  14. EmeraldLockdown

    Tag

    Mh uses a different system than Tag's. With tag, when you edit a setting, it's saved, no save button required. Also, this mod does not contain a number of runners, or anything like that, all of that is selected manually. Hopefully that answers your question : ).
  15. EmeraldLockdown

    Tag

    Android is not tested with the mod, so yea it may be uncomfortable trying to configure settings. As for settings not being saved, the number of runners is not a setting, so I'm unsure of what you are referring to there. Not all settings save yet, however more settings are to be saved next ver : ).
  16. EmeraldLockdown

    Multiple custom colour presets, & Copying text from messages.

    The multiple palette presets does make a lot of sense, +1 for that.
  17. EmeraldLockdown

    Proximity Chat for MacBook

    Try running sm64ex-coop/coopdx via Whisky, and run the proximity chat in the same bottle, that may work. You may just be able to run proximity chat via Whisky, and it hook into coopdx, however I don't know if that will work or not, however it does indeed launch with Whisky.
  18. EmeraldLockdown

    How to use a simple model swap Romhack?

    Unfortunately I can't test rm2c with this hack due to some weird capstone arm x84 linking jank (i'm on an m1 mac). I don't use rm2c with windows, so I'm unsure of what the formatting may be in that terminal. Looking at the error, thee error is indeed different, try escaping the . character with...
  19. EmeraldLockdown

    How to use a simple model swap Romhack?

    Ensure the rom is in the rom-manager-2-c folder. Another thing is is the rom named what you have out in there? I’d just rename the mod to rom.z64 so you can make sure special characters aren’t the problem. Also sorry for the late response :/
  20. EmeraldLockdown

    How to use a simple model swap Romhack?

    Use RM2C. Put your rom in, extract the actors, then copy the mario, mario cap, and any other related mario folders into your dynos mod. Dynos is a system that loads models during runtime, so to create a dynos pack, if you're using coopdx, go to Options, and hit Open User Folder. If you aren't...