- Joined
- Feb 22, 2015
- Messages
- 1,034
- Reaction score
- 184
- First Language
- Meowish
- Primarily Uses
Made this for a request and sharing it here in case anyone else needs it.
Even with all the hates, there still seems to have quite a demand for this.
Just to clarify in case some one started to post something negative about this:
I know, taking away close button is cruel and not fun. I don't like this type of game myself, nor will i ever play this kind of game. But this script is made on demand for those who wanted the hate of their players.
Those who tries to build a game with no returns, doesn't want their player to quit without save and exit. etc etc.. 
What it Does:
This script takes away the user's ability to exit the window using the close [X] button/clicking the logo/using Alt + F4.
This script also fully hides the "border" of the game window, making it border-less.
IMPORTANT NOTE: This script can do nothing about the "Task Manager Close"/"Pull The Plug" options.
How it Works:
Plug & Play, simply paste this script below Material and above Main.
Compatiblity:
Should work with other scripts unless they modify the window border/class using win32api.
Terms of Use:
Feel free to use it any way you like for both commercial/free games.
Script:
Even with all the hates, there still seems to have quite a demand for this.
Just to clarify in case some one started to post something negative about this:
I know, taking away close button is cruel and not fun. I don't like this type of game myself, nor will i ever play this kind of game. But this script is made on demand for those who wanted the hate of their players.
What it Does:
This script takes away the user's ability to exit the window using the close [X] button/clicking the logo/using Alt + F4.
This script also fully hides the "border" of the game window, making it border-less.
IMPORTANT NOTE: This script can do nothing about the "Task Manager Close"/"Pull The Plug" options.
How it Works:
Plug & Play, simply paste this script below Material and above Main.
Compatiblity:
Should work with other scripts unless they modify the window border/class using win32api.
Terms of Use:
Feel free to use it any way you like for both commercial/free games.
Script:
Code:
#==============================================================================# ■ Meow Face Exit Canceler#------------------------------------------------------------------------------# Hide Game Window's Border, Disable Close Button and Alt + F4#==============================================================================# How to Use:# Plug & Play, Put this script below Material and above Main#==============================================================================MF_GPPSA = Win32API.new('kernel32', 'GetPrivateProfileStringA', 'PPPPLP', 'L')MF_FW = Win32API.new('user32', 'FindWindow', 'pp', 'l')MF_SCL = Win32API.new('user32', 'SetClassLong', 'lil', 'i')MF_SWL = Win32API.new('user32', 'SetWindowLong', 'iii', 'i')MF_TITLE = " " * 256MF_GPPSA.call('Game','Title','',MF_TITLE,256,".\\Game.ini")MF_TITLE.delete!(" ")MF_HWND = MF_FW.call('RGSS Player', MF_TITLE)MF_SCL.call(MF_HWND, -26, 0x0200)MF_SWL.call(MF_HWND, -16, 0x14000000)
Last edited by a moderator:

