RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
Temporarily Disabling a Script? {Blizzard}

0 Members and 1 Guest are viewing this topic.

***
Rep:
Level 88
Now do you know who I am??
I want to disable Blzzards Add-Ons Scrpit for a cutscene in my game. Can someone give me a Call Script? Or whatever I need.
« Last Edit: February 24, 2007, 06:37:46 PM by keyblade_bearer »

***
Rep:
Level 88
Smarter than the average bear
If I'm not mistaken, most of the commands in blizzard's Addons scripts have calls to turn off/on ingame. You probably want to turn off just one or two of the effects, maybe? Well if you find what they are in the script, you can turn them off by calling it false in a call script event.

Right out of the script;
Quote
#::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
# START Configuration 2
#
# You can enable/disable any add-on here if you wish. Set the value to false
# to disable it initially. To turn it on/off ingame, just use the Call script
# command with one of these syntaxes:
#
# $game_system.NAME_OF_THE_ADDON = true
# $game_system.NAME_OF_THE_ADDON = false
#
# where NAME_OF_THE_ADDON is the same variable as the one used below.
#::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
So for example if you had
    @BETTER_TILEMAP_UPDATE = true

Just have a call script event saying
    @BETTER_TILEMAP_UPDATE = false

but this is for the SECOND configuration, a few cannot be turned off/on ingame (fullscreen, EQUAP)

***
Rep:
Level 88
Now do you know who I am??
I know how to do that. But what I want is a temporrailral no script.

*
A man chooses,
Rep:
Level 92
a slave obeys
Project of the Month winner for April 2008
Call Script:

# $game_system.NAME_OF_THE_ADDON = false

And turned on Again:

# $game_system.NAME_OF_THE_ADDON = true


Byt to cancel a screipt...I dunno about that ;__;

***
Rep:
Level 88
Now do you know who I am??
Sure, let's try that, it makes enough sense.

Nope, the code works, the HUD is gone, but the game freezes up, heres the exact code I put in:

$game_system.HUD = false

Is there a Call Script for resuming?

« Last Edit: February 24, 2007, 04:24:04 PM by keyblade_bearer »