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:
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:
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 lolfunction 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)