mirror of
				https://github.com/coop-deluxe/sm64coopdx.git
				synced 2025-10-30 08:01:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			No EOL
		
	
	
		
			288 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			No EOL
		
	
	
		
			288 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| -- name: MoonJump
 | |
| -- description: Hold the A button to Moonjump
 | |
| 
 | |
| local function mario_update(m)
 | |
|     if (m.controller.buttonDown & A_BUTTON) ~= 0 then --If the A button is held
 | |
|         m.vel.y = 25 --Set Y velocity to 25
 | |
|     end
 | |
| end
 | |
| 
 | |
| -- hooks --
 | |
| hook_event(HOOK_MARIO_UPDATE, mario_update) | 
