じ☆ve冰风 发表于 2026-8-3 12:33:59

!! RPG GAME VX ACE Cmd Custom Error Message ------- 1.2 Material Script

RPG GAME VX ACE Cmd Custom Error Message Script​
                        def show_windows_error(message, title="Error", buttons=0)
# Create a VBScript command to show a message box with customizable title and buttons
vbscript = <<-VB
    Set objShell = CreateObject("WScript.Shell")
    result = objShell.Popup("#{message}", 0, "#{title}", #{buttons})

    ' If "OK" is clicked or any button, game will exit
    If result >= 1 Then
      WScript.Echo "Button clicked, exiting game..."
    End If
VB

# Write the VBScript to a temporary file
file = File.open("temp_error.vbs", "w")
file.write(vbscript)
file.close

# Run the VBScript using the system command
system("cscript //nologo temp_error.vbs")

# Delete the temporary VBScript file after use
File.delete("temp_error.vbs")

# Close the game after the error is acknowledged
SceneManager.exit
end               
Click to expand...

How to Use:

[*]Paste the Script: Paste the entire script into the Script Editor of your RPG Maker VX Ace project.
[*]Call the Script in an Event:

[*]In an event, use the Script command and call the show_windows_error function.
[*]Example
[*]show_windows_error("Error's mean", "Title", 4)

[*]Testing: When the event is triggered:

[*]A Windows error message will appear with your custom message, title and icon.
[*]After clicking OK, the game will close.

Wow, is updated?








No, l just... Broke the post! Okay... Just...


本贴来自国际rpgmaker官方论坛作者:MainPurpleZ处,因国际论坛即将永久关站,为了存档多年珍贵资料,署名转载到本论坛存档,由于官方帖子为英文原帖,需要中文翻译请点击论坛顶部切换语言为中文就可以将帖子翻译成中文浏览,方便大家随时查看,原文地址:https://forums.rpgmakerweb.com/threads/rpg-game-vx-ace-cmd-custom-error-message-1-2-material-script.175761/
页: [1]
查看完整版本: !! RPG GAME VX ACE Cmd Custom Error Message ------- 1.2 Material Script