Guest User

Untitled

a guest
Nov 15th, 2013
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. #===============================================================================
  2. # Window Menu_Command Resize
  3. #===============================================================================
  4. # Author : Cahml
  5. # Version : V.1.0
  6. # Engine : RMVX Ace
  7. #===============================================================================
  8. # Cara Pemakaian
  9. #-------------------------------------------------------------------------------
  10. # Taruh script ini di atas Main Process dan di bawah script apapun pada
  11. # Script Editor.
  12. #===============================================================================
  13. # Credits Me CAHML :)
  14. #===============================================================================
  15. # Script ini Hanya Untuk Me - Resize Command menu klo menu command nya penuh :3
  16. #-------------------------------------------------------------------------------
  17. #hanya untuk newbie karna yang master pasti udh tau :3
  18. #===============================================================================
  19. module CAHML
  20. WINDOW_HEIGHT = 96 # setiap kelipatan 32 mewakili 1 Command :3
  21. end
  22. class Window_MenuCommand < Window_Command
  23. def window_width
  24. return 160
  25. end
  26. def window_height
  27. CAHML::WINDOW_HEIGHT
  28. end
  29. end
Advertisement
Add Comment
Please, Sign In to add comment