Advertisement
Guest User

HOTD.PIE

a guest
Dec 15th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. //Wiimote GlovePie Script for House of the Dead on Model2Emulator
  2.  
  3. var.ButtonFreezeTime = 250ms
  4. Wiimote.Led1 = true
  5.  
  6. // Mouse movement
  7. if wiimote.PointerVisible
  8. mouse.x = wiimote.PointerX
  9. mouse.y = wiimote.PointerY
  10. end if
  11.  
  12. //Shoot gun by pressing B while pointing at screen
  13. mouse.LeftButton = Wiimote.B and Wiimote.PointerVisible and !Pressed(wiimote.B)
  14.  
  15. //Reload gun by pressing B while pointing off screen
  16. mouse.RightButton = KeepDown(Pressed(wiimote.B), 0.1s) and !Wiimote.PointerVisible
  17.  
  18. enter = Wiimote.A //P1 Start
  19. space = Wiimote.Home //Insert Coin
  20.  
  21. z = Wiimote.1
  22. x = Wiimote.2
  23. //to do the score cheat code
  24. //enter a coin to get to the title screen
  25. //then pull trigger 1 three times, trigger 2 twice, then start
  26. //so on the wii mote that is
  27. //1 1 1 2 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement