Page 4 of 4

Re: anotherwalljump.lua - I still don't get why people like Walljumps in Mario

Posted: Sat Jul 12, 2025 3:55 pm
by Mushroom King
Is there a way to adjust the script so that the player must jump (no contact with the ground) and press the direction they are facing the wall in order to perform a wall jump, rather than simply touching it?

Re: anotherwalljump.lua - I still don't get why people like Walljumps in Mario

Posted: Sun Jul 13, 2025 5:14 am
by John Nameless
Mushroom King wrote:
Sat Jul 12, 2025 3:55 pm
Is there a way to adjust the script so that the player must jump (no contact with the ground) and press the direction they are facing the wall in order to perform a wall jump, rather than simply touching it?

Code: Select all

-- put the following in your luna.lua file of your level/episode
function onInputUpdate()
    if aw and aw.isWallSliding(player) and (not player.keys.right and not player.keys.left) then
        aw.preventWallSlide(player)
    end
end

Re: anotherwalljump.lua - I still don't get why people like Walljumps in Mario

Posted: Sun Jul 13, 2025 1:27 pm
by Mushroom King
Thanks!

Re: anotherwalljump.lua - I still don't get why people like Walljumps in Mario

Posted: Fri Aug 22, 2025 5:01 pm
by Shaktool
Question: Is this obsolete now that walljump.lua exists?

Re: anotherwalljump.lua - I still don't get why people like Walljumps in Mario

Posted: Fri Aug 22, 2025 6:37 pm
by mariobrigade2018
Shaktool wrote:
Fri Aug 22, 2025 5:01 pm
Question: Is this obsolete now that walljump.lua exists?
The what now? Where’s the link to this?

Re: anotherwalljump.lua - I still don't get why people like Walljumps in Mario

Posted: Fri Aug 22, 2025 6:49 pm
by Shaktool
mariobrigade2018 wrote:
Fri Aug 22, 2025 6:37 pm
Shaktool wrote:
Fri Aug 22, 2025 5:01 pm
Question: Is this obsolete now that walljump.lua exists?
The what now? Where’s the link to this?
The one Marioman2007 made. For some reason i cant find it anywhere, or it dosent exist, but i swear it exists... or not, i guess?

Re: anotherwalljump.lua - I still don't get why people like Walljumps in Mario

Posted: Fri Aug 22, 2025 8:14 pm
by mariobrigade2018
Shaktool wrote:
Fri Aug 22, 2025 6:49 pm
mariobrigade2018 wrote:
Fri Aug 22, 2025 6:37 pm
Shaktool wrote:
Fri Aug 22, 2025 5:01 pm
Question: Is this obsolete now that walljump.lua exists?
The what now? Where’s the link to this?
The one Marioman2007 made. For some reason i cant find it anywhere, or it dosent exist, but i swear it exists... or not, i guess?
Uh, I don’t think he was working on one, but I can ping him just in case.
Marioman2007 wrote:Ping

Re: anotherwalljump.lua - I still don't get why people like Walljumps in Mario

Posted: Wed Aug 27, 2025 10:51 pm
by Marioman2007
No I did not work on any walljump library.
I'm only aware of two other walljump libraries but both of them are in the archived forums.

This is the best walljump script and it's not obsolete lol

Re: anotherwalljump.lua - I still don't get why people like Walljumps in Mario

Posted: Fri Aug 29, 2025 2:18 pm
by Shaktool
Thanks for letting me know that. I sometimes hate Mandela effect so much for this

anyways this is a really cool library! i was supposed to make a level built around this but never got plans to do it. Anyhow, i love people trying to recreate mechanics from the NSMB series!