Hello! I would like to apply for Modder Status.
I created a Lua mod called TP Maps, which adds a convenient teleport menu to SM64COOPDX.
The mod organizes the available locations into several categories:
Each menu button uses SM64COOPDX's level warp functions to teleport the player directly to the selected location.
Here is an example of the code I created:
local function tp(level)
warp_to_level(level, 1, 0)
end
hook_mod_menu_button("1 - Bob-omb Battlefield", function()
tp(LEVEL_BOB)
end)
hook_mod_menu_button("2 - Whomp's Fortress", function()
tp(LEVEL_WF)
end)
I created and organized the mod myself, including the teleport function, menu categories, buttons, level selection and color formatting.
I would like to receive Modder Status so I can publish my own SM64COOPDX mods on the Mods website.
Thank you for taking the time to review my application!
I created a Lua mod called TP Maps, which adds a convenient teleport menu to SM64COOPDX.
The mod organizes the available locations into several categories:
- Courses – all 15 main courses
- Bowser – Bowser 1, Bowser 2 and Bowser 3
- Secrets – Peach's Secret Slide, Wing Cap, Metal Cap and Vanish Cap
- Castle – Castle Grounds, Castle and Castle Courtyard
Each menu button uses SM64COOPDX's level warp functions to teleport the player directly to the selected location.
Here is an example of the code I created:
local function tp(level)
warp_to_level(level, 1, 0)
end
hook_mod_menu_button("1 - Bob-omb Battlefield", function()
tp(LEVEL_BOB)
end)
hook_mod_menu_button("2 - Whomp's Fortress", function()
tp(LEVEL_WF)
end)
I created and organized the mod myself, including the teleport function, menu categories, buttons, level selection and color formatting.
I would like to receive Modder Status so I can publish my own SM64COOPDX mods on the Mods website.
Thank you for taking the time to review my application!