My Application for the Modder Status

Status
Not open for further replies.

MtgamesGnM

Member
Modder
Apr 15, 2024
4
2
200
Pronouns
He/Him
Hello, I just made the account yesterday because a large chunk of patrons in the SM64CO-OP community recommended that I contribute to this site.

Here are 2 links to my creations, one more technical than the other:

Marcel's Emotes

And Some OC Mods (An older version that has a newer version that may be posted here)

And lastly, here is a simple script that allows players to do the Thok from SRB2 out of ground pound:
function thok(m)
if m.action == ACT_GROUND_POUND and (m.controller.buttonPressed & A_BUTTON) ~=0 then
m.faceAngle.y = m.intendedYaw
audio_sample_play(THOK, gMarioStates[0].pos, 1.0)
set_mario_action(m, ACT_FORWARD_ROLLOUT, 0)
m.vel.y = 50.0
m.forwardVel = 80
spawn_mist_particles_variable(25, 0, 15)
end
if m.action == ACT_GROUND_POUND and (m.controller.buttonPressed & B_BUTTON) ~=0 then
m.faceAngle.y = m.intendedYaw
audio_sample_play(THOK, gMarioStates[0].pos, 1.0)
set_mario_action(m, ACT_FORWARD_ROLLOUT, 0)
m.vel.y = 50.0
m.forwardVel = 80
spawn_mist_particles_variable(25, 0, 15)
end
end

hook_event(HOOK_MARIO_UPDATE, thok)
I'm super grateful to be potentially a part of this community! I've been using the LUA knowledge gained from this game to other things lol
 
Status
Not open for further replies.

Users who are viewing this thread