Top | Previous | Next |
system.util.exit |
Description Exits the running client, as long as the shutdown intercept script doesn't cancel the shutdown event. Set force to true to not give the shutdown intercept script a chance to cancel the exit. Note that this will quit the Client completely. you can use system.security.logout() to return to the login screen. Syntax system.util.exit([force]) Parameters boolean force - If true (1), the shutdown-intercept script will be skipped. Default is false (0). [optional] Returns nothing Scope Client Examples # This code would exit the client after confirming with the user. if system.gui.confirm("Are you sure you want to exit?"): system.util.exit()
|