Re: Super Mario Bros. X-Treme
Posted: Wed Mar 11, 2020 9:13 pm
Crap i forgot again dang it
Forums for SMBX
https://www.smbxgame.com/forums/
What do you mean by hack?Throw Kirby wrote: ↑Thu May 07, 2020 5:28 pmAll right, I'm gonna be focusing more attention on this project.
The Overview
This """"""""hack"""""""""" will have:
- A Hub Area
The Story
- 12 Worlds (3 of which being Bonus Worlds)
The Mario Bros. get a letter from an unknown person, saying that Peach has been kidnapped! The Bros. go to Bowser to save her, but he's captured Daisy instead! Just who or what the heck could be behind this?
The Players
- Mario
- Luigi (He'll be a bit more slippery and jump higher)
- Toad
- Kirby* (He'll have inhaling and everything)
- Wario
- Daisy
The Worlds
- Mega Man
- W1: Placid Plains (Grass)
- W2: Desolate Desert (Desert)
- W3: Calamitous Cave (Cave)
- W4: Fervent Factory (Factory)
- W5: Manic Mountains (Mountain)
- W6: Groovy Glaciers (Ice)
- W7: Belligerent Beach (Beach)
- W8: Aerial Assault(Think Sky Chase from Sonic 2)
- W9: Radical Rocket (Space/Rocket)
- W10 (Bonus 1): Resuscitated Rivals (Rematch)
- W11 (Bonus 2): Nameless Nova (True Final)
- W12 (Bonus 1): Star Sanctuary (Think Rosalina's Observatory from The Invasion 2)
Seems like a decent roster of bosses, I wish you luck with their executionThrow Kirby wrote: ↑Fri May 08, 2020 12:10 amBut OK, seriously, here's the bosses for Worlds 1-9.
World 1: Bowser
World 2: Mummigoom
World 3: Runnin' Piranha
World 4: Robo-Bro
World 5: Mega Sumo Bro
Would 6: Nolan the Ice Birdo
World 7: Montgomery Rockington
World 8: Shy Guy Airship Brigade
World 9: Nova Bowser (Oc Do NoT sTeAl)
Thank you! I'm working on a custom Bowser Boss right now!Eri7 wrote: ↑Fri May 08, 2020 10:29 amSeems like a decent roster of bosses, I wish you luck with their executionThrow Kirby wrote: ↑Fri May 08, 2020 12:10 amBut OK, seriously, here's the bosses for Worlds 1-9.
World 1: Bowser
World 2: Mummigoom
World 3: Runnin' Piranha
World 4: Robo-Bro
World 5: Mega Sumo Bro
Would 6: Nolan the Ice Birdo
World 7: Montgomery Rockington
World 8: Shy Guy Airship Brigade
World 9: Nova Bowser (Oc Do NoT sTeAl)![]()
Code: Select all
local playerManager = require("playerManager")
playerManager.overrideCharacterLib(CHARACTER_KIRBY,require("kirby.lua"))
--[[
Controls
Z - Jump
X - Run
A - Spin
S - AltRun
Shift - Select
]]--
-------------
--Variables--
-------------
local kirby = {};
local health = 6;
local jumps = 0;
local maxjumps = 6;
local jumpht = -11
local SelPress = false
local DwnPress = false
local RunPress = false
local SldInit = false
local Full = true
function Inhale
if keycode == KEY_RUN and SldInit = false
starID = NPC.spawn(108, player.x, player.y, player.section)
Full = false
starID.speedX = 7.5 * direction;
starID:mem(0xF0, FIELD_DFLOAT, 4)
end
end
-----------------
--Key Functions--
-----------------
function DNPress
if keycode == KEY_DOWN
local DwnPress = true
else
local DwnPress = false
end
end
function SLPress
if keycode == KEY_RUN
local RunPress = true
else
local RunPress = false
end
end
function SLPress
if keycode == KEY_SEL
local SelPress = true
else
local SelPress = false
end
end
-----------
--Cleanup--
-----------
function kirby.CleanupChar
NPC.config[108].gfxwidth = 32;
NPC.config[108].gfxheight = 32;
NPC.config[108].height = 32;
NPC.config[108].width = 32;
NPC.config[108].frames = 4;
NPC.config[108].framestyle = 1;
end
----------
--Output--
----------
return kirby