roninator2

Block Save Slots

Dec 17th, 2024
9
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 6.06 KB | None | 0 0
  1. # ╔═══════════════════════════════════════════════╦════════════════════╗
  2. # ║ Title: Block Save Slots                       ║  Version: 1.00     ║
  3. # ║ Author: Roninator2                            ║                    ║
  4. # ╠═══════════════════════════════════════════════╬════════════════════╣
  5. # ║ Function:                                     ║   Date Created     ║
  6. # ║                                               ╠════════════════════╣
  7. # ║     prevent access to save slots              ║    18 Sep 2021     ║
  8. # ╚═══════════════════════════════════════════════╩════════════════════╝
  9. # ╔════════════════════════════════════════════════════════════════════╗
  10. # ║ Requires: nil                                                      ║
  11. # ║                                                                    ║
  12. # ╚════════════════════════════════════════════════════════════════════╝
  13. # ╔════════════════════════════════════════════════════════════════════╗
  14. # ║ Brief Description:                                                 ║
  15. # ║        Block save slots from being used by the player              ║
  16. # ╚════════════════════════════════════════════════════════════════════╝
  17. # ╔════════════════════════════════════════════════════════════════════╗
  18. # ║ Instructions:                                                      ║
  19. # ║   Specify the slots to block in the array                          ║
  20. # ║     Blocked = [1,4]                                                ║
  21. # ╚════════════════════════════════════════════════════════════════════╝
  22. # ╔════════════════════════════════════════════════════════════════════╗
  23. # ║ Updates:                                                           ║
  24. # ║ 1.00 - 18 Sep 2021 - Script finished                               ║
  25. # ║                                                                    ║
  26. # ╚════════════════════════════════════════════════════════════════════╝
  27. # ╔════════════════════════════════════════════════════════════════════╗
  28. # ║ Credits and Thanks:                                                ║
  29. # ║   Roninator2                                                       ║
  30. # ║                                                                    ║
  31. # ╚════════════════════════════════════════════════════════════════════╝
  32. # ╔════════════════════════════════════════════════════════════════════╗
  33. # ║ Terms of use:                                                      ║
  34. # ║  Follow the original Authors terms of use where applicable         ║
  35. # ║    - When not made by me (Roninator2)                              ║
  36. # ║  Free for all uses in RPG Maker except nudity                      ║
  37. # ║  Anyone using this script in their project before these terms      ║
  38. # ║  were changed are allowed to use this script even if it conflicts  ║
  39. # ║  with these new terms. New terms effective 03 Apr 2024             ║
  40. # ║  No part of this code can be used with AI programs or tools        ║
  41. # ║  Credit must be given                                              ║
  42. # ╚════════════════════════════════════════════════════════════════════╝
  43.  
  44. module R2_Save_Block
  45.   Blocked = [0,1]
  46. end
  47.  
  48. # ╔════════════════════════════════════════════════════════════════════╗
  49. # ║                      End of editable region                        ║
  50. # ╚════════════════════════════════════════════════════════════════════╝
  51.  
  52. class Scene_Save < Scene_File
  53.   def on_savefile_ok
  54.     super
  55.     if R2_Save_Block::Blocked.include?(@index)
  56.       Sound.play_buzzer
  57.     else
  58.       if DataManager.save_game(@index)
  59.         on_save_success
  60.       else
  61.         Sound.play_buzzer
  62.       end
  63.     end
  64.   end
  65. end
Add Comment
Please, Sign In to add comment