Page 9 of 11

Re: The Secret "The Lakitus are throwing Lakitus!" Editor Tab

Posted: Wed Jun 29, 2016 10:54 am
by SuperLuigiBrother
FanofSMBX wrote:
ProngoKingdom wrote:1.4.2 made this into another folder labeled "Advance" which kinda stinks. Liked it better when it was an easter egg since it was a nice little touch that the player could find.
Oh no you don't. SMBX 1.4.x has almost 10 minigames that are hard puzzles with math, sudoku, maze, etc. to unlock debug features.
Most likely the episodes can have minigames. Or if possible.
Afraid of the Heights wrote:It takes me five minutes on imaging how a player could swim in lava since lava tiles are blocks. :|

So I thought that you are in god mode and when I tried it, what I think is correct. :lol:
No, i actually made a level called "cheatproof" with a floating tile where mario spawns, typing in the cheat lavaplayer, and it didnt work. So that states to me that it didnt work.

Re: The Secret "The Lakitus are throwing Lakitus!" Editor Tab

Posted: Wed Jun 29, 2016 2:30 pm
by Yoshi021
SuperLuigiBrother wrote:
FanofSMBX wrote:
ProngoKingdom wrote:1.4.2 made this into another folder labeled "Advance" which kinda stinks. Liked it better when it was an easter egg since it was a nice little touch that the player could find.
Oh no you don't. SMBX 1.4.x has almost 10 minigames that are hard puzzles with math, sudoku, maze, etc. to unlock debug features.
Most likely the episodes can have minigames. Or if possible.
No, there are hidden minigames and beating them will unlock hidden functions.

Re: Cheat Codes, Custom NPC Codes, Hidden NPC Tab

Posted: Thu Jun 30, 2016 12:42 pm
by Angelus
Is there any code that can delay a SMB2 bob-omb explosion? Or, if not, is there a way to apply a NPC code to a single section of the level?

Re: Cheat Codes, Custom NPC Codes, Hidden NPC Tab

Posted: Fri Jul 01, 2016 10:27 pm
by SuperLuigiBrother
[quote="Angelus"]Is there any code that can delay a SMB2 bob-omb explosion? Or, if not, is there a way to apply a NPC code to a single section of the level?[/quote

Well, looking at the cheat codees there, that might be a rumor code.

Re: Cheat Codes, Custom NPC Codes, Hidden NPC Tab

Posted: Sat Jul 02, 2016 6:35 am
by HeroLinik
SuperLuigiBrother wrote:Well, looking at the cheat codees there, that might be a rumor code.
He's referring to NPC codes.

Re: Cheat Codes, Custom NPC Codes, Hidden NPC Tab

Posted: Sat Jul 02, 2016 7:36 am
by Radiance
Angelus wrote:delay a SMB2 bob-omb explosion
Do you refer to the effect of the explosion or the duration between the bob-omb spawn and explodes?

If it is the second one, I think you could do that in LunaLua.

Re: Cheat Codes, Custom NPC Codes, Hidden NPC Tab

Posted: Sat Jul 02, 2016 9:03 am
by Angelus
Afraid of the Heights wrote:
Angelus wrote:delay a SMB2 bob-omb explosion
Do you refer to the effect of the explosion or the duration between the bob-omb spawn and explodes?

If it is the second one, I think you could do that in LunaLua.
Yes, it's the second one. If there's any LunaLua code, let me know. But as it is right now, it's not needed anymore. I've found a workaround to my level.

Re: Cheat Codes, Custom NPC Codes, Hidden NPC Tab

Posted: Sat Jul 02, 2016 9:23 am
by Radiance
Angelus wrote:
Afraid of the Heights wrote:
Angelus wrote:delay a SMB2 bob-omb explosion
Do you refer to the effect of the explosion or the duration between the bob-omb spawn and explodes?

If it is the second one, I think you could do that in LunaLua.
Yes, it's the second one. If there's any LunaLua code, let me know. But as it is right now, it's not needed anymore. I've found a workaround to my level.
Well, I am still studying about LunaLua codes. So, sorry I do not have a code about it. :( Maybe some members of the community knows a code for it. And I am wishing you luck for your level! :)

Re: Cheat Codes, Custom NPC Codes, Hidden NPC Tab

Posted: Sat Jul 02, 2016 9:48 am
by Yoshi021
If you need help with lunalua, you can ask here
http://www.smbxgame.com/forums/v ... 87&t=13541

Re: Cheat Codes, Custom NPC Codes, Hidden NPC Tab

Posted: Mon Jul 04, 2016 10:24 pm
by PixelPest
Angelus wrote:Is there any code that can delay a SMB2 bob-omb explosion? Or, if not, is there a way to apply a NPC code to a single section of the level?
If you're still interested, here's a way to do it. It requires LunaLua of course, as well as pNPC.lua:

It involves wrapping each SMB2 Bob-omb active so that the script can differentiate between them and then changing the NPC AI that deals with the explosion countdown timer to a value of 1 through 449 to increase the number of ticks that pass before the explosion at 450. An example involving increasing by 100 ticks (about 1.2 seconds) before an explosion is shown below:

Code: Select all

local pnpc = API.load("pnpc");

function onTick()
   for _, b in pairs(NPC.get(135, -1)) do
      local bomb = pnpc.wrap(b);
      local bomb.reset = false;
      
      if (bomb.ai1 == 449) and (bomb.reset == false) then
         bomb.ai1 = 349;
         bomb.reset = true; 
      end
   end
end

Re: Cheat Codes, Custom NPC Codes, Hidden NPC Tab

Posted: Fri Jul 08, 2016 2:25 am
by S_Koopa0
How do I make moving tiles?

Re: Cheat Codes, Custom NPC Codes, Hidden NPC Tab

Posted: Fri Jul 08, 2016 8:23 am
by PixelPest
ArnuroMinigon wrote:How do I make moving tiles?
Layers and events

Re: Cheat Codes, Custom NPC Codes, Hidden NPC Tab

Posted: Sat Jul 09, 2016 4:14 am
by S_Koopa0
PixelPest wrote:
ArnuroMinigon wrote:How do I make moving tiles?
Layers and events
Ok ok, layers and events.
But I don't know how to use them, this is it.
If someone can help me...
Spoiler: show
:?: :?: :?:

Re: Cheat Codes, Custom NPC Codes, Hidden NPC Tab

Posted: Sat Jul 09, 2016 5:15 am
by RudeGuy

Re: Cheat Codes, Custom NPC Codes, Hidden NPC Tab

Posted: Sun Aug 07, 2016 5:28 am
by Mikos344
the cheat codes don't even work for me example i type flamethrower in smbx and nothing happens not even a powerup sound plays

Re: Cheat Codes, Custom NPC Codes, Hidden NPC Tab

Posted: Sun Aug 07, 2016 7:52 am
by PixelPest
Mikos344 wrote:the cheat codes don't even work for me example i type flamethrower in smbx and nothing happens not even a powerup sound plays
flamethrower increases the speed of fireballs, ice balls, and hammers thrown by the player (and it says this clearly in the main post), but it doesn't give you one of those power-ups if you don't have one

Re: Cheat Codes, Custom NPC Codes, Hidden NPC Tab

Posted: Sun Aug 07, 2016 10:43 am
by Mikos344
but when i have fire flower and i type flamethrower and i test it does nothing maybe a little bug?

Re: SMBX NPC Code List

Posted: Thu Aug 11, 2016 1:39 am
by AiNaKa
PixelPest wrote:
AiNaKa wrote:
PixelPest wrote: Not with NPC codes. That would require LunaLua

oh i see but i'm making another npc now is there a way for it to despawn after a certain amount of time? i don't know how to use lua at all.
You'd need to use Lua to do that too
*sigh*
guess i'm gonna have to try to learn lua then...

Re: Cheat Codes, Custom NPC Codes, Hidden NPC Tab

Posted: Wed Oct 19, 2016 4:53 pm
by craftersshaft
To play as megaman, type "superfightingrobot". I've tried "thelastmetroid" for samus, no dice, but "samusisagirl" works just fine.

Re: Cheat Codes, Custom NPC Codes, Hidden NPC Tab

Posted: Thu Nov 03, 2016 10:30 pm
by bossedit8
All of the 2.0 Beta 3 Cheat Codes avaiable here:
Enjl wrote:Basic cheats:
Spoiler: show
suicide - you die
holytrinity - Activates the 'ahippinandahoppin', 'donthurtme', and 'shadowstar' cheats all at once.
theessentials - Activates the 'ahippinandahoppin', 'donthurtme', 'shadowstar', and 'sonicstooslow' cheats all at once.
jumpman - substitute for ahippinandahoppin
liveforever - you get 99 lives
launchme - launches you upwards
boomtheroom - causes a POW effect
instantswitch - activates a p-switch
murder - kills all killable enemies on screen
dressmeup - changes your costume
undress - reverts your costume state
laundryday - unloads all costumes
thestarmen - gives you a starman
getdown - pushes you down by 3x your height in pixels
rosebud - sets your coins to 99
Level exit cheats:
Spoiler: show
foundmycarkeys - ends the level with a smw key
mylifegoals - ends the level with a smw goal
mysteryball - ends the level with a smb3 orb
itsvegas - ends the level with a smb3 roulette
getdemstars - collects all stars in the level and ends it
getmeouttahere - exits the level
Player cheats:
Spoiler: show
superfightingrobot - you're megaman now
eternalgreed - you're wario now
kingofthekoopas - you're bowser now
dreamtravel(l)er - you're klonoa now - includes variant with 2 l's for people who don't like the american spelling
bombingrun - you're ninja bomberman now
cosmicpower - you're rosalina now
metalgear - snek
ocarinaoftime - you're zelda now
densenuclearenergy - you're ultimate rinka now
hardmode - you're princess rinka now
unclesam - you're broadsword now
imtiny - you're juni now
samusisagirl - you're samus now
Silly cheats:
Spoiler: show
gdiredigit - makes a sound
horikawaisradicola - provides you with a kyaa boot rocket
jumpforrinka - jumping causes rinkas to spawn
rinkamania - enemy deaths spawn rinkas
rinkamadness - rinkas periodically spawn
worldpeace - every time an effect spawns, a YEAH sound plays. Effects move upwards