diff --git a/AdvancedRoomFeatures.html b/AdvancedRoomFeatures.html index 21a00b23..8968304a 100644 --- a/AdvancedRoomFeatures.html +++ b/AdvancedRoomFeatures.html @@ -161,7 +161,7 @@
AudioChannel.SetRoomLocation
AudioChannel.Speed
int AudioChannel.Speed
-Gets/sets the playing audio clip's playback speed. The value is defined in clip's milliseconds per second: 1000 is default, meaning 1000 of clip's ms in 1 real second (scale 1:1). Set < 1000 for slower play and > 1000 for faster play. NOTE: currently works for MP3 and OGG audio clips only.
+Gets/sets the playing audio clip's playback speed. The value is defined in clip's milliseconds per second: 1000 is default, meaning 1000 of clip's ms in 1 real second (scale 1:1). Set < 1000 for slower play and > 1000 for faster play.
Example:
AudioChannel *channel = aFunnyTalk.Play();
.Speed = 2000; channel
plays aFunnyTalk clip at the double speed.
-Compatibility: Supported by AGS 3.4.0 and later versions.
+Compatibility: Supported by AGS 3.4.0 and later versions. Prior to AGS 3.6.0 was working only for MP3 and OGG clips.
@@ -360,7 +360,7 @@ AudioChannel.Volume
diff --git a/AudioClip.html b/AudioClip.html
index bddde177..21414385 100644
--- a/AudioClip.html
+++ b/AudioClip.html
@@ -282,7 +282,7 @@ AudioClip.Type
diff --git a/AudioInScript.html b/AudioInScript.html
index cdd0c563..1eaa10e0 100644
--- a/AudioInScript.html
+++ b/AudioInScript.html
@@ -114,7 +114,7 @@ Audio in script
diff --git a/AutonumberSpeechFiles.html b/AutonumberSpeechFiles.html
index 065ce020..4ce0ac70 100644
--- a/AutonumberSpeechFiles.html
+++ b/AutonumberSpeechFiles.html
@@ -107,7 +107,7 @@ Auto-number speech files
diff --git a/BackingUpYourGame.html b/BackingUpYourGame.html
index d3433713..9e171632 100644
--- a/BackingUpYourGame.html
+++ b/BackingUpYourGame.html
@@ -109,7 +109,7 @@ Backing up your game
diff --git a/BlockingScripts.html b/BlockingScripts.html
index cfe7b6f6..e08c270f 100644
--- a/BlockingScripts.html
+++ b/BlockingScripts.html
@@ -122,7 +122,7 @@ Understanding blocking scripts
diff --git a/BuildAndroid.html b/BuildAndroid.html
index 001fbd14..aaca4bb3 100644
--- a/BuildAndroid.html
+++ b/BuildAndroid.html
@@ -163,7 +163,7 @@ Building the App
diff --git a/Button.html b/Button.html
index 8e1c1262..10e8d248 100644
--- a/Button.html
+++ b/Button.html
@@ -316,7 +316,7 @@ Button.TextColor
diff --git a/Camera.html b/Camera.html
index af28f660..b7f72341 100644
--- a/Camera.html
+++ b/Camera.html
@@ -273,7 +273,7 @@ Camera.Y
diff --git a/Character.html b/Character.html
index a0415cef..b9ee14ad 100644
--- a/Character.html
+++ b/Character.html
@@ -165,6 +165,7 @@
Character.Moving
Character.Name
Character.NormalView
+Character.on
Character.PreviousRoom
Character.Room
Character.ScaleMoveSpeed
@@ -1267,61 +1268,68 @@ Character.NormalView
See also: Character.ChangeView
, Character.View
+
+Character.on
+int Character.on
+Gets/sets whether the character is enabled and visible. This lets you disable any character anytime, including player character. When disabled a character will not be drawn on screen and not updated (not animating, not moving, etc). Disabled characters may still be modified and have their coordinates changed by setting their corresponding properties directly, and also moved to another room with ChangeRoom function.
+Rooms have a property called "ShowPlayerCharacter", which is enabled by default. If this property is disabled, then player character will have their on
property set to 0 when such room is loaded, and restored it to 1 when leaving that room.
+
+
Character.PreviousRoom
(Formerly known as character[].prevroom
, which is now obsolete)
-readonly int Character.PreviousRoom
+readonly int Character.PreviousRoom
Gets the room number that the character was previously in. If the character is still in the room that they started in, this will be -1. Otherwise, it will be the room number of the room that they were last in.
This is a read-only property. It is set automatically by ChangeRoom
.
Example:
-Display("EGO's previous room was %d.", cEgo.PreviousRoom);
+Display("EGO's previous room was %d.", cEgo.PreviousRoom);
will display the EGO character's previous room.
Character.Room
(Formerly known as character[].room
, which is now obsolete)
-readonly int Character.Room
+readonly int Character.Room
Gets the room number that the character is currently in.
This is a read-only property. It is set by ChangeRoom
.
Example:
-Display("EGO is in room %d.", cEgo.Room);
+Display("EGO is in room %d.", cEgo.Room);
will display the EGO character's current room.
Character.ScaleMoveSpeed
(Formerly part of SetCharacterProperty
, which is now obsolete)
-bool Character.ScaleMoveSpeed
+bool Character.ScaleMoveSpeed
Gets/sets whether the character's movement speed is adjusted in line with his current scaling level. This allows you to modify the "Adjust speed with scaling" option from the editor.
If you set this to true, the character's movement speed will be adjusted so that he walks at a speed relative to his current scaling level. If you set this to false, the character will always just move at his normal speed.
Example:
-.ScaleMoveSpeed = true; cEgo
+.ScaleMoveSpeed = true; cEgo
will mean that EGO's speed is adjusted in line with his scaling
See also: Character.ScaleVolume
Character.ScaleVolume
-bool Character.ScaleVolume
+bool Character.ScaleVolume
Gets/sets whether the character's volume is adjusted in line with his current scaling level. This allows you to modify the "Adjust volume with scaling" option from the editor.
By default, this is false. If you set it to true, then any frame-linked sounds for the character (for example, footstep sounds) will have their volume automatically adjusted in line with the character's scaling level. At the normal 100%
zoom level the sounds will be played at normal volume, but will then get quieter and louder as appropriate in scaled walkable areas.
NOTE: all the volume properties in Character act as relative factors: these are AnimationVolume
, "volume" parameter of Animate
function, and character's scale if ScaleVolume
is also set. The final frame sound's volume will be equal to sound volume * AnimationVolume % * scaled volume %
in case of a normal view animation (walking, talking, etc), and sound volume * AnimationVolume % * scaled volume % * Animate's volume param %
when Animate
is called.
Example:
-.ScaleVolume = true; cEgo
+.ScaleVolume = true; cEgo
will mean that EGO's footstep sounds are adjusted in line with his scaling.
See also: Character.ScaleVolume
, Character.ScaleMoveSpeed
Character.Scaling
-int Character.Scaling
+int Character.Scaling
Gets/sets the character's current scaling level, in percents. The permitted value range is 1 to 32767. A character that has the regular size has this property set to 100.
You can only set the value of this property if ManualScaling
is enabled for the character; otherwise, the scaling is determined automatically based on the walkable area that the character is on.
This property returns the actual current scaling at any given moment, whether it was set by you or acquired from the walkable area.
Example:
-.ManualScaling = true;
- cEgo.Scaling = 50; cEgo
+.ManualScaling = true;
+ cEgo.Scaling = 50; cEgo
will tell EGO to ignore walkable area scaling levels and be fixed to 50%
zoom level.
Compatibility: Since AGS 3.6.0 this property's value can be in the range between 1 and 32767. In the previous versions this property could only have values in the range between 5 and 200.
SeeAlso: Character.ManualScaling
@@ -1330,7 +1338,7 @@ Character.Scaling
Character.ScriptName
(Formerly known as character[].scrname
, which is now obsolete)
-readonly String Character.ScriptName
+readonly String Character.ScriptName
Gets the script name of the character, which serves as a unique identifier, as set in the AGS Editor.
This may be useful if you have a pointer to some character stored in your variable, and want to know what it actually is. Normally you don't need a script name, as you have an automatic global variable for each character in the game, but sometimes you may want to save its script name as a text either to display it somewhere for testing purposes, or keep as a reference. You may later use Character.GetByName function to retrieve the character by the previously saved script name.
Compatibility: Supported by AGS 3.6.1 and later versions.
@@ -1340,54 +1348,54 @@ Character.ScriptName
Character.Solid
(Formerly part of SetCharacterProperty
, which is now obsolete)
-bool Character.Solid
+bool Character.Solid
Gets/sets whether the character can be walked through by other characters.
If this is set to true, then the character is solid and will block the path of other characters. If this is set to false, then the character acts like a hologram, and other characters can walk straight through him.
Example:
-.Solid = true; cEgo
+.Solid = true; cEgo
will mean that EGO blocks the path other characters.
See also: Character.BlockingHeight
, Character.BlockingWidth
Character.Speaking
-readonly bool Character.Speaking
+readonly bool Character.Speaking
Returns true if the character is currently talking, or false if not.
This property is read-only. It will only return true for the active talking character; that is, it will not return true for any characters talking with the SayBackground command.
IMPORTANT: Character.Speaking will only return a valid value if the character has a SpeechView set. It will always return false
otherwise, even while the speech text is displayed.
Since this property will only be true while the character is speaking, and speaking is a blocking command, this property will probably only be useful to access from the repeatedly_execute_always or late_repeatedly_execute_always handlers.
Example:
-if ((cEgo.Speaking) && (!cEgo.Animating)) {
-.Animate(3, 5, eRepeat, eNoBlock);
- cEgo}
+if ((cEgo.Speaking) && (!cEgo.Animating)) {
+.Animate(3, 5, eRepeat, eNoBlock);
+ cEgo}
will animate the character using loop 3 while they are talking (only useful with Sierra-style speech).
See also: Character.Animating
, Character.Moving
, Character.Say
, Character.SpeakingFrame
, Character.Thinking
Character.SpeakingFrame
-readonly int Character.SpeakingFrame
+readonly int Character.SpeakingFrame
Returns the current frame number of the character's talking animation. This is useful when using Sierra-style speech, if you want to synchronize events with the progress of the close-up face talking animation.
This property is read-only. It is only accessible while the character is speaking; if you attempt to call it when Character.Speaking
is false then it will raise an error.
Since speaking is a blocking command, this property will probably only be useful access from the repeatedly_execute_always or late_repeatedly_execute_always handlers.
Example:
-if (cEgo.Speaking) {
-if (cEgo.SpeakingFrame == 0) {
- .Move(cMan.x + 10, cMan.y, eNoBlock, eAnywhere);
- cMan}
- }
+if (cEgo.Speaking) {
+if (cEgo.SpeakingFrame == 0) {
+ .Move(cMan.x + 10, cMan.y, eNoBlock, eAnywhere);
+ cMan}
+ }
will move cMan to the right every time the talking animation loops back to Frame 0.
See also: Character.Say
, Character.Speaking
Character.SpeechAnimationDelay
-int Character.SpeechAnimationDelay;
+int Character.SpeechAnimationDelay;
Gets/sets the character's speech animation delay, as set in the editor. This specifies how many game loops each frame of the character's speech animation is shown for.
NOTE: This property is ignored if lip sync is enabled.
NOTE: This property cannot be used if the Speech.UseGlobalSpeechAnimationDelay is set to true. In that case, the Speech.GlobalSpeechAnimationDelay property value is used instead.
Example:
-player.SpeechAnimationDelay = 4;
+player.SpeechAnimationDelay = 4;
will change the player character's speech animation speed to 4.
Compatibility: Supported by AGS 3.1.2 and later versions.
See also: Character.AnimationSpeed
, Character.SpeechView
, Game.TextReadingSpeed
, Speech.GlobalSpeechAnimationDelay
, Speech.UseGlobalSpeechAnimationDelay
,
@@ -1396,11 +1404,11 @@ Character.SpeechAnimationDela
Character.SpeechColor
(Formerly known as SetTalkingColor
, which is now obsolete)
-int Character.SpeechColor
+int Character.SpeechColor
Gets/sets the character's speech text color. This is set by default in the editor.
NEWCOLOR is the color slot index from the Palette Editor. This can be 0-255 for a 256-color game, or one of the hi-color indexes available from the Palette Editor.
Example:
-.SpeechColor = 14; cEgo
+.SpeechColor = 14; cEgo
will change the character's EGO talking color to yellow.
See also: Character.SpeechView
@@ -1408,29 +1416,29 @@ Character.SpeechColor
Character.SpeechView
(Formerly known as SetCharacterSpeechView
, which is now obsolete)
(Formerly known as character[].talkview
, which is now obsolete)
-int Character.SpeechView
+int Character.SpeechView
Gets/sets the character's talking view. If you change it, the new view number will be used as the character's talking view in all future conversations.
You can set this to -1 to disable the character's speech view.
Example:
-.SpeechView = 10; cEgo
+.SpeechView = 10; cEgo
will change the character EGO's speech view to view 10.
See also: Character.ChangeView
, Character.BlinkView
, Character.SpeechAnimationDelay
, Character.SpeechColor
Character.Thinking
-readonly bool Character.Thinking
+readonly bool Character.Thinking
Returns true if the character is currently thinking, or false if not.
This property is read-only. It will only return true for the active thinking character.
Since this property will only be true while the character is thinking, and thinking is a blocking command, this property will probably only be useful to access from the repeatedly_execute_always or late_repeatedly_execute_always handlers.
Example:
-function repeatedly_execute_always()
-{
-if (cEgo.Thinking)
- .Transparency = 50;
- cEgoelse
- .Transparency = 0;
- cEgo}
+function repeatedly_execute_always()
+{
+if (cEgo.Thinking)
+ .Transparency = 50;
+ cEgoelse
+ .Transparency = 0;
+ cEgo}
this will keep character semi-transparent while he is thinking.
Compatibility: Supported by AGS 3.3.4 and later versions.
See also: Character.Animating
, Character.Moving
, Character.Speaking
Character.Think
, Character.ThinkingFrame
,
@@ -1438,16 +1446,16 @@ Character.Thinking
Character.ThinkingFrame
-readonly int Character.ThinkingFrame
+readonly int Character.ThinkingFrame
Returns the current frame number of the character's thinking animation. This is useful when using Sierra-style speech, if you want to synchronize events with the progress of the close-up face talking animation.
This property is read-only. It is only accessible while the character is thinking; if you attempt to call it when Character.Thinking
is false then it will raise an error.
Since thinking is a blocking command, this property will probably only be useful access from the repeatedly_execute_always or late_repeatedly_execute_always handlers.
Example:
-if (cEgo.Thinking) {
-if (cEgo.ThinkingFrame == 0) {
- .Move(cMan.x + 10, cMan.y, eNoBlock, eAnywhere);
- cMan}
- }
+if (cEgo.Thinking) {
+if (cEgo.ThinkingFrame == 0) {
+ .Move(cMan.x + 10, cMan.y, eNoBlock, eAnywhere);
+ cMan}
+ }
will move cMan to the right every time the thinking animation loops back to Frame 0.
Compatibility: Supported by AGS 3.3.4 and later versions.
See also: Character.Think
, Character.Thinking
@@ -1456,10 +1464,10 @@ Character.ThinkingFrame
Character.ThinkView
(Formerly known as character[].thinkview
, which is now obsolete)
-int Character.ThinkView
+int Character.ThinkView
Gets/sets the character's thinking view. This is used to animate the character when a thought is being displayed.
Example:
-.ThinkView = 14; cEgo
+.ThinkView = 14; cEgo
will change the character EGO's thinking view to 14.
See also: Character.Think
@@ -1467,19 +1475,19 @@ Character.ThinkView
Character.Transparency
(Formerly known as SetCharacterTransparency
, which is now obsolete)
-int Character.Transparency
+int Character.Transparency
Gets/sets the character's transparency. This is specified as a percentage, from 0 to 100. 100 means fully transparent (i.e. invisible), and 0 is totally opaque (fully visible). Numbers in between represent varying levels of transparency.
NOTE: Transparency only works in 16-bit and 32-bit color games.
NOTE: When using the DirectX 5 driver, a large transparent character can significantly slow down AGS.
Some rounding is done internally when the transparency is stored -- therefore, if you get the transparency after setting it, the value you get back might be one out. Therefore, using a loop with cEgo.Transparency++;
is not recommended as it will probably end too quickly.
In order to fade a character in, the best approach is shown in the example below:
Example:
-int trans = cEgo.Transparency;
-while (trans < 100) {
-++;
- trans.Transparency = trans;
- cEgoWait(1);
- }
+int trans = cEgo.Transparency;
+while (trans < 100) {
+++;
+ trans.Transparency = trans;
+ cEgoWait(1);
+ }
will gradually fade out the character from its current transparency level to being fully invisible.
See also: Object.Transparency
@@ -1487,79 +1495,79 @@ Character.Transparency
Character.TurnBeforeWalking
(Formerly part of SetCharacterProperty
, which is now obsolete)
-bool Character.TurnBeforeWalking
+bool Character.TurnBeforeWalking
Gets/sets whether the character turns to face his new direction before walking. This is equivalent (though opposite) to the editor "Do not turn before walking" tick-box.
If you set this to 1, the character will turn on the spot to face his new direction before setting off on a walk. If you set this to 0, the character will instantly face in the correct direction and start walking.
Example:
-.TurnBeforeWalking = 1; cEgo
+.TurnBeforeWalking = 1; cEgo
will tell EGO to turn to face his new direction before setting off, whenever he walks.
Character.View
-readonly int Character.View
+readonly int Character.View
Gets the view that the character is currently displayed using.
This property is read-only; to change the view, use the ChangeView and LockView functions.
Example:
-Display("EGO's view is currently view %d.", cEgo.View);
+Display("EGO's view is currently view %d.", cEgo.View);
will display EGO's current view number.
SeeAlso: Character.ChangeView
, Character.Frame
, Character.LockView
, Character.Loop
, Character.NormalView
Character.WalkSpeedX
-readonly int Character.WalkSpeedX;
+readonly int Character.WalkSpeedX;
Gets the character's walking speed in the X direction. If using uniform movement, this will be the same as the Y walking speed.
This property is read-only. To change the walking speed, use the SetWalkSpeed function.
Example:
-Display("player's x speed: %d", player.WalkSpeedX);
+Display("player's x speed: %d", player.WalkSpeedX);
will display the player's X speed.
See also: Character.SetWalkSpeed
, Character.WalkSpeedY
Character.WalkSpeedY
-readonly int Character.WalkSpeedY;
+readonly int Character.WalkSpeedY;
Gets the character's walking speed in the Y direction. If using uniform movement, this will be the same as the X walking speed.
This property is read-only. To change the walking speed, use the SetWalkSpeed function.
Example:
-Display("player's y speed: %d", player.WalkSpeedY);
+Display("player's y speed: %d", player.WalkSpeedY);
will display the player's Y speed.
See also: Character.SetWalkSpeed
, Character.WalkSpeedX
Character.x
-int Character.x;
+int Character.x;
Gets/sets the character's current X co-ordinate. This is expressed in normal room co-ordinates, and specifies the bottom-center of the character's sprite.
NOTE: Do NOT change this property while the character is moving. Make sure the character is standing still before changing his co-ordinates.
Example:
-Display("The player is at %d,%d.", player.x, player.y);
+Display("The player is at %d,%d.", player.x, player.y);
displays the player character's current coordinates.
See also: Character.y
, Character.z
Character.y
-int Character.y;
+int Character.y;
Gets/sets the character's current Y co-ordinate. This is expressed in normal room co-ordinates, and specifies the bottom-center of the character's sprite.
NOTE: Do NOT change this property while the character is moving. Make sure the character is standing still before changing his co-ordinates.
Example:
-Display("The player is at %d,%d.", player.x, player.y);
+Display("The player is at %d,%d.", player.x, player.y);
displays the player character's current coordinates.
See also: Character.x
, Character.z
Character.z
-int Character.z;
+int Character.z;
Gets/sets the character's current Z position. This allows the character to levitate off the ground, whilst still retaining its normal Y co-ordinate for baseline calculations and regions.
Normally this is set to 0 (ground-level), but you can increase it to make the character float.
Example:
-while (player.z < 20) {
-player.z++;
- Wait(1);
- }
+while (player.z < 20) {
+player.z++;
+ Wait(1);
+ }
gradually levitates the character up to 20 pixels.
See also: Character.x
, Character.y
@@ -1570,7 +1578,7 @@ Character.z
diff --git a/ColoursEditor.html b/ColoursEditor.html
index 9dcd196b..036511e8 100644
--- a/ColoursEditor.html
+++ b/ColoursEditor.html
@@ -114,7 +114,7 @@ Palette setup
diff --git a/Constants.html b/Constants.html
index bad33552..ee93c05a 100644
--- a/Constants.html
+++ b/Constants.html
@@ -273,7 +273,7 @@ Script API levels
diff --git a/ContactingTheDevelopers.html b/ContactingTheDevelopers.html
index 7856fb33..7cf63d8f 100644
--- a/ContactingTheDevelopers.html
+++ b/ContactingTheDevelopers.html
@@ -114,7 +114,7 @@ Contacting the developers
diff --git a/Copyright.html b/Copyright.html
index 75a8a4c1..98cb2c4a 100644
--- a/Copyright.html
+++ b/Copyright.html
@@ -114,7 +114,7 @@ Copyright and terms of use
diff --git a/Credits.html b/Credits.html
index ef396977..36eeee66 100644
--- a/Credits.html
+++ b/Credits.html
@@ -167,7 +167,7 @@ Credits
diff --git a/CustomDialogOptions.html b/CustomDialogOptions.html
index c9af8e74..158493f9 100644
--- a/CustomDialogOptions.html
+++ b/CustomDialogOptions.html
@@ -317,7 +317,7 @@ Example B. Keyboard controls
diff --git a/CustomProperties.html b/CustomProperties.html
index 6f2daf0e..25face8f 100644
--- a/CustomProperties.html
+++ b/CustomProperties.html
@@ -118,7 +118,7 @@ Custom Properties
diff --git a/DateTime.html b/DateTime.html
index 5a0df1ef..96ed220a 100644
--- a/DateTime.html
+++ b/DateTime.html
@@ -186,7 +186,7 @@ DateTime.Year
diff --git a/Debuggingfeatures.html b/Debuggingfeatures.html
index 1ee3ff6c..964bd6bc 100644
--- a/Debuggingfeatures.html
+++ b/Debuggingfeatures.html
@@ -138,7 +138,7 @@ Current room information
diff --git a/DefaultSetup.html b/DefaultSetup.html
index d45dcbeb..b42dc11c 100644
--- a/DefaultSetup.html
+++ b/DefaultSetup.html
@@ -211,7 +211,7 @@ Mouse
diff --git a/Dialog.html b/Dialog.html
index 49b5eee0..a49a520d 100644
--- a/Dialog.html
+++ b/Dialog.html
@@ -316,7 +316,7 @@ StopDialog
diff --git a/DialogOptionsRenderingInfo.html b/DialogOptionsRenderingInfo.html
index f0dbdbc5..c72b5cb3 100644
--- a/DialogOptionsRenderingInfo.html
+++ b/DialogOptionsRenderingInfo.html
@@ -328,7 +328,7 @@ DialogOptionsRenderingInfo.Y
Third-party JavaScript licensing
- Build: ca76d03a2b97b7d9ce195cbd84709bc52571db7d
+ Build: 4398a3c37c2246b5cdd9c839989b262cd2d6b40b
diff --git a/DialogScript.html b/DialogScript.html
index ed3d7a4f..37e9962a 100644
--- a/DialogScript.html
+++ b/DialogScript.html
@@ -168,7 +168,7 @@ Using regular scripti
diff --git a/Dictionary.html b/Dictionary.html
index 76803bd4..10bcba48 100644
--- a/Dictionary.html
+++ b/Dictionary.html
@@ -231,7 +231,7 @@ Dictionary.SortStyle
diff --git a/DistGame.html b/DistGame.html
index 8ddfedcb..ccd40e23 100644
--- a/DistGame.html
+++ b/DistGame.html
@@ -191,7 +191,7 @@ Managing the Audio Footprint
Third-party JavaScript licensing
- Build: ca76d03a2b97b7d9ce195cbd84709bc52571db7d
+ Build: 4398a3c37c2246b5cdd9c839989b262cd2d6b40b
diff --git a/DrawingSurface.html b/DrawingSurface.html
index 7bbf0857..c6a532f6 100644
--- a/DrawingSurface.html
+++ b/DrawingSurface.html
@@ -406,7 +406,7 @@ DrawingSurface.Width
diff --git a/DynamicArrays.html b/DynamicArrays.html
index 1e19e02a..0a110a09 100644
--- a/DynamicArrays.html
+++ b/DynamicArrays.html
@@ -186,7 +186,7 @@ Deleting dynamic array
diff --git a/DynamicSprite.html b/DynamicSprite.html
index d1643d6c..0ee8f735 100644
--- a/DynamicSprite.html
+++ b/DynamicSprite.html
@@ -515,7 +515,7 @@ DynamicSprite.Width
diff --git a/EditorCharacter.html b/EditorCharacter.html
index 1000f3db..ef5822f7 100644
--- a/EditorCharacter.html
+++ b/EditorCharacter.html
@@ -103,7 +103,7 @@ Character Editor
diff --git a/EditorCommandLineOptions.html b/EditorCommandLineOptions.html
index 2eaaf6bd..d8325789 100644
--- a/EditorCommandLineOptions.html
+++ b/EditorCommandLineOptions.html
@@ -121,7 +121,7 @@ Compile Flag
diff --git a/EditorCursor.html b/EditorCursor.html
index 8affd539..8bf687f0 100644
--- a/EditorCursor.html
+++ b/EditorCursor.html
@@ -114,7 +114,7 @@ Cursor Editor
diff --git a/EditorDialog.html b/EditorDialog.html
index 93d26d46..37b7c747 100644
--- a/EditorDialog.html
+++ b/EditorDialog.html
@@ -106,7 +106,7 @@ Dialog Editor
diff --git a/EditorFont.html b/EditorFont.html
index 9b4c7d6a..000f2eb2 100644
--- a/EditorFont.html
+++ b/EditorFont.html
@@ -110,7 +110,7 @@ Font Preview
diff --git a/EditorGUI.html b/EditorGUI.html
index f4a5eef2..56ce7cb4 100644
--- a/EditorGUI.html
+++ b/EditorGUI.html
@@ -211,7 +211,7 @@ Customized Text Windows
Custom inventory
Another option you may have noticed in the GUI editor is the Add Inventory button. This allows you to drag out a rectangle which will display the player's current inventory, in the same way as the LucasArts games did. To make the inventory window scrollable, you will need to add Up and Down arrow buttons, and attach script code to those buttons to use the available functions such as InvWindow.ScrollUp
and InvWindow.ScrollDown
.
-To see a full list of commands available for inventory windows, see the GUI Inv Window Functions and Properties section.
+To see a full list of commands available for inventory windows, see the GUI Inv Window Functions and Properties section.
@@ -244,7 +244,7 @@ List Boxes
diff --git a/EditorInventoryItems.html b/EditorInventoryItems.html
index a8d020eb..5d882709 100644
--- a/EditorInventoryItems.html
+++ b/EditorInventoryItems.html
@@ -152,7 +152,7 @@ Properties
diff --git a/EditorLogPanel.html b/EditorLogPanel.html
index 63dc27fd..eb1f1272 100644
--- a/EditorLogPanel.html
+++ b/EditorLogPanel.html
@@ -112,7 +112,7 @@ Log Panel
diff --git a/EditorPlugins.html b/EditorPlugins.html
index 4036e988..19d8be70 100644
--- a/EditorPlugins.html
+++ b/EditorPlugins.html
@@ -138,7 +138,7 @@ Components
diff --git a/EditorPreferences.html b/EditorPreferences.html
index 51dba584..098d8272 100644
--- a/EditorPreferences.html
+++ b/EditorPreferences.html
@@ -189,7 +189,7 @@ Test Game
diff --git a/EditorRoom.html b/EditorRoom.html
index 7c1ede8f..fe3b0875 100644
--- a/EditorRoom.html
+++ b/EditorRoom.html
@@ -90,6 +90,7 @@
Background
Edit this room's control
Properties control
+Room Properties
Edges
Objects
Characters
@@ -111,7 +112,7 @@ Room Editor
...and more!
NOTE: Currently only one room can be open for editing at a time
-![Editor Room](images/EditorRoom_1.png
+
Controls
Pan
@@ -151,6 +152,19 @@ Properties control
The list button switches the control to show Properties and the button with a lighting bolt on it switches the control to show Events. Both can be navigated either in categorical order or alphabetical order.
Positional changes on the properties of an element (e.g. its x or y position) will instantly be updated in the room area, which is useful for pixel positioning.
+
+Room Properties
+
+- Description - this is an optional room description, which may also serve as a room's name.
+- Number - room's number is it's ID. Changing this property will renumber the room and rename its files.
+- BackgroundAnimationDelay - the delay between room background frames switch, in game ticks. This value only has a meaning when room has multiple backgrounds, and BackgroundAnimationEnabled is turned on.
+- BackgroundAnimationEnabled - whether the background frames will switch automatically over time. This value only has a meaning when room has multiple backgrounds.
+- MaskResolution - defines the ratio of masks (walkable, hotspot and region) vs room background size. Default is 1:1, but few other choice are available, like 1:2, 1:3 and 1:4. The higher the last number is, the less precise the mask is. This setting exists mostly for the backwards compatibility, or for exotic scenarios where you may want to have hotspot or walkable area to have lower resolution than the room itself. Note that walk-behind mask is not affected by this, and always has 1:1 ratio with the room background.
+- PlayerCharacterView - when set to a non-zero value, the player character will be changed to this View when the room is loaded. Note that you may also use script command "ChangeView" for the same purpose.
+- Properties - lets you configure room's Custom Properties. Please see respective topic for more information on this subject.
+- ShowPlayerCharacter - if set to FALSE, then the player character will be disabled (turned invisible and immobile) when the room is loaded. Also the standard "WalkTo" cursor mode will be disabled. Note that you may achieve similar effect using property "Character.on" and function "Mouse.DisableMode" in script.
+
+
Edges
Edges are moved by clicking and dragging them, once their layer is selected. If you have trouble locating them, the properties which correspond to each edge's position are:
@@ -183,7 +197,7 @@ Room m
diff --git a/EditorSprite.html b/EditorSprite.html
index 4418d81c..41ace6b3 100644
--- a/EditorSprite.html
+++ b/EditorSprite.html
@@ -151,7 +151,7 @@ Sprite Storage
diff --git a/EditorView.html b/EditorView.html
index 1db46ed2..54de0050 100644
--- a/EditorView.html
+++ b/EditorView.html
@@ -160,7 +160,7 @@ Properties
diff --git a/EngineConfigFile.html b/EngineConfigFile.html
index 6fa3ae01..eef801bb 100644
--- a/EngineConfigFile.html
+++ b/EngineConfigFile.html
@@ -287,8 +287,11 @@ Configuration file options
[disabled] - special instructions for the setup program hinting to disable particular options or lock some in the certain state. Ignored by the engine.
+gfxdrivers = [0; 1]
- tells to lock "Graphics driver" selection in a default state;
+<gfxdriver id> = [0; 1]
- tells to remove particular graphics driver from the selection list;
filters = [0; 1]
- tells to lock "Graphics filter" selection at the value set in the config file;
-<filter id>
- tells to remove particular graphics filter from the selection list;
+<filter id> = [0; 1]
- tells to remove particular graphics filter from the selection list;
+fullscreen = [0; 1]
- tells to disable fullscreen desktop checkbox and fullscreen mode selection list;
antialias = [0; 1]
- tells to lock "Smooth scaled sprites" selection at the value set in the config file;
render_at_screenres = [0; 1]
- tells to lock "Render sprites in screen resolution" selection at the value set in the config file;
speechvox = [0; 1]
- tells to lock "Use digital speech pack" selection at the value set in the config file;
@@ -303,7 +306,7 @@ Configuration file options
diff --git a/EnginePluginDesign-timeAPI.html b/EnginePluginDesign-timeAPI.html
index f7def651..08fe4e11 100644
--- a/EnginePluginDesign-timeAPI.html
+++ b/EnginePluginDesign-timeAPI.html
@@ -199,7 +199,7 @@ IAGSEditor.UnregisterScriptHeader
diff --git a/EnginePluginRun-timeAPI.html b/EnginePluginRun-timeAPI.html
index 8eb5dcda..0c858ea6 100644
--- a/EnginePluginRun-timeAPI.html
+++ b/EnginePluginRun-timeAPI.html
@@ -1371,7 +1371,7 @@ IAGSStream.Dispose
diff --git a/EnginePlugins.html b/EnginePlugins.html
index c3cdfad2..08b05494 100644
--- a/EnginePlugins.html
+++ b/EnginePlugins.html
@@ -114,7 +114,7 @@ Engine Plugins
diff --git a/EventTypes.html b/EventTypes.html
index e3433936..27628c13 100644
--- a/EventTypes.html
+++ b/EventTypes.html
@@ -271,7 +271,7 @@ Region events
diff --git a/ExtenderFunctions.html b/ExtenderFunctions.html
index 554db3ca..877ddf1d 100644
--- a/ExtenderFunctions.html
+++ b/ExtenderFunctions.html
@@ -145,7 +145,7 @@ Static extenders
diff --git a/FAQ.html b/FAQ.html
index bac6d08e..9b38ebca 100644
--- a/FAQ.html
+++ b/FAQ.html
@@ -121,6 +121,9 @@ Frequently Asked Questions
- Alternatively, if you are creating many GUIs, check if you have created a transparent, clickable GUI that is on top of the GUI you are clicking.
+Q. Mouse clicks do not seem to work in my game, no matter what I click on!
+A. Make sure that there's no big transparent GUI covering the game screen. In AGS transparent pixels on GUIs do not let clicks through, unless you set that GUI's Clickable property to "false". If that's the case, but that GUI has interactive controls on it (such as buttons), then either shrink GUI to only have enough size for those controls to fit, or make several smaller GUIs and organize controls on them.
+
Q. When I enter a certain room, I just get a black screen.
A. Make sure that you haven't used a blocking script command such as "Display", "Character.Say", "Character.Walk" or similar in the "Enters room before fade-in" event for that room. Remember that this event happens BEFORE the screen fades in.
To make sure, when you get the black screen, try pressing enter, or clicking the left mouse button. If nothing happens then something more serious may have happened. If this is the case, while running the game from the Editor, switch to the Editor and click on "Pause" button on toolbar: that will stop game execution and may allow you to trace which line of script it has stuck on.
@@ -177,7 +180,7 @@ Frequently Asked Questions
diff --git a/File.html b/File.html
index 3254deef..39970584 100644
--- a/File.html
+++ b/File.html
@@ -446,7 +446,7 @@ File.Position
diff --git a/GUI.html b/GUI.html
index e0b6373b..3b7a36f3 100644
--- a/GUI.html
+++ b/GUI.html
@@ -471,7 +471,7 @@ GUI.ZOrder
diff --git a/GUIControl.html b/GUIControl.html
index ab5ae054..56875008 100644
--- a/GUIControl.html
+++ b/GUIControl.html
@@ -413,7 +413,7 @@ GUIControl.ZOrder
diff --git a/Game.html b/Game.html
index 79210d04..fab03a90 100644
--- a/Game.html
+++ b/Game.html
@@ -825,7 +825,7 @@ Game.BlockingWaitSkipped
diff --git a/GameEventsOrder.html b/GameEventsOrder.html
index 84540c6e..2fbad975 100644
--- a/GameEventsOrder.html
+++ b/GameEventsOrder.html
@@ -112,7 +112,7 @@ Game events order
diff --git a/GameSavesCompatibility.html b/GameSavesCompatibility.html
index e129ee43..4c5eaddd 100644
--- a/GameSavesCompatibility.html
+++ b/GameSavesCompatibility.html
@@ -333,7 +333,7 @@ Solution
diff --git a/Gamevariables.html b/Gamevariables.html
index 4aa36307..72df1d62 100644
--- a/Gamevariables.html
+++ b/Gamevariables.html
@@ -291,7 +291,7 @@ Game variables
diff --git a/GeneralSettings.html b/GeneralSettings.html
index 333120f1..b5fd8f92 100644
--- a/GeneralSettings.html
+++ b/GeneralSettings.html
@@ -300,7 +300,7 @@ Visual
diff --git a/GlobalArrays.html b/GlobalArrays.html
index cb071455..e590e1be 100644
--- a/GlobalArrays.html
+++ b/GlobalArrays.html
@@ -163,7 +163,7 @@ Global Arrays
diff --git a/GlobalVariables.html b/GlobalVariables.html
index aac5c3f8..9edfd6f9 100644
--- a/GlobalVariables.html
+++ b/GlobalVariables.html
@@ -117,7 +117,7 @@ Global variables
diff --git a/Globalfunctions_Event.html b/Globalfunctions_Event.html
index e196169b..462f783b 100644
--- a/Globalfunctions_Event.html
+++ b/Globalfunctions_Event.html
@@ -434,7 +434,7 @@ on_call
diff --git a/Globalfunctions_General.html b/Globalfunctions_General.html
index de86eb69..45cd4c28 100644
--- a/Globalfunctions_General.html
+++ b/Globalfunctions_General.html
@@ -994,7 +994,7 @@ UnPauseGame
diff --git a/Globalfunctions_Message.html b/Globalfunctions_Message.html
index b99a6481..fbec24f1 100644
--- a/Globalfunctions_Message.html
+++ b/Globalfunctions_Message.html
@@ -181,7 +181,7 @@ DisplayTopBar
diff --git a/Globalfunctions_Palette.html b/Globalfunctions_Palette.html
index d508d1f0..fe183607 100644
--- a/Globalfunctions_Palette.html
+++ b/Globalfunctions_Palette.html
@@ -137,7 +137,7 @@ UpdatePalette
diff --git a/Globalfunctions_Room.html b/Globalfunctions_Room.html
index ffed5597..f188c73a 100644
--- a/Globalfunctions_Room.html
+++ b/Globalfunctions_Room.html
@@ -360,7 +360,7 @@ SetWalkBehindBase
diff --git a/Globalfunctions_Screen.html b/Globalfunctions_Screen.html
index c6161605..16bec700 100644
--- a/Globalfunctions_Screen.html
+++ b/Globalfunctions_Screen.html
@@ -246,7 +246,7 @@ TintScreen
diff --git a/Globalfunctions_Wait.html b/Globalfunctions_Wait.html
index 3995c1a2..b36c3c8e 100644
--- a/Globalfunctions_Wait.html
+++ b/Globalfunctions_Wait.html
@@ -251,7 +251,7 @@ WaitMouse
diff --git a/GraphicsDriver.html b/GraphicsDriver.html
index c0fc6e80..72f3cf13 100644
--- a/GraphicsDriver.html
+++ b/GraphicsDriver.html
@@ -114,7 +114,7 @@ System Requirements
diff --git a/Hotspot.html b/Hotspot.html
index 38293413..e3238e64 100644
--- a/Hotspot.html
+++ b/Hotspot.html
@@ -329,7 +329,7 @@ Hotspot.WalkToY
diff --git a/ImportingFunctionsAndVariables.html b/ImportingFunctionsAndVariables.html
index 307be4c3..200e2f41 100644
--- a/ImportingFunctionsAndVariables.html
+++ b/ImportingFunctionsAndVariables.html
@@ -151,7 +151,7 @@ Exporting and importing a vari
diff --git a/Introduction.html b/Introduction.html
index c0fc024e..f4afd2a7 100644
--- a/Introduction.html
+++ b/Introduction.html
@@ -119,7 +119,7 @@ Installing AGS
diff --git a/InvWindow.html b/InvWindow.html
index 83ce2c5f..7ebb9283 100644
--- a/InvWindow.html
+++ b/InvWindow.html
@@ -230,7 +230,7 @@ InvWindow.TopItem
diff --git a/InventoryItem.html b/InventoryItem.html
index ebf37e27..44e68390 100644
--- a/InventoryItem.html
+++ b/InventoryItem.html
@@ -289,7 +289,7 @@ InventoryItem.ScriptName
diff --git a/KeyboardShortcuts.html b/KeyboardShortcuts.html
index 41ee902f..d4535214 100644
--- a/KeyboardShortcuts.html
+++ b/KeyboardShortcuts.html
@@ -336,7 +336,7 @@ Keyboard Shortcuts
diff --git a/Keycodes.html b/Keycodes.html
index 996150f1..6f3c57ea 100644
--- a/Keycodes.html
+++ b/Keycodes.html
@@ -828,7 +828,7 @@ Key modifiers
diff --git a/Label.html b/Label.html
index 3c166522..48910724 100644
--- a/Label.html
+++ b/Label.html
@@ -185,7 +185,7 @@ Label.TextColor
diff --git a/Lipsync.html b/Lipsync.html
index c313d497..f6cb1b36 100644
--- a/Lipsync.html
+++ b/Lipsync.html
@@ -152,7 +152,7 @@ Papagayo
diff --git a/ListBox.html b/ListBox.html
index fbdf604a..6bc6d056 100644
--- a/ListBox.html
+++ b/ListBox.html
@@ -409,7 +409,7 @@ ListBox.Translated
diff --git a/MIDI-playback.html b/MIDI-playback.html
index fbacd6f7..45872b6e 100644
--- a/MIDI-playback.html
+++ b/MIDI-playback.html
@@ -130,7 +130,7 @@ How to configure Timidity
diff --git a/Maths.html b/Maths.html
index ff714331..442c76bb 100644
--- a/Maths.html
+++ b/Maths.html
@@ -373,7 +373,7 @@ Maths.Pi
diff --git a/Mouse.html b/Mouse.html
index aa5545f2..e770ac31 100644
--- a/Mouse.html
+++ b/Mouse.html
@@ -385,7 +385,7 @@ Mouse.Visible
diff --git a/Multimedia.html b/Multimedia.html
index c1a90c90..73a65ac7 100644
--- a/Multimedia.html
+++ b/Multimedia.html
@@ -221,7 +221,7 @@ SetSpeechVolume
diff --git a/MultipleScripts.html b/MultipleScripts.html
index 0f72f78b..a87c7bea 100644
--- a/MultipleScripts.html
+++ b/MultipleScripts.html
@@ -124,7 +124,7 @@ Multiple Scripts
diff --git a/MusicAndSound.html b/MusicAndSound.html
index c990cba9..abef49d8 100644
--- a/MusicAndSound.html
+++ b/MusicAndSound.html
@@ -215,7 +215,7 @@ The AudioCache folder
diff --git a/OOProgramming.html b/OOProgramming.html
index 5ac9a13b..5ea611c8 100644
--- a/OOProgramming.html
+++ b/OOProgramming.html
@@ -278,7 +278,7 @@ Static attributes
diff --git a/Object.html b/Object.html
index 223ea27c..3fef0150 100644
--- a/Object.html
+++ b/Object.html
@@ -791,7 +791,7 @@ Object.Y
diff --git a/ObsoleteScriptAPI.html b/ObsoleteScriptAPI.html
index c6a1257c..fd41ea1d 100644
--- a/ObsoleteScriptAPI.html
+++ b/ObsoleteScriptAPI.html
@@ -1850,7 +1850,7 @@ Obsolete Script API
diff --git a/OtherFeatures.html b/OtherFeatures.html
index a32564b1..2262ea30 100644
--- a/OtherFeatures.html
+++ b/OtherFeatures.html
@@ -116,7 +116,7 @@ Other Features
diff --git a/Overlay.html b/Overlay.html
index 21fc116d..7b1e340d 100644
--- a/Overlay.html
+++ b/Overlay.html
@@ -324,7 +324,7 @@ Overlay.ZOrder
diff --git a/Parser.html b/Parser.html
index 3bf5ee70..a025b093 100644
--- a/Parser.html
+++ b/Parser.html
@@ -162,7 +162,7 @@ Parser.SaidUnknownWord
Third-party JavaScript licensing
- Build: ca76d03a2b97b7d9ce195cbd84709bc52571db7d
+ Build: 4398a3c37c2246b5cdd9c839989b262cd2d6b40b
diff --git a/Plugins.html b/Plugins.html
index 5f154e49..ce3e7fbc 100644
--- a/Plugins.html
+++ b/Plugins.html
@@ -137,7 +137,7 @@ Creating Plugins
diff --git a/Pointers.html b/Pointers.html
index 63c3339c..9bf538c0 100644
--- a/Pointers.html
+++ b/Pointers.html
@@ -183,7 +183,7 @@ Pointers for people who know
diff --git a/Preprocessor.html b/Preprocessor.html
index 696acf16..c5421018 100644
--- a/Preprocessor.html
+++ b/Preprocessor.html
@@ -187,7 +187,7 @@ Deprecated commands
diff --git a/Region.html b/Region.html
index 72ec24b1..a512d15f 100644
--- a/Region.html
+++ b/Region.html
@@ -311,7 +311,7 @@ Region.TintLuminance
diff --git a/RepExec.html b/RepExec.html
index 8f6d2393..ca346b1e 100644
--- a/RepExec.html
+++ b/RepExec.html
@@ -159,7 +159,7 @@ repeatedly_execute (_always)
diff --git a/Room.html b/Room.html
index c45d4a8d..0db21ecf 100644
--- a/Room.html
+++ b/Room.html
@@ -311,7 +311,7 @@ Room.Width
diff --git a/RuntimeEngine.html b/RuntimeEngine.html
index 82e985cf..bdde59c6 100644
--- a/RuntimeEngine.html
+++ b/RuntimeEngine.html
@@ -209,7 +209,7 @@ Command line
diff --git a/Screen.html b/Screen.html
index 701902b3..9b54a889 100644
--- a/Screen.html
+++ b/Screen.html
@@ -187,7 +187,7 @@ Screen.Viewports
diff --git a/ScriptAPIOverview.html b/ScriptAPIOverview.html
index 34c9ba5b..b8080036 100644
--- a/ScriptAPIOverview.html
+++ b/ScriptAPIOverview.html
@@ -119,7 +119,7 @@ API switches
diff --git a/ScriptKeywords.html b/ScriptKeywords.html
index 1459e7ac..13b187f6 100644
--- a/ScriptKeywords.html
+++ b/ScriptKeywords.html
@@ -232,6 +232,16 @@ Operators
a = b - c;
+++
+Increment by 1
+a++;
+
+
+--
+Decrement by 1
+a--;
+
+
<<
Bitwise Left Shift
a = b << c;
@@ -754,7 +764,7 @@ noloopcheck
diff --git a/ScriptModules.html b/ScriptModules.html
index ec7530f6..def1613a 100644
--- a/ScriptModules.html
+++ b/ScriptModules.html
@@ -156,7 +156,7 @@ Writing Script Modules
diff --git a/Scripting.html b/Scripting.html
index c1cbeaae..8edb5aeb 100644
--- a/Scripting.html
+++ b/Scripting.html
@@ -153,7 +153,7 @@ Scripting API
diff --git a/ScriptingLanguage.html b/ScriptingLanguage.html
index afad9683..12b6d36a 100644
--- a/ScriptingLanguage.html
+++ b/ScriptingLanguage.html
@@ -114,7 +114,7 @@ Scripting Language
diff --git a/ScriptingTutorial.html b/ScriptingTutorial.html
index 0f961d74..feb715d7 100644
--- a/ScriptingTutorial.html
+++ b/ScriptingTutorial.html
@@ -103,7 +103,7 @@ Scripting Tutorial
diff --git a/ScriptingTutorialPart1.html b/ScriptingTutorialPart1.html
index d1d2fee3..7bc24a84 100644
--- a/ScriptingTutorialPart1.html
+++ b/ScriptingTutorialPart1.html
@@ -323,7 +323,7 @@ Summary
diff --git a/ScriptingTutorialPart2.html b/ScriptingTutorialPart2.html
index e105a713..686652ca 100644
--- a/ScriptingTutorialPart2.html
+++ b/ScriptingTutorialPart2.html
@@ -274,7 +274,7 @@ Conclusion
diff --git a/Set.html b/Set.html
index 9e258813..ebbd69a3 100644
--- a/Set.html
+++ b/Set.html
@@ -201,7 +201,7 @@ Set.SortStyle
diff --git a/Settingupthegame.html b/Settingupthegame.html
index 7dd5d08d..f9ad62ed 100644
--- a/Settingupthegame.html
+++ b/Settingupthegame.html
@@ -274,7 +274,7 @@ Fonts
diff --git a/Setup.html b/Setup.html
index 51719da7..156becba 100644
--- a/Setup.html
+++ b/Setup.html
@@ -175,7 +175,7 @@ Other advanced settings
diff --git a/Slider.html b/Slider.html
index 26f18405..12c724ac 100644
--- a/Slider.html
+++ b/Slider.html
@@ -179,7 +179,7 @@ Slider.Value
diff --git a/SourceControl.html b/SourceControl.html
index 4f138f46..d012b2ec 100644
--- a/SourceControl.html
+++ b/SourceControl.html
@@ -109,7 +109,7 @@ Source Control integration
diff --git a/Speech.html b/Speech.html
index b159ed21..95c4b826 100644
--- a/Speech.html
+++ b/Speech.html
@@ -309,7 +309,7 @@ Speech.VoiceMode
diff --git a/StandardEnums.html b/StandardEnums.html
index 2da8dd5f..4c7352b3 100644
--- a/StandardEnums.html
+++ b/StandardEnums.html
@@ -522,7 +522,7 @@ WalkWhere
diff --git a/StandardTypes.html b/StandardTypes.html
index 15527e83..e5571f61 100644
--- a/StandardTypes.html
+++ b/StandardTypes.html
@@ -112,7 +112,7 @@ Point
diff --git a/StartingOff.html b/StartingOff.html
index 9f8d1aaf..2a709b0c 100644
--- a/StartingOff.html
+++ b/StartingOff.html
@@ -111,7 +111,7 @@ Starting off
diff --git a/String.html b/String.html
index eaca1573..9d4dae23 100644
--- a/String.html
+++ b/String.html
@@ -418,7 +418,7 @@ String.Length
diff --git a/StringFormats.html b/StringFormats.html
index 29ed3c8e..13e83563 100644
--- a/StringFormats.html
+++ b/StringFormats.html
@@ -166,7 +166,7 @@ String formatting
diff --git a/System.html b/System.html
index bc22a59b..d104b4eb 100644
--- a/System.html
+++ b/System.html
@@ -432,7 +432,7 @@ System.Windowed
diff --git a/SystemLimits.html b/SystemLimits.html
index 550827df..8833b03c 100644
--- a/SystemLimits.html
+++ b/SystemLimits.html
@@ -290,7 +290,7 @@ Additional considerations
diff --git a/SystemRequirements.html b/SystemRequirements.html
index 9aa3db13..24f47679 100644
--- a/SystemRequirements.html
+++ b/SystemRequirements.html
@@ -112,7 +112,7 @@ System Requirements
diff --git a/TemplateBASS.html b/TemplateBASS.html
index 41e068e2..8841b69b 100644
--- a/TemplateBASS.html
+++ b/TemplateBASS.html
@@ -160,7 +160,7 @@ TwoClickHandler.Close
diff --git a/TemplateSierraStyle.html b/TemplateSierraStyle.html
index 22b690ea..c6c62b5b 100644
--- a/TemplateSierraStyle.html
+++ b/TemplateSierraStyle.html
@@ -148,7 +148,7 @@ KeyboardMovement.KeyRight
diff --git a/TemplateVerbcoin.html b/TemplateVerbcoin.html
index 604728ef..9f8444a2 100644
--- a/TemplateVerbcoin.html
+++ b/TemplateVerbcoin.html
@@ -253,7 +253,7 @@ VerbCoin.ButtonAutoDisable
diff --git a/Templates.html b/Templates.html
index 7b16c0c5..1e424a72 100644
--- a/Templates.html
+++ b/Templates.html
@@ -137,7 +137,7 @@ Creating your own template
diff --git a/TextBox.html b/TextBox.html
index 024588cb..1a8e2421 100644
--- a/TextBox.html
+++ b/TextBox.html
@@ -146,7 +146,7 @@ TextBox.TextColor
diff --git a/TextParser.html b/TextParser.html
index 75113e15..28037819 100644
--- a/TextParser.html
+++ b/TextParser.html
@@ -138,7 +138,7 @@ Text Parser
diff --git a/TextWindowGUI.html b/TextWindowGUI.html
index ac92338a..c89bf486 100644
--- a/TextWindowGUI.html
+++ b/TextWindowGUI.html
@@ -125,7 +125,7 @@ TextWindowGUI.TextPadding
diff --git a/TheScriptHeader.html b/TheScriptHeader.html
index 05f4f161..f193e82f 100644
--- a/TheScriptHeader.html
+++ b/TheScriptHeader.html
@@ -103,7 +103,7 @@ The script header
diff --git a/Translations.html b/Translations.html
index e4b277dd..24dbe147 100644
--- a/Translations.html
+++ b/Translations.html
@@ -159,7 +159,7 @@ Advanced Help
diff --git a/TroubleshootingWindowsZoneID.html b/TroubleshootingWindowsZoneID.html
index 0dbdc49a..e0dfaec9 100644
--- a/TroubleshootingWindowsZoneID.html
+++ b/TroubleshootingWindowsZoneID.html
@@ -129,7 +129,7 @@ How
diff --git a/Tumbleweed.html b/Tumbleweed.html
index 5ec78eed..3e78ff85 100644
--- a/Tumbleweed.html
+++ b/Tumbleweed.html
@@ -238,7 +238,7 @@ Language & Translation
diff --git a/Tumbleweed_actions.html b/Tumbleweed_actions.html
index 0515229d..ea997db4 100644
--- a/Tumbleweed_actions.html
+++ b/Tumbleweed_actions.html
@@ -168,7 +168,7 @@ Verbs.ToogleGuiStyle
diff --git a/Tumbleweed_door.html b/Tumbleweed_door.html
index 150bea0b..2307bf62 100644
--- a/Tumbleweed_door.html
+++ b/Tumbleweed_door.html
@@ -185,7 +185,7 @@ Verbs.AnyClickSpecial
diff --git a/Tumbleweed_extensions.html b/Tumbleweed_extensions.html
index b59f6226..ef80ebdf 100644
--- a/Tumbleweed_extensions.html
+++ b/Tumbleweed_extensions.html
@@ -162,7 +162,7 @@ Verbs.VariableExtensions
diff --git a/Tumbleweed_helper.html b/Tumbleweed_helper.html
index 9d68d0d7..6c0e5b7a 100644
--- a/Tumbleweed_helper.html
+++ b/Tumbleweed_helper.html
@@ -174,7 +174,7 @@ Verbs.HandleInvArrows
diff --git a/Tumbleweed_movement.html b/Tumbleweed_movement.html
index 3221f73b..d780aec1 100644
--- a/Tumbleweed_movement.html
+++ b/Tumbleweed_movement.html
@@ -209,7 +209,7 @@ Verbs.SetApproachingChar
diff --git a/Tumbleweed_player.html b/Tumbleweed_player.html
index 3c5e960f..f4c27c94 100644
--- a/Tumbleweed_player.html
+++ b/Tumbleweed_player.html
@@ -134,7 +134,7 @@ Verbs.EnterRoom
diff --git a/Tumbleweed_translation.html b/Tumbleweed_translation.html
index d439badb..c8ac84c9 100644
--- a/Tumbleweed_translation.html
+++ b/Tumbleweed_translation.html
@@ -147,7 +147,7 @@ Verbs.AdjustGUIText
diff --git a/Tumbleweed_unhandled.html b/Tumbleweed_unhandled.html
index 8154c9b8..13b0a613 100644
--- a/Tumbleweed_unhandled.html
+++ b/Tumbleweed_unhandled.html
@@ -114,7 +114,7 @@ Verbs.Unhandled
diff --git a/Tutorial.html b/Tutorial.html
index fc72e49d..6ca44fd1 100644
--- a/Tutorial.html
+++ b/Tutorial.html
@@ -104,7 +104,7 @@ Tutorial
diff --git a/UnicodeSupport.html b/UnicodeSupport.html
index 820f2381..5ea4208a 100644
--- a/UnicodeSupport.html
+++ b/UnicodeSupport.html
@@ -145,7 +145,7 @@ Using ASCII mode
diff --git a/UpgradeTo30.html b/UpgradeTo30.html
index 423c1beb..9bf915cb 100644
--- a/UpgradeTo30.html
+++ b/UpgradeTo30.html
@@ -125,7 +125,7 @@ Upgrading to AGS 3.0
diff --git a/UpgradeTo31.html b/UpgradeTo31.html
index a8c6ee5f..e3d0a814 100644
--- a/UpgradeTo31.html
+++ b/UpgradeTo31.html
@@ -116,7 +116,7 @@ Upgrading to AGS 3.1
diff --git a/UpgradeTo32.html b/UpgradeTo32.html
index b84a8cf8..1925c179 100644
--- a/UpgradeTo32.html
+++ b/UpgradeTo32.html
@@ -130,7 +130,7 @@ Upgrading to AGS 3.2
diff --git a/UpgradeTo33.html b/UpgradeTo33.html
index 93a1a064..499600f7 100644
--- a/UpgradeTo33.html
+++ b/UpgradeTo33.html
@@ -150,7 +150,7 @@ Upgrading to AGS 3.3
diff --git a/UpgradeTo335.html b/UpgradeTo335.html
index 9b236d4c..62ac5d7f 100644
--- a/UpgradeTo335.html
+++ b/UpgradeTo335.html
@@ -104,7 +104,7 @@ Upgrading to AGS 3.3.5
diff --git a/UpgradeTo34.html b/UpgradeTo34.html
index def11022..8d6ff0bb 100644
--- a/UpgradeTo34.html
+++ b/UpgradeTo34.html
@@ -150,7 +150,7 @@ Upgrading to AGS 3.4
diff --git a/UpgradeTo341.html b/UpgradeTo341.html
index 4626e238..0f46d768 100644
--- a/UpgradeTo341.html
+++ b/UpgradeTo341.html
@@ -114,7 +114,7 @@ Upgrading to AGS 3.4.1
diff --git a/UpgradeTo35.html b/UpgradeTo35.html
index a69dd7cf..55f290c7 100644
--- a/UpgradeTo35.html
+++ b/UpgradeTo35.html
@@ -266,7 +266,7 @@ System limits update
diff --git a/UpgradeTo36.html b/UpgradeTo36.html
index 282cbcb0..2211fd38 100644
--- a/UpgradeTo36.html
+++ b/UpgradeTo36.html
@@ -312,7 +312,7 @@ System limits update
diff --git a/UpgradeTo361.html b/UpgradeTo361.html
index c3c70b4a..f8ad6330 100644
--- a/UpgradeTo361.html
+++ b/UpgradeTo361.html
@@ -133,7 +133,7 @@ Discontinued Source contr
diff --git a/UpgradingFromPreviousVersion.html b/UpgradingFromPreviousVersion.html
index 7921a2fd..b5d1cee4 100644
--- a/UpgradingFromPreviousVersion.html
+++ b/UpgradingFromPreviousVersion.html
@@ -112,7 +112,7 @@ Upgrading from a previous versi
diff --git a/UpgradingTo27.html b/UpgradingTo27.html
index dbac5c39..64eae9d6 100644
--- a/UpgradingTo27.html
+++ b/UpgradingTo27.html
@@ -183,7 +183,7 @@ Upgrading to AGS 2.7
diff --git a/UpgradingTo271.html b/UpgradingTo271.html
index 239f5d51..0d9a4464 100644
--- a/UpgradingTo271.html
+++ b/UpgradingTo271.html
@@ -119,7 +119,7 @@ Upgrading to AGS 2.71
diff --git a/ViewFrame.html b/ViewFrame.html
index 8bf8598c..913f64de 100644
--- a/ViewFrame.html
+++ b/ViewFrame.html
@@ -201,7 +201,7 @@ ViewFrame.View
diff --git a/Viewport.html b/Viewport.html
index d9e943e1..74693af7 100644
--- a/Viewport.html
+++ b/Viewport.html
@@ -312,7 +312,7 @@ Viewport.ZOrder
diff --git a/VoiceSpeech.html b/VoiceSpeech.html
index 27758109..a4140861 100644
--- a/VoiceSpeech.html
+++ b/VoiceSpeech.html
@@ -147,7 +147,7 @@ Voice packs
diff --git a/acintro.html b/acintro.html
index 200bb0b7..ebf30f8c 100644
--- a/acintro.html
+++ b/acintro.html
@@ -112,7 +112,7 @@ Editor Tutorial
diff --git a/acintro1.html b/acintro1.html
index c00072f5..5e907df0 100644
--- a/acintro1.html
+++ b/acintro1.html
@@ -190,7 +190,7 @@ Game Resolution
diff --git a/acintro2.html b/acintro2.html
index 98d56ec6..6be61980 100644
--- a/acintro2.html
+++ b/acintro2.html
@@ -172,7 +172,7 @@ Creating your first room
diff --git a/acintro3.html b/acintro3.html
index 3062a9c0..644a7033 100644
--- a/acintro3.html
+++ b/acintro3.html
@@ -176,7 +176,7 @@ Scripting tutorial
diff --git a/acintro4.html b/acintro4.html
index f88b0f99..c934537b 100644
--- a/acintro4.html
+++ b/acintro4.html
@@ -163,7 +163,7 @@ Testing Your Work
diff --git a/acintro5.html b/acintro5.html
index 26dc8b67..2eac2186 100644
--- a/acintro5.html
+++ b/acintro5.html
@@ -141,7 +141,7 @@ Recap
diff --git a/acintro6.html b/acintro6.html
index 2cbf7fe0..e1f996e7 100644
--- a/acintro6.html
+++ b/acintro6.html
@@ -149,7 +149,7 @@ Tiled sprite import
diff --git a/acintro7.html b/acintro7.html
index 3ac1898d..132e1c3a 100644
--- a/acintro7.html
+++ b/acintro7.html
@@ -173,7 +173,7 @@ Testing Your Work
diff --git a/acintro8.html b/acintro8.html
index 866cccdb..532c6aa5 100644
--- a/acintro8.html
+++ b/acintro8.html
@@ -221,7 +221,7 @@ Sierra-style system dialogs
diff --git a/acintro9.html b/acintro9.html
index 70ec0879..d990ad4b 100644
--- a/acintro9.html
+++ b/acintro9.html
@@ -172,7 +172,7 @@ Conclusion
diff --git a/genindex.html b/genindex.html
index a374476e..e2d11738 100644
--- a/genindex.html
+++ b/genindex.html
@@ -282,6 +282,7 @@ C
Character.Moving
Character.Name
Character.NormalView
+Character.on
Character.PlaceOnWalkableArea
Character.PreviousRoom
Character.RemoveTint
@@ -1294,6 +1295,7 @@ R
Room editor and multilayer mode (Upgrading to AGS 3.5)
Room events (Event Types)
Room masks (Hotspot, Walkable areas, Walk-behinds and Regions) (Room Editor)
+Room Properties (Room Editor)
Room sizes and mask resolution (Upgrading to AGS 3.5)
Room.BottomEdge
Room.ColorDepth
@@ -1699,7 +1701,7 @@ Y
diff --git a/index.html b/index.html
index bfdc15cd..96b31d17 100644
--- a/index.html
+++ b/index.html
@@ -178,7 +178,7 @@ Getting in touch
diff --git a/js/search.js b/js/search.js
index 95d91e9f..d6f31398 100644
--- a/js/search.js
+++ b/js/search.js
@@ -573,7 +573,7 @@ var meta = {
"9": { "acintro9": 11 },
"10": { "AdvancedRoomFeatures": 4 },
"11": { "AnonymousUsageInfo": 12 },
- "12": { "AudioChannel": 16 },
+ "12": { "AudioChannel": 17 },
"13": { "AudioClip": 14 },
"14": { "AudioInScript": 2 },
"15": { "BlockingScripts": 6 },
@@ -612,7 +612,7 @@ var meta = {
"48": { "EnginePlugins": 6 },
"49": { "EventTypes": 1 },
"50": { "ExtenderFunctions": 2 },
- "51": { "FAQ": 18 },
+ "51": { "FAQ": 19 },
"52": { "File": 12 },
"53": { "Game": 37 },
"54": { "GameEventsOrder": 5 },
@@ -1240,7 +1240,7 @@ var meta = {
"2": { "AdvancedRoomFeatures": 1 },
"3": { "BackingUpYourGame": 1 },
"4": { "Camera": 1 },
- "5": { "EditorRoom": 2 },
+ "5": { "EditorRoom": 3 },
"6": { "EnginePluginRun-timeAPI": 2 },
"7": { "FAQ": 1 },
"8": { "Game": 1 },
@@ -1904,7 +1904,11 @@ var meta = {
"6": { "SystemLimits": 1 }
},
"BackgroundAnimationDelay": {
- "0": { "AdvancedRoomFeatures": 1 }
+ "0": { "AdvancedRoomFeatures": 1 },
+ "1": { "EditorRoom": 1 }
+ },
+ "BackgroundAnimationEnabled": {
+ "0": { "EditorRoom": 2 }
},
"BackgroundAnimtionEnabled": {
"0": { "EditorRoom": 1 }
@@ -2526,7 +2530,7 @@ var meta = {
},
"ChangeRoom": {
"0": { "acintro3": 1 },
- "1": { "Character": 9 },
+ "1": { "Character": 10 },
"2": { "GameSavesCompatibility": 1 },
"3": { "Globalfunctions_General": 4 },
"4": { "Globalfunctions_Screen": 1 },
@@ -2554,8 +2558,9 @@ var meta = {
},
"ChangeView": {
"0": { "Character": 11 },
- "1": { "EnginePluginRun-timeAPI": 1 },
- "2": { "ObsoleteScriptAPI": 1 }
+ "1": { "EditorRoom": 1 },
+ "2": { "EnginePluginRun-timeAPI": 1 },
+ "3": { "ObsoleteScriptAPI": 1 }
},
"ChangeVolumeType": {
"0": { "Game": 2 }
@@ -2585,13 +2590,14 @@ var meta = {
},
"Changing": {
"0": { "EditorCharacter": 1 },
- "1": { "GameSavesCompatibility": 3 },
- "2": { "GeneralSettings": 1 },
- "3": { "Overlay": 2 },
- "4": { "ScriptingTutorialPart1": 1 },
- "5": { "Speech": 1 },
- "6": { "Translations": 1 },
- "7": { "Viewport": 1 }
+ "1": { "EditorRoom": 1 },
+ "2": { "GameSavesCompatibility": 3 },
+ "3": { "GeneralSettings": 1 },
+ "4": { "Overlay": 2 },
+ "5": { "ScriptingTutorialPart1": 1 },
+ "6": { "Speech": 1 },
+ "7": { "Translations": 1 },
+ "8": { "Viewport": 1 }
},
"Channel": {
"0": { "AudioChannel": 2 },
@@ -2630,14 +2636,14 @@ var meta = {
"4": { "AudioChannel": 2 },
"5": { "BlockingScripts": 1 },
"6": { "Button": 2 },
- "7": { "Character": 468 },
+ "7": { "Character": 470 },
"8": { "CustomDialogOptions": 1 },
"9": { "CustomProperties": 4 },
"10": { "DialogScript": 4 },
"11": { "DynamicArrays": 3 },
"12": { "EditorCharacter": 2 },
"13": { "EditorDialog": 1 },
- "14": { "EditorRoom": 1 },
+ "14": { "EditorRoom": 2 },
"15": { "EditorView": 1 },
"16": { "EnginePluginRun-timeAPI": 1 },
"17": { "EventTypes": 9 },
@@ -2834,7 +2840,7 @@ var meta = {
"0": { "acintro7": 1 },
"1": { "Character": 7 },
"2": { "EditorGUI": 1 },
- "3": { "FAQ": 1 },
+ "3": { "FAQ": 2 },
"4": { "GUI": 6 },
"5": { "GUIControl": 7 },
"6": { "Object": 7 },
@@ -3461,18 +3467,19 @@ var meta = {
"5": { "DistGame": 1 },
"6": { "EditorDialog": 1 },
"7": { "EditorGUI": 1 },
- "8": { "FAQ": 1 },
- "9": { "File": 1 },
- "10": { "GameSavesCompatibility": 1 },
- "11": { "GeneralSettings": 4 },
- "12": { "OtherFeatures": 1 },
- "13": { "Scripting": 1 },
- "14": { "Setup": 2 },
- "15": { "SystemLimits": 1 },
- "16": { "UnicodeSupport": 2 },
- "17": { "UpgradeTo34": 4 },
- "18": { "UpgradeTo35": 5 },
- "19": { "UpgradeTo36": 2 }
+ "8": { "EditorRoom": 1 },
+ "9": { "FAQ": 1 },
+ "10": { "File": 1 },
+ "11": { "GameSavesCompatibility": 1 },
+ "12": { "GeneralSettings": 4 },
+ "13": { "OtherFeatures": 1 },
+ "14": { "Scripting": 1 },
+ "15": { "Setup": 2 },
+ "16": { "SystemLimits": 1 },
+ "17": { "UnicodeSupport": 2 },
+ "18": { "UpgradeTo34": 4 },
+ "19": { "UpgradeTo35": 5 },
+ "20": { "UpgradeTo36": 2 }
},
"CustomAnimation": {
"0": { "Globalfunctions_General": 2 }
@@ -3690,6 +3697,9 @@ var meta = {
"0": { "acintro9": 1 },
"1": { "Settingupthegame": 1 }
},
+ "Decrement": {
+ "0": { "ScriptKeywords": 1 }
+ },
"DecrementManagedObjectRefCount": {
"0": { "EnginePluginRun-timeAPI": 2 }
},
@@ -3701,20 +3711,21 @@ var meta = {
"1": { "DefaultSetup": 7 },
"2": { "DistGame": 1 },
"3": { "EditorPreferences": 2 },
- "4": { "EngineConfigFile": 5 },
- "5": { "FAQ": 2 },
- "6": { "Gamevariables": 7 },
- "7": { "GeneralSettings": 3 },
- "8": { "Lipsync": 1 },
- "9": { "Overlay": 2 },
- "10": { "RuntimeEngine": 1 },
- "11": { "ScriptAPIOverview": 2 },
- "12": { "Setup": 1 },
- "13": { "Templates": 1 },
- "14": { "Tumbleweed": 1 },
- "15": { "UpgradeTo33": 1 },
- "16": { "UpgradeTo341": 5 },
- "17": { "UpgradeTo35": 2 }
+ "4": { "EditorRoom": 1 },
+ "5": { "EngineConfigFile": 5 },
+ "6": { "FAQ": 2 },
+ "7": { "Gamevariables": 7 },
+ "8": { "GeneralSettings": 3 },
+ "9": { "Lipsync": 1 },
+ "10": { "Overlay": 2 },
+ "11": { "RuntimeEngine": 1 },
+ "12": { "ScriptAPIOverview": 2 },
+ "13": { "Setup": 1 },
+ "14": { "Templates": 1 },
+ "15": { "Tumbleweed": 1 },
+ "16": { "UpgradeTo33": 1 },
+ "17": { "UpgradeTo341": 5 },
+ "18": { "UpgradeTo35": 2 }
},
"DefaultVolume": {
"0": { "AudioChannel": 1 },
@@ -3815,16 +3826,17 @@ var meta = {
"5": { "CustomProperties": 1 },
"6": { "EditorGUI": 1 },
"7": { "EditorInventoryItems": 1 },
- "8": { "FAQ": 1 },
- "9": { "GlobalArrays": 1 },
- "10": { "Globalfunctions_Event": 1 },
- "11": { "Hotspot": 2 },
- "12": { "InventoryItem": 2 },
- "13": { "Label": 1 },
- "14": { "Object": 2 },
- "15": { "Room": 2 },
- "16": { "ScriptKeywords": 2 },
- "17": { "StringFormats": 1 }
+ "8": { "EditorRoom": 1 },
+ "9": { "FAQ": 1 },
+ "10": { "GlobalArrays": 1 },
+ "11": { "Globalfunctions_Event": 1 },
+ "12": { "Hotspot": 2 },
+ "13": { "InventoryItem": 2 },
+ "14": { "Label": 1 },
+ "15": { "Object": 2 },
+ "16": { "Room": 2 },
+ "17": { "ScriptKeywords": 2 },
+ "18": { "StringFormats": 1 }
},
"Design": {
"0": { "acintro3": 1 },
@@ -3986,9 +3998,10 @@ var meta = {
"1": { "Globalfunctions_General": 9 }
},
"DisableMode": {
- "0": { "Mouse": 6 },
- "1": { "ObsoleteScriptAPI": 1 },
- "2": { "StandardEnums": 1 }
+ "0": { "EditorRoom": 1 },
+ "1": { "Mouse": 6 },
+ "2": { "ObsoleteScriptAPI": 1 },
+ "3": { "StandardEnums": 1 }
},
"DisableRegion": {
"0": { "ObsoleteScriptAPI": 1 },
@@ -3998,9 +4011,10 @@ var meta = {
"0": { "EnginePluginRun-timeAPI": 2 }
},
"Disabled": {
- "0": { "GeneralSettings": 1 },
- "1": { "GUIControl": 1 },
- "2": { "UpgradeTo361": 1 }
+ "0": { "Character": 1 },
+ "1": { "GeneralSettings": 1 },
+ "2": { "GUIControl": 1 },
+ "3": { "UpgradeTo361": 1 }
},
"Disables": {
"0": { "EnginePluginRun-timeAPI": 1 },
@@ -4686,9 +4700,6 @@ var meta = {
"EditorProperties": {
"0": { "EnginePluginDesign-timeAPI": 2 }
},
- "EditorRoom": {
- "0": { "EditorRoom": 1 }
- },
"EditorSaveGame": {
"0": { "EnginePluginDesign-timeAPI": 3 },
"1": { "EnginePluginRun-timeAPI": 1 }
@@ -5134,10 +5145,11 @@ var meta = {
},
"FALSE": {
"0": { "Character": 3 },
- "1": { "Hotspot": 3 },
- "2": { "InventoryItem": 3 },
- "3": { "Object": 2 },
- "4": { "Room": 3 }
+ "1": { "EditorRoom": 1 },
+ "2": { "Hotspot": 3 },
+ "3": { "InventoryItem": 3 },
+ "4": { "Object": 2 },
+ "5": { "Room": 3 }
},
"FILE": {
"0": { "EnginePluginRun-timeAPI": 4 }
@@ -5892,7 +5904,7 @@ var meta = {
"11": { "EditorInventoryItems": 1 },
"12": { "EditorSprite": 1 },
"13": { "EnginePluginRun-timeAPI": 1 },
- "14": { "FAQ": 11 },
+ "14": { "FAQ": 14 },
"15": { "Game": 4 },
"16": { "GameEventsOrder": 2 },
"17": { "Gamevariables": 4 },
@@ -5935,8 +5947,9 @@ var meta = {
"54": { "UpgradingTo27": 4 }
},
"GUI's": {
- "0": { "GeneralSettings": 1 },
- "1": { "GUI": 6 }
+ "0": { "FAQ": 1 },
+ "1": { "GeneralSettings": 1 },
+ "2": { "GUI": 6 }
},
"GUI-ID": {
"0": { "Tumbleweed_translation": 1 }
@@ -5997,7 +6010,7 @@ var meta = {
"1": { "CustomDialogOptions": 1 },
"2": { "EditorGUI": 13 },
"3": { "EnginePluginRun-timeAPI": 2 },
- "4": { "FAQ": 1 },
+ "4": { "FAQ": 3 },
"5": { "Game": 4 },
"6": { "GameSavesCompatibility": 5 },
"7": { "Gamevariables": 1 },
@@ -6834,7 +6847,7 @@ var meta = {
"1": { "AudioClip": 5 },
"2": { "Button": 12 },
"3": { "Camera": 5 },
- "4": { "Character": 48 },
+ "4": { "Character": 49 },
"5": { "DateTime": 7 },
"6": { "Dialog": 4 },
"7": { "DialogOptionsRenderingInfo": 11 },
@@ -7078,7 +7091,7 @@ var meta = {
"1": { "Copyright": 1 },
"2": { "DefaultSetup": 3 },
"3": { "DistGame": 2 },
- "4": { "EngineConfigFile": 1 },
+ "4": { "EngineConfigFile": 2 },
"5": { "GraphicsDriver": 1 },
"6": { "Setup": 1 },
"7": { "System": 1 },
@@ -7610,30 +7623,31 @@ var meta = {
"6": { "Dialog": 6 },
"7": { "DynamicSprite": 5 },
"8": { "EditorInventoryItems": 3 },
- "9": { "EditorView": 1 },
- "10": { "EngineConfigFile": 3 },
- "11": { "EnginePluginRun-timeAPI": 2 },
- "12": { "GameSavesCompatibility": 1 },
- "13": { "Gamevariables": 1 },
- "14": { "GeneralSettings": 4 },
- "15": { "GlobalArrays": 4 },
- "16": { "Globalfunctions_General": 6 },
- "17": { "Globalfunctions_Message": 1 },
- "18": { "Globalfunctions_Room": 3 },
- "19": { "GUI": 8 },
- "20": { "GUIControl": 10 },
- "21": { "Hotspot": 4 },
- "22": { "InventoryItem": 5 },
- "23": { "Object": 4 },
- "24": { "Parser": 2 },
- "25": { "Region": 4 },
- "26": { "RuntimeEngine": 1 },
- "27": { "ScriptKeywords": 2 },
- "28": { "Tumbleweed": 1 },
- "29": { "Tumbleweed_actions": 1 },
- "30": { "Tumbleweed_door": 3 },
- "31": { "Tumbleweed_movement": 1 },
- "32": { "Tumbleweed_translation": 2 }
+ "9": { "EditorRoom": 1 },
+ "10": { "EditorView": 1 },
+ "11": { "EngineConfigFile": 3 },
+ "12": { "EnginePluginRun-timeAPI": 2 },
+ "13": { "GameSavesCompatibility": 1 },
+ "14": { "Gamevariables": 1 },
+ "15": { "GeneralSettings": 4 },
+ "16": { "GlobalArrays": 4 },
+ "17": { "Globalfunctions_General": 6 },
+ "18": { "Globalfunctions_Message": 1 },
+ "19": { "Globalfunctions_Room": 3 },
+ "20": { "GUI": 8 },
+ "21": { "GUIControl": 10 },
+ "22": { "Hotspot": 4 },
+ "23": { "InventoryItem": 5 },
+ "24": { "Object": 4 },
+ "25": { "Parser": 2 },
+ "26": { "Region": 4 },
+ "27": { "RuntimeEngine": 1 },
+ "28": { "ScriptKeywords": 2 },
+ "29": { "Tumbleweed": 1 },
+ "30": { "Tumbleweed_actions": 1 },
+ "31": { "Tumbleweed_door": 3 },
+ "32": { "Tumbleweed_movement": 1 },
+ "33": { "Tumbleweed_translation": 2 }
},
"ID's": {
"0": { "EditorPlugins": 1 },
@@ -7889,6 +7903,9 @@ var meta = {
"Inc": {
"0": { "Tumbleweed": 1 }
},
+ "Increment": {
+ "0": { "ScriptKeywords": 1 }
+ },
"IncrementManagedObjectRefCount": {
"0": { "EnginePluginRun-timeAPI": 2 }
},
@@ -9368,7 +9385,7 @@ var meta = {
"8": { "EditorInventoryItems": 1 },
"9": { "EditorPlugins": 1 },
"10": { "EnginePluginRun-timeAPI": 1 },
- "11": { "FAQ": 2 },
+ "11": { "FAQ": 3 },
"12": { "Settingupthegame": 2 },
"13": { "Templates": 1 },
"14": { "Viewport": 1 }
@@ -9460,8 +9477,9 @@ var meta = {
"3": { "GeneralSettings": 2 }
},
"MaskResolution": {
- "0": { "GeneralSettings": 1 },
- "1": { "UpgradeTo35": 1 }
+ "0": { "EditorRoom": 1 },
+ "1": { "GeneralSettings": 1 },
+ "2": { "UpgradeTo35": 1 }
},
"Match": {
"0": { "KeyboardShortcuts": 1 }
@@ -9677,24 +9695,26 @@ var meta = {
"6": { "CustomDialogOptions": 1 },
"7": { "DefaultSetup": 4 },
"8": { "EditorInventoryItems": 3 },
- "9": { "EnginePluginRun-timeAPI": 1 },
- "10": { "EventTypes": 1 },
- "11": { "Game": 1 },
- "12": { "GameSavesCompatibility": 1 },
- "13": { "Gamevariables": 2 },
- "14": { "Globalfunctions_General": 1 },
- "15": { "Globalfunctions_Wait": 1 },
- "16": { "GUI": 4 },
- "17": { "Hotspot": 3 },
- "18": { "Mouse": 82 },
- "19": { "ObsoleteScriptAPI": 16 },
- "20": { "Pointers": 2 },
- "21": { "Room": 1 },
- "22": { "Screen": 1 },
- "23": { "Scripting": 1 },
- "24": { "Setup": 2 },
- "25": { "StandardEnums": 8 },
- "26": { "Viewport": 2 }
+ "9": { "EditorRoom": 1 },
+ "10": { "EnginePluginRun-timeAPI": 1 },
+ "11": { "EventTypes": 1 },
+ "12": { "FAQ": 1 },
+ "13": { "Game": 1 },
+ "14": { "GameSavesCompatibility": 1 },
+ "15": { "Gamevariables": 2 },
+ "16": { "Globalfunctions_General": 1 },
+ "17": { "Globalfunctions_Wait": 1 },
+ "18": { "GUI": 4 },
+ "19": { "Hotspot": 3 },
+ "20": { "Mouse": 82 },
+ "21": { "ObsoleteScriptAPI": 16 },
+ "22": { "Pointers": 2 },
+ "23": { "Room": 1 },
+ "24": { "Screen": 1 },
+ "25": { "Scripting": 1 },
+ "26": { "Setup": 2 },
+ "27": { "StandardEnums": 8 },
+ "28": { "Viewport": 2 }
},
"MouseButton": {
"0": { "CustomDialogOptions": 2 },
@@ -9969,7 +9989,7 @@ var meta = {
"7": { "acintro9": 4 },
"8": { "AdvancedRoomFeatures": 5 },
"9": { "AnonymousUsageInfo": 1 },
- "10": { "AudioChannel": 5 },
+ "10": { "AudioChannel": 4 },
"11": { "AudioClip": 1 },
"12": { "Button": 2 },
"13": { "Camera": 7 },
@@ -10332,43 +10352,44 @@ var meta = {
"10": { "DynamicSprite": 1 },
"11": { "EditorFont": 1 },
"12": { "EditorPlugins": 1 },
- "13": { "EditorView": 1 },
- "14": { "EngineConfigFile": 1 },
- "15": { "EnginePluginDesign-timeAPI": 2 },
- "16": { "EnginePluginRun-timeAPI": 11 },
- "17": { "GeneralSettings": 1 },
- "18": { "Globalfunctions_Event": 1 },
- "19": { "Globalfunctions_General": 6 },
- "20": { "Globalfunctions_Message": 1 },
- "21": { "Globalfunctions_Wait": 1 },
- "22": { "GlobalVariables": 1 },
- "23": { "GUIControl": 1 },
- "24": { "Hotspot": 1 },
- "25": { "Introduction": 1 },
- "26": { "InventoryItem": 1 },
- "27": { "Label": 1 },
- "28": { "ListBox": 3 },
- "29": { "Mouse": 1 },
- "30": { "MusicAndSound": 1 },
- "31": { "Object": 1 },
- "32": { "OOProgramming": 1 },
- "33": { "Preprocessor": 1 },
- "34": { "Region": 1 },
- "35": { "Room": 4 },
- "36": { "RuntimeEngine": 1 },
- "37": { "ScriptingTutorialPart1": 2 },
- "38": { "ScriptKeywords": 1 },
- "39": { "Set": 1 },
- "40": { "Settingupthegame": 5 },
- "41": { "Setup": 2 },
- "42": { "StandardEnums": 1 },
- "43": { "System": 3 },
- "44": { "SystemRequirements": 1 },
- "45": { "UpgradeTo35": 2 },
- "46": { "UpgradeTo36": 2 },
- "47": { "UpgradeTo361": 1 },
- "48": { "UpgradingTo271": 1 },
- "49": { "VoiceSpeech": 1 }
+ "13": { "EditorRoom": 3 },
+ "14": { "EditorView": 1 },
+ "15": { "EngineConfigFile": 1 },
+ "16": { "EnginePluginDesign-timeAPI": 2 },
+ "17": { "EnginePluginRun-timeAPI": 11 },
+ "18": { "GeneralSettings": 1 },
+ "19": { "Globalfunctions_Event": 1 },
+ "20": { "Globalfunctions_General": 6 },
+ "21": { "Globalfunctions_Message": 1 },
+ "22": { "Globalfunctions_Wait": 1 },
+ "23": { "GlobalVariables": 1 },
+ "24": { "GUIControl": 1 },
+ "25": { "Hotspot": 1 },
+ "26": { "Introduction": 1 },
+ "27": { "InventoryItem": 1 },
+ "28": { "Label": 1 },
+ "29": { "ListBox": 3 },
+ "30": { "Mouse": 1 },
+ "31": { "MusicAndSound": 1 },
+ "32": { "Object": 1 },
+ "33": { "OOProgramming": 1 },
+ "34": { "Preprocessor": 1 },
+ "35": { "Region": 1 },
+ "36": { "Room": 4 },
+ "37": { "RuntimeEngine": 1 },
+ "38": { "ScriptingTutorialPart1": 2 },
+ "39": { "ScriptKeywords": 1 },
+ "40": { "Set": 1 },
+ "41": { "Settingupthegame": 5 },
+ "42": { "Setup": 2 },
+ "43": { "StandardEnums": 1 },
+ "44": { "System": 3 },
+ "45": { "SystemRequirements": 1 },
+ "46": { "UpgradeTo35": 2 },
+ "47": { "UpgradeTo36": 2 },
+ "48": { "UpgradeTo361": 1 },
+ "49": { "UpgradingTo271": 1 },
+ "50": { "VoiceSpeech": 1 }
},
"Notepad": {
"0": { "File": 1 }
@@ -10452,14 +10473,15 @@ var meta = {
"0": { "Character": 2 },
"1": { "CustomProperties": 1 },
"2": { "DrawingSurface": 2 },
- "3": { "EnginePluginRun-timeAPI": 1 },
- "4": { "Game": 1 },
- "5": { "GeneralSettings": 1 },
- "6": { "Globalfunctions_General": 1 },
- "7": { "Hotspot": 2 },
- "8": { "InventoryItem": 2 },
- "9": { "Object": 2 },
- "10": { "Room": 2 }
+ "3": { "EditorRoom": 1 },
+ "4": { "EnginePluginRun-timeAPI": 1 },
+ "5": { "Game": 1 },
+ "6": { "GeneralSettings": 1 },
+ "7": { "Globalfunctions_General": 1 },
+ "8": { "Hotspot": 2 },
+ "9": { "InventoryItem": 2 },
+ "10": { "Object": 2 },
+ "11": { "Room": 2 }
},
"Numbers": {
"0": { "Character": 1 }
@@ -11557,6 +11579,9 @@ var meta = {
"13": { "Tumbleweed_player": 1 },
"14": { "Viewport": 2 }
},
+ "PlayerCharacterView": {
+ "0": { "EditorRoom": 1 }
+ },
"PlayerStartsWithItem": {
"0": { "acintro4": 1 },
"1": { "acintro5": 1 },
@@ -11591,18 +11616,19 @@ var meta = {
"4": { "Copyright": 1 },
"5": { "CustomDialogOptions": 1 },
"6": { "EditorDialog": 1 },
- "7": { "EnginePluginRun-timeAPI": 1 },
- "8": { "FAQ": 1 },
- "9": { "Globalfunctions_General": 1 },
- "10": { "Multimedia": 2 },
- "11": { "MusicAndSound": 1 },
- "12": { "Room": 1 },
- "13": { "ScriptKeywords": 2 },
- "14": { "Settingupthegame": 2 },
- "15": { "StartingOff": 1 },
- "16": { "Translations": 1 },
- "17": { "UnicodeSupport": 1 },
- "18": { "UpgradeTo36": 1 }
+ "7": { "EditorRoom": 1 },
+ "8": { "EnginePluginRun-timeAPI": 1 },
+ "9": { "FAQ": 1 },
+ "10": { "Globalfunctions_General": 1 },
+ "11": { "Multimedia": 2 },
+ "12": { "MusicAndSound": 1 },
+ "13": { "Room": 1 },
+ "14": { "ScriptKeywords": 2 },
+ "15": { "Settingupthegame": 2 },
+ "16": { "StartingOff": 1 },
+ "17": { "Translations": 1 },
+ "18": { "UnicodeSupport": 1 },
+ "19": { "UpgradeTo36": 1 }
},
"Plugin": {
"0": { "Copyright": 1 },
@@ -11801,8 +11827,9 @@ var meta = {
"1": { "System": 1 }
},
"Prior": {
- "0": { "MIDI-playback": 1 },
- "1": { "Multimedia": 2 }
+ "0": { "AudioChannel": 1 },
+ "1": { "MIDI-playback": 1 },
+ "2": { "Multimedia": 2 }
},
"Priorities": {
"0": { "MusicAndSound": 1 }
@@ -11888,7 +11915,7 @@ var meta = {
"9": { "Dictionary": 1 },
"10": { "EditorGUI": 6 },
"11": { "EditorInventoryItems": 1 },
- "12": { "EditorRoom": 3 },
+ "12": { "EditorRoom": 6 },
"13": { "EditorSprite": 2 },
"14": { "EditorView": 1 },
"15": { "EnginePluginDesign-timeAPI": 2 },
@@ -12791,7 +12818,7 @@ var meta = {
"10": { "DefaultSetup": 1 },
"11": { "DrawingSurface": 22 },
"12": { "DynamicSprite": 9 },
- "13": { "EditorRoom": 8 },
+ "13": { "EditorRoom": 9 },
"14": { "EnginePluginRun-timeAPI": 1 },
"15": { "EventTypes": 6 },
"16": { "FAQ": 4 },
@@ -12839,10 +12866,11 @@ var meta = {
},
"Rooms": {
"0": { "acintro2": 5 },
- "1": { "GameSavesCompatibility": 1 },
- "2": { "GeneralSettings": 1 },
- "3": { "SystemLimits": 2 },
- "4": { "UpgradeTo35": 1 }
+ "1": { "Character": 1 },
+ "2": { "GameSavesCompatibility": 1 },
+ "3": { "GeneralSettings": 1 },
+ "4": { "SystemLimits": 2 },
+ "5": { "UpgradeTo35": 1 }
},
"Rosenkraenzer": {
"0": { "Credits": 1 }
@@ -14455,7 +14483,9 @@ var meta = {
"1": { "ObsoleteScriptAPI": 1 }
},
"ShowPlayerCharacter": {
- "0": { "FAQ": 1 }
+ "0": { "Character": 1 },
+ "1": { "EditorRoom": 1 },
+ "2": { "FAQ": 1 }
},
"ShowScrollArrows": {
"0": { "ListBox": 6 },
@@ -16862,14 +16892,15 @@ var meta = {
"4": { "Button": 6 },
"5": { "Camera": 1 },
"6": { "Character": 14 },
- "7": { "EditorView": 5 },
- "8": { "EnginePluginRun-timeAPI": 1 },
- "9": { "FAQ": 1 },
- "10": { "GameSavesCompatibility": 4 },
- "11": { "Globalfunctions_Room": 1 },
- "12": { "Object": 7 },
- "13": { "Settingupthegame": 1 },
- "14": { "ViewFrame": 7 }
+ "7": { "EditorRoom": 1 },
+ "8": { "EditorView": 5 },
+ "9": { "EnginePluginRun-timeAPI": 1 },
+ "10": { "FAQ": 1 },
+ "11": { "GameSavesCompatibility": 4 },
+ "12": { "Globalfunctions_Room": 1 },
+ "13": { "Object": 7 },
+ "14": { "Settingupthegame": 1 },
+ "15": { "ViewFrame": 7 }
},
"ViewCount": {
"0": { "Game": 4 }
@@ -17191,9 +17222,10 @@ var meta = {
"2": { "StandardEnums": 1 }
},
"WalkTo": {
- "0": { "Mouse": 1 },
- "1": { "Tumbleweed": 1 },
- "2": { "Tumbleweed_movement": 1 }
+ "0": { "EditorRoom": 1 },
+ "1": { "Mouse": 1 },
+ "2": { "Tumbleweed": 1 },
+ "3": { "Tumbleweed_movement": 1 }
},
"WalkToPoint": {
"0": { "acintro3": 1 }
@@ -17390,7 +17422,7 @@ var meta = {
"11": { "BackingUpYourGame": 1 },
"12": { "BlockingScripts": 1 },
"13": { "Camera": 2 },
- "14": { "Character": 7 },
+ "14": { "Character": 8 },
"15": { "ContactingTheDevelopers": 1 },
"16": { "Debuggingfeatures": 1 },
"17": { "DialogScript": 1 },
@@ -17998,6 +18030,9 @@ var meta = {
"1": { "Camera": 1 },
"2": { "EditorRoom": 1 }
},
+ "a--": {
+ "0": { "ScriptKeywords": 1 }
+ },
"a-key": {
"0": { "Dictionary": 2 }
},
@@ -18412,9 +18447,10 @@ var meta = {
},
"achieve": {
"0": { "DistGame": 1 },
- "1": { "Mouse": 1 },
- "2": { "Tumbleweed_unhandled": 1 },
- "3": { "UpgradeTo34": 1 }
+ "1": { "EditorRoom": 1 },
+ "2": { "Mouse": 1 },
+ "3": { "Tumbleweed_unhandled": 1 },
+ "4": { "UpgradeTo34": 1 }
},
"achieved": {
"0": { "EditorGUI": 1 },
@@ -19030,18 +19066,19 @@ var meta = {
},
"affected": {
"0": { "Character": 5 },
- "1": { "EnginePluginRun-timeAPI": 1 },
- "2": { "Game": 2 },
- "3": { "Globalfunctions_General": 2 },
- "4": { "GUI": 1 },
- "5": { "Object": 4 },
- "6": { "Room": 1 },
- "7": { "Settingupthegame": 1 },
- "8": { "Setup": 1 },
- "9": { "SystemRequirements": 1 },
- "10": { "UnicodeSupport": 1 },
- "11": { "UpgradeTo35": 1 },
- "12": { "UpgradeTo36": 1 }
+ "1": { "EditorRoom": 1 },
+ "2": { "EnginePluginRun-timeAPI": 1 },
+ "3": { "Game": 2 },
+ "4": { "Globalfunctions_General": 2 },
+ "5": { "GUI": 1 },
+ "6": { "Object": 4 },
+ "7": { "Room": 1 },
+ "8": { "Settingupthegame": 1 },
+ "9": { "Setup": 1 },
+ "10": { "SystemRequirements": 1 },
+ "11": { "UnicodeSupport": 1 },
+ "12": { "UpgradeTo35": 1 },
+ "13": { "UpgradeTo36": 1 }
},
"affecting": {
"0": { "ScriptingTutorialPart2": 1 }
@@ -19735,7 +19772,7 @@ var meta = {
"11": { "BuildAndroid": 1 },
"12": { "Button": 15 },
"13": { "Camera": 18 },
- "14": { "Character": 97 },
+ "14": { "Character": 98 },
"15": { "ColoursEditor": 1 },
"16": { "Constants": 1 },
"17": { "CustomDialogOptions": 2 },
@@ -19758,7 +19795,7 @@ var meta = {
"34": { "EditorInventoryItems": 5 },
"35": { "EditorLogPanel": 3 },
"36": { "EditorPlugins": 1 },
- "37": { "EditorRoom": 6 },
+ "37": { "EditorRoom": 8 },
"38": { "EditorSprite": 4 },
"39": { "EditorView": 2 },
"40": { "EngineConfigFile": 2 },
@@ -19916,49 +19953,50 @@ var meta = {
"16": { "EditorCursor": 1 },
"17": { "EditorGUI": 1 },
"18": { "EditorPreferences": 3 },
- "19": { "EditorView": 1 },
- "20": { "EngineConfigFile": 1 },
- "21": { "EnginePluginDesign-timeAPI": 1 },
- "22": { "EnginePluginRun-timeAPI": 9 },
- "23": { "FAQ": 1 },
- "24": { "Game": 2 },
- "25": { "GameEventsOrder": 2 },
- "26": { "Gamevariables": 1 },
- "27": { "GeneralSettings": 5 },
- "28": { "Globalfunctions_Event": 8 },
- "29": { "Globalfunctions_General": 4 },
- "30": { "Globalfunctions_Room": 4 },
- "31": { "Globalfunctions_Wait": 1 },
- "32": { "GraphicsDriver": 1 },
- "33": { "GUIControl": 1 },
- "34": { "Hotspot": 1 },
- "35": { "Introduction": 1 },
- "36": { "MultipleScripts": 3 },
- "37": { "MusicAndSound": 2 },
- "38": { "OOProgramming": 2 },
- "39": { "Overlay": 2 },
- "40": { "Pointers": 1 },
- "41": { "RepExec": 21 },
- "42": { "Screen": 1 },
- "43": { "Scripting": 1 },
- "44": { "ScriptingTutorialPart1": 2 },
- "45": { "ScriptKeywords": 3 },
- "46": { "Settingupthegame": 3 },
- "47": { "Setup": 2 },
- "48": { "Speech": 6 },
- "49": { "StartingOff": 1 },
- "50": { "SystemLimits": 2 },
- "51": { "Tumbleweed": 2 },
- "52": { "Tumbleweed_extensions": 1 },
- "53": { "UpgradeTo30": 1 },
- "54": { "UpgradeTo31": 1 },
- "55": { "UpgradeTo32": 2 },
- "56": { "UpgradeTo34": 2 },
- "57": { "UpgradeTo35": 2 },
- "58": { "UpgradeTo36": 1 },
- "59": { "UpgradeTo361": 1 },
- "60": { "UpgradingTo27": 1 },
- "61": { "Viewport": 2 }
+ "19": { "EditorRoom": 1 },
+ "20": { "EditorView": 1 },
+ "21": { "EngineConfigFile": 1 },
+ "22": { "EnginePluginDesign-timeAPI": 1 },
+ "23": { "EnginePluginRun-timeAPI": 9 },
+ "24": { "FAQ": 1 },
+ "25": { "Game": 2 },
+ "26": { "GameEventsOrder": 2 },
+ "27": { "Gamevariables": 1 },
+ "28": { "GeneralSettings": 5 },
+ "29": { "Globalfunctions_Event": 8 },
+ "30": { "Globalfunctions_General": 4 },
+ "31": { "Globalfunctions_Room": 4 },
+ "32": { "Globalfunctions_Wait": 1 },
+ "33": { "GraphicsDriver": 1 },
+ "34": { "GUIControl": 1 },
+ "35": { "Hotspot": 1 },
+ "36": { "Introduction": 1 },
+ "37": { "MultipleScripts": 3 },
+ "38": { "MusicAndSound": 2 },
+ "39": { "OOProgramming": 2 },
+ "40": { "Overlay": 2 },
+ "41": { "Pointers": 1 },
+ "42": { "RepExec": 21 },
+ "43": { "Screen": 1 },
+ "44": { "Scripting": 1 },
+ "45": { "ScriptingTutorialPart1": 2 },
+ "46": { "ScriptKeywords": 3 },
+ "47": { "Settingupthegame": 3 },
+ "48": { "Setup": 2 },
+ "49": { "Speech": 6 },
+ "50": { "StartingOff": 1 },
+ "51": { "SystemLimits": 2 },
+ "52": { "Tumbleweed": 2 },
+ "53": { "Tumbleweed_extensions": 1 },
+ "54": { "UpgradeTo30": 1 },
+ "55": { "UpgradeTo31": 1 },
+ "56": { "UpgradeTo32": 2 },
+ "57": { "UpgradeTo34": 2 },
+ "58": { "UpgradeTo35": 2 },
+ "59": { "UpgradeTo36": 1 },
+ "60": { "UpgradeTo361": 1 },
+ "61": { "UpgradingTo27": 1 },
+ "62": { "Viewport": 2 }
},
"am": {
"0": { "Character": 1 },
@@ -20049,7 +20087,7 @@ var meta = {
"37": { "EditorGUI": 4 },
"38": { "EditorInventoryItems": 4 },
"39": { "EditorPlugins": 3 },
- "40": { "EditorRoom": 5 },
+ "40": { "EditorRoom": 6 },
"41": { "EditorSprite": 3 },
"42": { "EditorView": 4 },
"43": { "EngineConfigFile": 1 },
@@ -20191,7 +20229,7 @@ var meta = {
"animating": {
"0": { "AdvancedRoomFeatures": 2 },
"1": { "Button": 1 },
- "2": { "Character": 4 },
+ "2": { "Character": 5 },
"3": { "EnginePluginRun-timeAPI": 1 },
"4": { "FAQ": 2 },
"5": { "Gamevariables": 1 },
@@ -20279,7 +20317,7 @@ var meta = {
"5": { "acintro9": 1 },
"6": { "AdvancedRoomFeatures": 3 },
"7": { "AudioInScript": 1 },
- "8": { "Character": 3 },
+ "8": { "Character": 4 },
"9": { "Debuggingfeatures": 2 },
"10": { "Dictionary": 1 },
"11": { "DistGame": 1 },
@@ -20377,7 +20415,7 @@ var meta = {
"9": { "BlockingScripts": 2 },
"10": { "Button": 3 },
"11": { "Camera": 5 },
- "12": { "Character": 14 },
+ "12": { "Character": 15 },
"13": { "Constants": 1 },
"14": { "ContactingTheDevelopers": 2 },
"15": { "Copyright": 6 },
@@ -20517,16 +20555,17 @@ var meta = {
"31": { "Viewport": 1 }
},
"anytime": {
- "0": { "DynamicSprite": 1 },
- "1": { "EditorSprite": 1 },
- "2": { "GeneralSettings": 1 },
- "3": { "Mouse": 1 },
- "4": { "Pointers": 1 },
- "5": { "Tumbleweed_door": 1 },
- "6": { "UpgradeTo34": 1 },
- "7": { "UpgradeTo35": 2 },
- "8": { "Viewport": 2 },
- "9": { "VoiceSpeech": 1 }
+ "0": { "Character": 1 },
+ "1": { "DynamicSprite": 1 },
+ "2": { "EditorSprite": 1 },
+ "3": { "GeneralSettings": 1 },
+ "4": { "Mouse": 1 },
+ "5": { "Pointers": 1 },
+ "6": { "Tumbleweed_door": 1 },
+ "7": { "UpgradeTo34": 1 },
+ "8": { "UpgradeTo35": 2 },
+ "9": { "Viewport": 2 },
+ "10": { "VoiceSpeech": 1 }
},
"anyway": {
"0": { "acintro3": 1 },
@@ -20801,7 +20840,7 @@ var meta = {
"10": { "DrawingSurface": 4 },
"11": { "DynamicSprite": 4 },
"12": { "EditorPlugins": 2 },
- "13": { "EditorRoom": 5 },
+ "13": { "EditorRoom": 6 },
"14": { "EditorSprite": 1 },
"15": { "EnginePluginRun-timeAPI": 10 },
"16": { "FAQ": 2 },
@@ -21291,7 +21330,7 @@ var meta = {
"0": { "DistGame": 1 }
},
"audio": {
- "0": { "AudioChannel": 42 },
+ "0": { "AudioChannel": 41 },
"1": { "AudioClip": 35 },
"2": { "AudioInScript": 11 },
"3": { "Constants": 1 },
@@ -21424,49 +21463,50 @@ var meta = {
"14": { "DynamicSprite": 3 },
"15": { "EditorGUI": 5 },
"16": { "EditorPlugins": 1 },
- "17": { "EnginePluginRun-timeAPI": 5 },
- "18": { "File": 2 },
- "19": { "Game": 12 },
- "20": { "GameSavesCompatibility": 1 },
- "21": { "Gamevariables": 1 },
- "22": { "GeneralSettings": 1 },
- "23": { "Globalfunctions_Event": 1 },
- "24": { "Globalfunctions_General": 4 },
- "25": { "Globalfunctions_Message": 2 },
- "26": { "Globalfunctions_Room": 2 },
- "27": { "GUI": 3 },
- "28": { "GUIControl": 1 },
- "29": { "Hotspot": 1 },
- "30": { "ImportingFunctionsAndVariables": 1 },
- "31": { "InventoryItem": 1 },
- "32": { "Label": 1 },
- "33": { "ListBox": 1 },
- "34": { "MIDI-playback": 1 },
- "35": { "Mouse": 2 },
- "36": { "Multimedia": 1 },
- "37": { "MultipleScripts": 1 },
- "38": { "MusicAndSound": 3 },
- "39": { "Object": 4 },
- "40": { "Overlay": 5 },
- "41": { "Pointers": 1 },
- "42": { "Screen": 2 },
- "43": { "ScriptingTutorialPart1": 1 },
- "44": { "ScriptKeywords": 1 },
- "45": { "Set": 1 },
- "46": { "Settingupthegame": 1 },
- "47": { "Speech": 1 },
- "48": { "StandardEnums": 3 },
- "49": { "TextParser": 1 },
- "50": { "Translations": 2 },
- "51": { "Tumbleweed": 1 },
- "52": { "UpgradeTo32": 2 },
- "53": { "UpgradeTo33": 1 },
- "54": { "UpgradeTo335": 1 },
- "55": { "UpgradeTo341": 1 },
- "56": { "UpgradeTo35": 2 },
- "57": { "UpgradeTo36": 1 },
- "58": { "UpgradeTo361": 1 },
- "59": { "UpgradingTo27": 3 }
+ "17": { "EditorRoom": 1 },
+ "18": { "EnginePluginRun-timeAPI": 5 },
+ "19": { "File": 2 },
+ "20": { "Game": 12 },
+ "21": { "GameSavesCompatibility": 1 },
+ "22": { "Gamevariables": 1 },
+ "23": { "GeneralSettings": 1 },
+ "24": { "Globalfunctions_Event": 1 },
+ "25": { "Globalfunctions_General": 4 },
+ "26": { "Globalfunctions_Message": 2 },
+ "27": { "Globalfunctions_Room": 2 },
+ "28": { "GUI": 3 },
+ "29": { "GUIControl": 1 },
+ "30": { "Hotspot": 1 },
+ "31": { "ImportingFunctionsAndVariables": 1 },
+ "32": { "InventoryItem": 1 },
+ "33": { "Label": 1 },
+ "34": { "ListBox": 1 },
+ "35": { "MIDI-playback": 1 },
+ "36": { "Mouse": 2 },
+ "37": { "Multimedia": 1 },
+ "38": { "MultipleScripts": 1 },
+ "39": { "MusicAndSound": 3 },
+ "40": { "Object": 4 },
+ "41": { "Overlay": 5 },
+ "42": { "Pointers": 1 },
+ "43": { "Screen": 2 },
+ "44": { "ScriptingTutorialPart1": 1 },
+ "45": { "ScriptKeywords": 1 },
+ "46": { "Set": 1 },
+ "47": { "Settingupthegame": 1 },
+ "48": { "Speech": 1 },
+ "49": { "StandardEnums": 3 },
+ "50": { "TextParser": 1 },
+ "51": { "Translations": 2 },
+ "52": { "Tumbleweed": 1 },
+ "53": { "UpgradeTo32": 2 },
+ "54": { "UpgradeTo33": 1 },
+ "55": { "UpgradeTo335": 1 },
+ "56": { "UpgradeTo341": 1 },
+ "57": { "UpgradeTo35": 2 },
+ "58": { "UpgradeTo36": 1 },
+ "59": { "UpgradeTo361": 1 },
+ "60": { "UpgradingTo27": 3 }
},
"automation": {
"0": { "EditorCommandLineOptions": 2 }
@@ -21497,7 +21537,7 @@ var meta = {
"19": { "EditorCursor": 1 },
"20": { "EditorGUI": 2 },
"21": { "EditorPlugins": 1 },
- "22": { "EditorRoom": 3 },
+ "22": { "EditorRoom": 4 },
"23": { "EditorSprite": 2 },
"24": { "EnginePluginRun-timeAPI": 3 },
"25": { "Game": 2 },
@@ -21669,7 +21709,7 @@ var meta = {
"12": { "EditorFont": 1 },
"13": { "EditorGUI": 5 },
"14": { "EditorPreferences": 3 },
- "15": { "EditorRoom": 8 },
+ "15": { "EditorRoom": 12 },
"16": { "EngineConfigFile": 2 },
"17": { "EnginePluginRun-timeAPI": 9 },
"18": { "FAQ": 2 },
@@ -21716,13 +21756,14 @@ var meta = {
"5": { "ColoursEditor": 1 },
"6": { "DrawingSurface": 3 },
"7": { "EditorPreferences": 1 },
- "8": { "EnginePluginRun-timeAPI": 2 },
- "9": { "GameSavesCompatibility": 1 },
- "10": { "Globalfunctions_Room": 2 },
- "11": { "Settingupthegame": 3 },
- "12": { "System": 1 },
- "13": { "UpgradeTo30": 1 },
- "14": { "UpgradeTo361": 1 }
+ "8": { "EditorRoom": 2 },
+ "9": { "EnginePluginRun-timeAPI": 2 },
+ "10": { "GameSavesCompatibility": 1 },
+ "11": { "Globalfunctions_Room": 2 },
+ "12": { "Settingupthegame": 3 },
+ "13": { "System": 1 },
+ "14": { "UpgradeTo30": 1 },
+ "15": { "UpgradeTo361": 1 }
},
"backing": {
"0": { "MusicAndSound": 1 }
@@ -21751,22 +21792,23 @@ var meta = {
"0": { "acintro5": 1 },
"1": { "Character": 1 },
"2": { "DynamicSprite": 1 },
- "3": { "File": 1 },
- "4": { "GeneralSettings": 2 },
- "5": { "Globalfunctions_Event": 1 },
- "6": { "Globalfunctions_General": 2 },
- "7": { "Globalfunctions_Screen": 1 },
- "8": { "InventoryItem": 1 },
- "9": { "Object": 1 },
- "10": { "RepExec": 1 },
- "11": { "Room": 1 },
- "12": { "UnicodeSupport": 1 },
- "13": { "UpgradeTo32": 1 },
- "14": { "UpgradeTo335": 1 },
- "15": { "UpgradeTo34": 1 },
- "16": { "UpgradeTo36": 1 },
- "17": { "UpgradingTo27": 1 },
- "18": { "UpgradingTo271": 1 }
+ "3": { "EditorRoom": 1 },
+ "4": { "File": 1 },
+ "5": { "GeneralSettings": 2 },
+ "6": { "Globalfunctions_Event": 1 },
+ "7": { "Globalfunctions_General": 2 },
+ "8": { "Globalfunctions_Screen": 1 },
+ "9": { "InventoryItem": 1 },
+ "10": { "Object": 1 },
+ "11": { "RepExec": 1 },
+ "12": { "Room": 1 },
+ "13": { "UnicodeSupport": 1 },
+ "14": { "UpgradeTo32": 1 },
+ "15": { "UpgradeTo335": 1 },
+ "16": { "UpgradeTo34": 1 },
+ "17": { "UpgradeTo36": 1 },
+ "18": { "UpgradingTo27": 1 },
+ "19": { "UpgradingTo271": 1 }
},
"backwards-compatible": {
"0": { "DrawingSurface": 1 },
@@ -22452,45 +22494,46 @@ var meta = {
"16": { "EditorFont": 1 },
"17": { "EditorGUI": 2 },
"18": { "EditorLogPanel": 1 },
- "19": { "EngineConfigFile": 1 },
- "20": { "EnginePluginRun-timeAPI": 3 },
- "21": { "FAQ": 1 },
- "22": { "File": 1 },
- "23": { "Game": 3 },
- "24": { "GameSavesCompatibility": 1 },
- "25": { "GeneralSettings": 5 },
- "26": { "Globalfunctions_Event": 1 },
- "27": { "Globalfunctions_General": 13 },
- "28": { "GUI": 2 },
- "29": { "ImportingFunctionsAndVariables": 1 },
- "30": { "Lipsync": 1 },
- "31": { "ListBox": 1 },
- "32": { "MIDI-playback": 1 },
- "33": { "MusicAndSound": 1 },
- "34": { "Object": 1 },
- "35": { "Pointers": 1 },
- "36": { "Preprocessor": 3 },
- "37": { "Region": 1 },
- "38": { "RepExec": 2 },
- "39": { "Screen": 1 },
- "40": { "ScriptingTutorialPart1": 3 },
- "41": { "ScriptingTutorialPart2": 1 },
- "42": { "ScriptKeywords": 1 },
- "43": { "Settingupthegame": 2 },
- "44": { "Setup": 1 },
- "45": { "Slider": 1 },
- "46": { "Speech": 1 },
- "47": { "System": 2 },
- "48": { "SystemLimits": 2 },
- "49": { "Translations": 1 },
- "50": { "Tumbleweed": 2 },
- "51": { "Tumbleweed_actions": 1 },
- "52": { "Tumbleweed_helper": 2 },
- "53": { "UnicodeSupport": 1 },
- "54": { "UpgradeTo34": 1 },
- "55": { "UpgradeTo35": 3 },
- "56": { "UpgradeTo36": 6 },
- "57": { "Viewport": 1 }
+ "19": { "EditorRoom": 1 },
+ "20": { "EngineConfigFile": 1 },
+ "21": { "EnginePluginRun-timeAPI": 3 },
+ "22": { "FAQ": 1 },
+ "23": { "File": 1 },
+ "24": { "Game": 3 },
+ "25": { "GameSavesCompatibility": 1 },
+ "26": { "GeneralSettings": 5 },
+ "27": { "Globalfunctions_Event": 1 },
+ "28": { "Globalfunctions_General": 13 },
+ "29": { "GUI": 2 },
+ "30": { "ImportingFunctionsAndVariables": 1 },
+ "31": { "Lipsync": 1 },
+ "32": { "ListBox": 1 },
+ "33": { "MIDI-playback": 1 },
+ "34": { "MusicAndSound": 1 },
+ "35": { "Object": 1 },
+ "36": { "Pointers": 1 },
+ "37": { "Preprocessor": 3 },
+ "38": { "Region": 1 },
+ "39": { "RepExec": 2 },
+ "40": { "Screen": 1 },
+ "41": { "ScriptingTutorialPart1": 3 },
+ "42": { "ScriptingTutorialPart2": 1 },
+ "43": { "ScriptKeywords": 1 },
+ "44": { "Settingupthegame": 2 },
+ "45": { "Setup": 1 },
+ "46": { "Slider": 1 },
+ "47": { "Speech": 1 },
+ "48": { "System": 2 },
+ "49": { "SystemLimits": 2 },
+ "50": { "Translations": 1 },
+ "51": { "Tumbleweed": 2 },
+ "52": { "Tumbleweed_actions": 1 },
+ "53": { "Tumbleweed_helper": 2 },
+ "54": { "UnicodeSupport": 1 },
+ "55": { "UpgradeTo34": 1 },
+ "56": { "UpgradeTo35": 3 },
+ "57": { "UpgradeTo36": 6 },
+ "58": { "Viewport": 1 }
},
"beware": {
"0": { "CustomDialogOptions": 1 },
@@ -22514,7 +22557,7 @@ var meta = {
"0": { "Button": 1 },
"1": { "DistGame": 1 },
"2": { "EnginePluginRun-timeAPI": 1 },
- "3": { "FAQ": 1 },
+ "3": { "FAQ": 2 },
"4": { "GameSavesCompatibility": 1 },
"5": { "Pointers": 1 },
"6": { "ScriptKeywords": 1 },
@@ -23420,7 +23463,7 @@ var meta = {
"2": { "EditorDialog": 1 },
"3": { "EditorGUI": 4 },
"4": { "EditorLogPanel": 1 },
- "5": { "FAQ": 1 },
+ "5": { "FAQ": 2 },
"6": { "GeneralSettings": 1 },
"7": { "Globalfunctions_General": 1 },
"8": { "GUIControl": 1 },
@@ -23659,7 +23702,7 @@ var meta = {
"5": { "AutonumberSpeechFiles": 1 },
"6": { "BlockingScripts": 1 },
"7": { "Button": 1 },
- "8": { "Character": 10 },
+ "8": { "Character": 11 },
"9": { "Constants": 1 },
"10": { "CustomDialogOptions": 9 },
"11": { "DateTime": 1 },
@@ -24141,7 +24184,7 @@ var meta = {
"15": { "EditorSprite": 2 },
"16": { "EnginePluginRun-timeAPI": 17 },
"17": { "EventTypes": 2 },
- "18": { "FAQ": 2 },
+ "18": { "FAQ": 3 },
"19": { "Game": 3 },
"20": { "GameSavesCompatibility": 4 },
"21": { "Gamevariables": 1 },
@@ -24482,43 +24525,44 @@ var meta = {
"2": { "acintro6": 1 },
"3": { "AudioInScript": 1 },
"4": { "Camera": 1 },
- "5": { "Character": 7 },
+ "5": { "Character": 8 },
"6": { "CustomProperties": 1 },
"7": { "DrawingSurface": 1 },
"8": { "EditorInventoryItems": 1 },
- "9": { "EditorSprite": 1 },
- "10": { "EnginePluginRun-timeAPI": 2 },
- "11": { "Game": 3 },
- "12": { "GameSavesCompatibility": 2 },
- "13": { "GeneralSettings": 3 },
- "14": { "Globalfunctions_General": 2 },
- "15": { "Globalfunctions_Palette": 1 },
- "16": { "GUI": 1 },
- "17": { "Hotspot": 2 },
- "18": { "InventoryItem": 2 },
- "19": { "Mouse": 2 },
- "20": { "Object": 6 },
- "21": { "OOProgramming": 1 },
- "22": { "Preprocessor": 1 },
- "23": { "RepExec": 1 },
- "24": { "Room": 2 },
- "25": { "ScriptKeywords": 1 },
- "26": { "Settingupthegame": 1 },
- "27": { "Slider": 1 },
- "28": { "Speech": 2 },
- "29": { "String": 6 },
- "30": { "System": 1 },
- "31": { "TheScriptHeader": 1 },
- "32": { "Tumbleweed": 2 },
- "33": { "UpgradeTo30": 1 },
- "34": { "UpgradeTo31": 3 },
- "35": { "UpgradeTo32": 2 },
- "36": { "UpgradeTo34": 2 },
- "37": { "UpgradeTo35": 4 },
- "38": { "UpgradeTo36": 1 },
- "39": { "UpgradingTo27": 4 },
- "40": { "ViewFrame": 1 },
- "41": { "Viewport": 1 }
+ "9": { "EditorRoom": 1 },
+ "10": { "EditorSprite": 1 },
+ "11": { "EnginePluginRun-timeAPI": 2 },
+ "12": { "Game": 3 },
+ "13": { "GameSavesCompatibility": 2 },
+ "14": { "GeneralSettings": 3 },
+ "15": { "Globalfunctions_General": 2 },
+ "16": { "Globalfunctions_Palette": 1 },
+ "17": { "GUI": 1 },
+ "18": { "Hotspot": 2 },
+ "19": { "InventoryItem": 2 },
+ "20": { "Mouse": 2 },
+ "21": { "Object": 6 },
+ "22": { "OOProgramming": 1 },
+ "23": { "Preprocessor": 1 },
+ "24": { "RepExec": 1 },
+ "25": { "Room": 2 },
+ "26": { "ScriptKeywords": 1 },
+ "27": { "Settingupthegame": 1 },
+ "28": { "Slider": 1 },
+ "29": { "Speech": 2 },
+ "30": { "String": 6 },
+ "31": { "System": 1 },
+ "32": { "TheScriptHeader": 1 },
+ "33": { "Tumbleweed": 2 },
+ "34": { "UpgradeTo30": 1 },
+ "35": { "UpgradeTo31": 3 },
+ "36": { "UpgradeTo32": 2 },
+ "37": { "UpgradeTo34": 2 },
+ "38": { "UpgradeTo35": 4 },
+ "39": { "UpgradeTo36": 1 },
+ "40": { "UpgradingTo27": 4 },
+ "41": { "ViewFrame": 1 },
+ "42": { "Viewport": 1 }
},
"changes": {
"0": { "acintro3": 1 },
@@ -24657,7 +24701,7 @@ var meta = {
"9": { "AudioChannel": 1 },
"10": { "BlockingScripts": 4 },
"11": { "Camera": 5 },
- "12": { "Character": 275 },
+ "12": { "Character": 280 },
"13": { "ColoursEditor": 1 },
"14": { "CustomDialogOptions": 1 },
"15": { "Dialog": 1 },
@@ -24668,7 +24712,7 @@ var meta = {
"20": { "EditorDialog": 1 },
"21": { "EditorGUI": 1 },
"22": { "EditorInventoryItems": 1 },
- "23": { "EditorRoom": 8 },
+ "23": { "EditorRoom": 10 },
"24": { "EditorSprite": 1 },
"25": { "EditorView": 12 },
"26": { "EnginePluginRun-timeAPI": 13 },
@@ -24767,7 +24811,7 @@ var meta = {
"5": { "acintro8": 3 },
"6": { "acintro9": 2 },
"7": { "AdvancedRoomFeatures": 6 },
- "8": { "Character": 19 },
+ "8": { "Character": 20 },
"9": { "CustomProperties": 2 },
"10": { "Debuggingfeatures": 1 },
"11": { "DynamicArrays": 1 },
@@ -24914,9 +24958,10 @@ var meta = {
"4": { "EditorDialog": 2 },
"5": { "EditorSprite": 1 },
"6": { "EditorView": 3 },
- "7": { "GeneralSettings": 1 },
- "8": { "GUI": 2 },
- "9": { "UpgradeTo35": 1 }
+ "7": { "EngineConfigFile": 1 },
+ "8": { "GeneralSettings": 1 },
+ "9": { "GUI": 2 },
+ "10": { "UpgradeTo35": 1 }
},
"checkboxes": {
"0": { "Settingupthegame": 1 }
@@ -24992,16 +25037,17 @@ var meta = {
"2": { "acintro5": 1 },
"3": { "acintro6": 1 },
"4": { "DistGame": 1 },
- "5": { "EditorSprite": 1 },
- "6": { "Gamevariables": 1 },
- "7": { "GeneralSettings": 4 },
- "8": { "GraphicsDriver": 1 },
- "9": { "Setup": 2 },
- "10": { "TemplateSierraStyle": 1 },
- "11": { "UnicodeSupport": 1 },
- "12": { "UpgradeTo34": 1 },
- "13": { "UpgradeTo36": 1 },
- "14": { "UpgradeTo361": 1 }
+ "5": { "EditorRoom": 1 },
+ "6": { "EditorSprite": 1 },
+ "7": { "Gamevariables": 1 },
+ "8": { "GeneralSettings": 4 },
+ "9": { "GraphicsDriver": 1 },
+ "10": { "Setup": 2 },
+ "11": { "TemplateSierraStyle": 1 },
+ "12": { "UnicodeSupport": 1 },
+ "13": { "UpgradeTo34": 1 },
+ "14": { "UpgradeTo36": 1 },
+ "15": { "UpgradeTo361": 1 }
},
"choices": {
"0": { "acintro1": 1 },
@@ -25227,7 +25273,7 @@ var meta = {
"21": { "EditorSprite": 3 },
"22": { "EngineConfigFile": 3 },
"23": { "EventTypes": 5 },
- "24": { "FAQ": 4 },
+ "24": { "FAQ": 5 },
"25": { "Game": 1 },
"26": { "GameEventsOrder": 1 },
"27": { "Gamevariables": 2 },
@@ -25340,7 +25386,7 @@ var meta = {
"11": { "EnginePluginDesign-timeAPI": 1 },
"12": { "EnginePluginRun-timeAPI": 2 },
"13": { "EventTypes": 24 },
- "14": { "FAQ": 1 },
+ "14": { "FAQ": 3 },
"15": { "Game": 1 },
"16": { "Globalfunctions_Event": 4 },
"17": { "Globalfunctions_General": 5 },
@@ -25847,7 +25893,7 @@ var meta = {
"23": { "EditorDialog": 2 },
"24": { "EditorGUI": 1 },
"25": { "EditorLogPanel": 1 },
- "26": { "EditorRoom": 2 },
+ "26": { "EditorRoom": 3 },
"27": { "EditorSprite": 4 },
"28": { "EnginePluginRun-timeAPI": 13 },
"29": { "EventTypes": 3 },
@@ -26082,27 +26128,28 @@ var meta = {
"4": { "CustomDialogOptions": 1 },
"5": { "DrawingSurface": 1 },
"6": { "DynamicSprite": 1 },
- "7": { "FAQ": 1 },
- "8": { "File": 1 },
- "9": { "GameSavesCompatibility": 3 },
- "10": { "GeneralSettings": 8 },
- "11": { "Globalfunctions_Event": 2 },
- "12": { "Globalfunctions_General": 2 },
- "13": { "GraphicsDriver": 1 },
- "14": { "InventoryItem": 1 },
- "15": { "Object": 1 },
- "16": { "OtherFeatures": 1 },
- "17": { "Room": 1 },
- "18": { "ScriptAPIOverview": 1 },
- "19": { "ScriptKeywords": 1 },
- "20": { "UnicodeSupport": 2 },
- "21": { "UpgradeTo32": 1 },
- "22": { "UpgradeTo33": 2 },
- "23": { "UpgradeTo335": 1 },
- "24": { "UpgradeTo34": 1 },
- "25": { "UpgradeTo35": 1 },
- "26": { "UpgradeTo36": 3 },
- "27": { "UpgradingTo271": 2 }
+ "7": { "EditorRoom": 1 },
+ "8": { "FAQ": 1 },
+ "9": { "File": 1 },
+ "10": { "GameSavesCompatibility": 3 },
+ "11": { "GeneralSettings": 8 },
+ "12": { "Globalfunctions_Event": 2 },
+ "13": { "Globalfunctions_General": 2 },
+ "14": { "GraphicsDriver": 1 },
+ "15": { "InventoryItem": 1 },
+ "16": { "Object": 1 },
+ "17": { "OtherFeatures": 1 },
+ "18": { "Room": 1 },
+ "19": { "ScriptAPIOverview": 1 },
+ "20": { "ScriptKeywords": 1 },
+ "21": { "UnicodeSupport": 2 },
+ "22": { "UpgradeTo32": 1 },
+ "23": { "UpgradeTo33": 2 },
+ "24": { "UpgradeTo335": 1 },
+ "25": { "UpgradeTo34": 1 },
+ "26": { "UpgradeTo35": 1 },
+ "27": { "UpgradeTo36": 3 },
+ "28": { "UpgradingTo271": 2 }
},
"compatible": {
"0": { "EditorSprite": 1 },
@@ -26400,9 +26447,10 @@ var meta = {
"2": { "EditorCursor": 1 },
"3": { "EditorFont": 1 },
"4": { "EditorGUI": 2 },
- "5": { "MIDI-playback": 1 },
- "6": { "TemplateSierraStyle": 1 },
- "7": { "UpgradeTo36": 1 }
+ "5": { "EditorRoom": 1 },
+ "6": { "MIDI-playback": 1 },
+ "7": { "TemplateSierraStyle": 1 },
+ "8": { "UpgradeTo36": 1 }
},
"configured": {
"0": { "acintro9": 1 },
@@ -26892,18 +26940,19 @@ var meta = {
"4": { "EditorGUI": 1 },
"5": { "EditorInventoryItems": 1 },
"6": { "EditorSprite": 1 },
- "7": { "Game": 1 },
- "8": { "GameSavesCompatibility": 2 },
- "9": { "Gamevariables": 1 },
- "10": { "GeneralSettings": 6 },
- "11": { "Globalfunctions_General": 1 },
- "12": { "GUI": 9 },
- "13": { "GUIControl": 17 },
- "14": { "ListBox": 1 },
- "15": { "MusicAndSound": 1 },
- "16": { "Templates": 1 },
- "17": { "TemplateVerbcoin": 1 },
- "18": { "UpgradingTo27": 3 }
+ "7": { "FAQ": 3 },
+ "8": { "Game": 1 },
+ "9": { "GameSavesCompatibility": 2 },
+ "10": { "Gamevariables": 1 },
+ "11": { "GeneralSettings": 6 },
+ "12": { "Globalfunctions_General": 1 },
+ "13": { "GUI": 9 },
+ "14": { "GUIControl": 17 },
+ "15": { "ListBox": 1 },
+ "16": { "MusicAndSound": 1 },
+ "17": { "Templates": 1 },
+ "18": { "TemplateVerbcoin": 1 },
+ "19": { "UpgradingTo27": 3 }
},
"convenience": {
"0": { "ExtenderFunctions": 1 },
@@ -27022,7 +27071,7 @@ var meta = {
"0": { "acintro3": 2 },
"1": { "acintro7": 1 },
"2": { "Camera": 3 },
- "3": { "Character": 5 },
+ "3": { "Character": 6 },
"4": { "DrawingSurface": 1 },
"5": { "EditorRoom": 1 },
"6": { "Game": 3 },
@@ -27192,31 +27241,32 @@ var meta = {
"6": { "TroubleshootingWindowsZoneID": 1 }
},
"corresponding": {
- "0": { "Constants": 3 },
- "1": { "DistGame": 2 },
- "2": { "EditorDialog": 1 },
- "3": { "EditorRoom": 1 },
- "4": { "EnginePluginRun-timeAPI": 2 },
- "5": { "Globalfunctions_Event": 3 },
- "6": { "Globalfunctions_General": 1 },
- "7": { "Globalfunctions_Wait": 1 },
- "8": { "Keycodes": 2 },
- "9": { "Lipsync": 2 },
- "10": { "ListBox": 2 },
- "11": { "Plugins": 1 },
- "12": { "Screen": 2 },
- "13": { "StringFormats": 1 },
- "14": { "Translations": 2 },
- "15": { "Tumbleweed": 2 },
- "16": { "Tumbleweed_door": 1 },
- "17": { "UnicodeSupport": 1 },
- "18": { "UpgradeTo32": 1 },
- "19": { "UpgradeTo33": 1 },
- "20": { "UpgradeTo341": 2 },
- "21": { "UpgradeTo35": 1 },
- "22": { "UpgradeTo36": 2 },
- "23": { "UpgradeTo361": 1 },
- "24": { "Viewport": 2 }
+ "0": { "Character": 1 },
+ "1": { "Constants": 3 },
+ "2": { "DistGame": 2 },
+ "3": { "EditorDialog": 1 },
+ "4": { "EditorRoom": 1 },
+ "5": { "EnginePluginRun-timeAPI": 2 },
+ "6": { "Globalfunctions_Event": 3 },
+ "7": { "Globalfunctions_General": 1 },
+ "8": { "Globalfunctions_Wait": 1 },
+ "9": { "Keycodes": 2 },
+ "10": { "Lipsync": 2 },
+ "11": { "ListBox": 2 },
+ "12": { "Plugins": 1 },
+ "13": { "Screen": 2 },
+ "14": { "StringFormats": 1 },
+ "15": { "Translations": 2 },
+ "16": { "Tumbleweed": 2 },
+ "17": { "Tumbleweed_door": 1 },
+ "18": { "UnicodeSupport": 1 },
+ "19": { "UpgradeTo32": 1 },
+ "20": { "UpgradeTo33": 1 },
+ "21": { "UpgradeTo341": 2 },
+ "22": { "UpgradeTo35": 1 },
+ "23": { "UpgradeTo36": 2 },
+ "24": { "UpgradeTo361": 1 },
+ "25": { "Viewport": 2 }
},
"correspondingly": {
"0": { "GeneralSettings": 1 }
@@ -27416,7 +27466,8 @@ var meta = {
"covering": {
"0": { "DefaultSetup": 1 },
"1": { "EngineConfigFile": 1 },
- "2": { "UpgradeTo35": 1 }
+ "2": { "FAQ": 1 },
+ "3": { "UpgradeTo35": 1 }
},
"covers": {
"0": { "Character": 1 },
@@ -27757,7 +27808,7 @@ var meta = {
"2": { "acintro7": 1 },
"3": { "acintro8": 1 },
"4": { "AnonymousUsageInfo": 1 },
- "5": { "AudioChannel": 11 },
+ "5": { "AudioChannel": 10 },
"6": { "AudioClip": 1 },
"7": { "Button": 9 },
"8": { "Character": 15 },
@@ -27830,36 +27881,37 @@ var meta = {
"8": { "EditorCursor": 15 },
"9": { "EditorGUI": 3 },
"10": { "EditorInventoryItems": 9 },
- "11": { "EditorSprite": 1 },
- "12": { "EngineConfigFile": 5 },
- "13": { "EnginePluginRun-timeAPI": 10 },
- "14": { "EventTypes": 3 },
- "15": { "Game": 2 },
- "16": { "GameEventsOrder": 4 },
- "17": { "GameSavesCompatibility": 1 },
- "18": { "GeneralSettings": 13 },
- "19": { "Globalfunctions_General": 9 },
- "20": { "GUI": 3 },
- "21": { "Hotspot": 2 },
- "22": { "InventoryItem": 9 },
- "23": { "Label": 2 },
- "24": { "Mouse": 57 },
- "25": { "Object": 3 },
- "26": { "Region": 2 },
- "27": { "Room": 3 },
- "28": { "Screen": 3 },
- "29": { "Settingupthegame": 15 },
- "30": { "Setup": 1 },
- "31": { "StandardEnums": 1 },
- "32": { "TemplateBASS": 4 },
- "33": { "TemplateSierraStyle": 4 },
- "34": { "TemplateVerbcoin": 2 },
- "35": { "Tumbleweed": 2 },
- "36": { "Tumbleweed_actions": 2 },
- "37": { "Tumbleweed_helper": 1 },
- "38": { "UpgradeTo35": 2 },
- "39": { "UpgradeTo361": 1 },
- "40": { "Viewport": 3 }
+ "11": { "EditorRoom": 1 },
+ "12": { "EditorSprite": 1 },
+ "13": { "EngineConfigFile": 5 },
+ "14": { "EnginePluginRun-timeAPI": 10 },
+ "15": { "EventTypes": 3 },
+ "16": { "Game": 2 },
+ "17": { "GameEventsOrder": 4 },
+ "18": { "GameSavesCompatibility": 1 },
+ "19": { "GeneralSettings": 13 },
+ "20": { "Globalfunctions_General": 9 },
+ "21": { "GUI": 3 },
+ "22": { "Hotspot": 2 },
+ "23": { "InventoryItem": 9 },
+ "24": { "Label": 2 },
+ "25": { "Mouse": 57 },
+ "26": { "Object": 3 },
+ "27": { "Region": 2 },
+ "28": { "Room": 3 },
+ "29": { "Screen": 3 },
+ "30": { "Settingupthegame": 15 },
+ "31": { "Setup": 1 },
+ "32": { "StandardEnums": 1 },
+ "33": { "TemplateBASS": 4 },
+ "34": { "TemplateSierraStyle": 4 },
+ "35": { "TemplateVerbcoin": 2 },
+ "36": { "Tumbleweed": 2 },
+ "37": { "Tumbleweed_actions": 2 },
+ "38": { "Tumbleweed_helper": 1 },
+ "39": { "UpgradeTo35": 2 },
+ "40": { "UpgradeTo361": 1 },
+ "41": { "Viewport": 3 }
},
"cursor's": {
"0": { "acintro9": 1 },
@@ -28404,7 +28456,7 @@ var meta = {
"8": { "AudioChannel": 2 },
"9": { "Button": 5 },
"10": { "Camera": 4 },
- "11": { "Character": 30 },
+ "11": { "Character": 31 },
"12": { "Constants": 1 },
"13": { "CustomDialogOptions": 1 },
"14": { "CustomProperties": 6 },
@@ -28423,7 +28475,7 @@ var meta = {
"27": { "EditorPreferences": 2 },
"28": { "EditorRoom": 1 },
"29": { "EditorView": 1 },
- "30": { "EngineConfigFile": 8 },
+ "30": { "EngineConfigFile": 9 },
"31": { "EnginePluginRun-timeAPI": 4 },
"32": { "FAQ": 1 },
"33": { "File": 1 },
@@ -28588,23 +28640,24 @@ var meta = {
"4": { "EditorDialog": 1 },
"5": { "EditorFont": 2 },
"6": { "EditorGUI": 2 },
- "7": { "EngineConfigFile": 1 },
- "8": { "EnginePluginRun-timeAPI": 1 },
- "9": { "EventTypes": 1 },
- "10": { "GeneralSettings": 8 },
- "11": { "Globalfunctions_General": 1 },
- "12": { "Globalfunctions_Message": 2 },
- "13": { "Keycodes": 1 },
- "14": { "Multimedia": 1 },
- "15": { "Overlay": 1 },
- "16": { "ScriptAPIOverview": 4 },
- "17": { "ScriptingTutorialPart1": 1 },
- "18": { "Set": 2 },
- "19": { "Settingupthegame": 1 },
- "20": { "Tumbleweed_actions": 1 },
- "21": { "Tumbleweed_translation": 3 },
- "22": { "UpgradeTo34": 2 },
- "23": { "UpgradeTo35": 1 }
+ "7": { "EditorRoom": 1 },
+ "8": { "EngineConfigFile": 1 },
+ "9": { "EnginePluginRun-timeAPI": 1 },
+ "10": { "EventTypes": 1 },
+ "11": { "GeneralSettings": 8 },
+ "12": { "Globalfunctions_General": 1 },
+ "13": { "Globalfunctions_Message": 2 },
+ "14": { "Keycodes": 1 },
+ "15": { "Multimedia": 1 },
+ "16": { "Overlay": 1 },
+ "17": { "ScriptAPIOverview": 4 },
+ "18": { "ScriptingTutorialPart1": 1 },
+ "19": { "Set": 2 },
+ "20": { "Settingupthegame": 1 },
+ "21": { "Tumbleweed_actions": 1 },
+ "22": { "Tumbleweed_translation": 3 },
+ "23": { "UpgradeTo34": 2 },
+ "24": { "UpgradeTo35": 1 }
},
"defining": {
"0": { "DialogScript": 1 },
@@ -28652,13 +28705,14 @@ var meta = {
"0": { "acintro7": 1 },
"1": { "Button": 2 },
"2": { "Character": 9 },
- "3": { "EditorView": 9 },
- "4": { "GeneralSettings": 5 },
- "5": { "Globalfunctions_Screen": 1 },
- "6": { "Object": 2 },
- "7": { "Settingupthegame": 1 },
- "8": { "Speech": 6 },
- "9": { "UpgradeTo33": 5 }
+ "3": { "EditorRoom": 1 },
+ "4": { "EditorView": 9 },
+ "5": { "GeneralSettings": 5 },
+ "6": { "Globalfunctions_Screen": 1 },
+ "7": { "Object": 2 },
+ "8": { "Settingupthegame": 1 },
+ "9": { "Speech": 6 },
+ "10": { "UpgradeTo33": 5 }
},
"delays": {
"0": { "Game": 1 }
@@ -28877,27 +28931,28 @@ var meta = {
"4": { "CustomDialogOptions": 1 },
"5": { "CustomProperties": 2 },
"6": { "EditorPreferences": 2 },
- "7": { "EnginePluginDesign-timeAPI": 1 },
- "8": { "EnginePluginRun-timeAPI": 10 },
- "9": { "Game": 3 },
- "10": { "Gamevariables": 1 },
- "11": { "GeneralSettings": 1 },
- "12": { "Globalfunctions_General": 3 },
- "13": { "Hotspot": 5 },
- "14": { "InventoryItem": 5 },
- "15": { "Object": 5 },
- "16": { "Overlay": 2 },
- "17": { "Parser": 1 },
- "18": { "Room": 6 },
- "19": { "ScriptingTutorialPart1": 5 },
- "20": { "ScriptModules": 1 },
- "21": { "System": 1 },
- "22": { "TemplateVerbcoin": 3 },
- "23": { "TextParser": 1 },
- "24": { "Tumbleweed": 6 },
- "25": { "Tumbleweed_extensions": 1 },
- "26": { "UpgradingTo27": 1 },
- "27": { "UpgradingTo271": 1 }
+ "7": { "EditorRoom": 1 },
+ "8": { "EnginePluginDesign-timeAPI": 1 },
+ "9": { "EnginePluginRun-timeAPI": 10 },
+ "10": { "Game": 3 },
+ "11": { "Gamevariables": 1 },
+ "12": { "GeneralSettings": 1 },
+ "13": { "Globalfunctions_General": 3 },
+ "14": { "Hotspot": 5 },
+ "15": { "InventoryItem": 5 },
+ "16": { "Object": 5 },
+ "17": { "Overlay": 2 },
+ "18": { "Parser": 1 },
+ "19": { "Room": 6 },
+ "20": { "ScriptingTutorialPart1": 5 },
+ "21": { "ScriptModules": 1 },
+ "22": { "System": 1 },
+ "23": { "TemplateVerbcoin": 3 },
+ "24": { "TextParser": 1 },
+ "25": { "Tumbleweed": 6 },
+ "26": { "Tumbleweed_extensions": 1 },
+ "27": { "UpgradingTo27": 1 },
+ "28": { "UpgradingTo271": 1 }
},
"descriptions": {
"0": { "CustomProperties": 1 },
@@ -28968,7 +29023,7 @@ var meta = {
},
"desktop": {
"0": { "DefaultSetup": 2 },
- "1": { "EngineConfigFile": 7 },
+ "1": { "EngineConfigFile": 8 },
"2": { "GeneralSettings": 1 },
"3": { "Setup": 1 }
},
@@ -29533,7 +29588,7 @@ var meta = {
"directly": {
"0": { "acintro9": 1 },
"1": { "BuildAndroid": 1 },
- "2": { "Character": 6 },
+ "2": { "Character": 7 },
"3": { "DefaultSetup": 1 },
"4": { "Dictionary": 1 },
"5": { "DistGame": 1 },
@@ -29608,9 +29663,9 @@ var meta = {
"0": { "acintro9": 1 },
"1": { "AdvancedRoomFeatures": 1 },
"2": { "Camera": 2 },
- "3": { "Character": 4 },
+ "3": { "Character": 5 },
"4": { "EditorGUI": 2 },
- "5": { "EngineConfigFile": 5 },
+ "5": { "EngineConfigFile": 6 },
"6": { "EnginePluginRun-timeAPI": 1 },
"7": { "Gamevariables": 2 },
"8": { "GeneralSettings": 1 },
@@ -29637,35 +29692,37 @@ var meta = {
"disabled": {
"0": { "AnonymousUsageInfo": 1 },
"1": { "Camera": 3 },
- "2": { "Constants": 2 },
- "3": { "CustomDialogOptions": 1 },
- "4": { "DefaultSetup": 1 },
- "5": { "Dialog": 4 },
- "6": { "EditorDialog": 1 },
- "7": { "EditorGUI": 4 },
- "8": { "EditorLogPanel": 1 },
- "9": { "EngineConfigFile": 2 },
- "10": { "EnginePluginRun-timeAPI": 1 },
- "11": { "Gamevariables": 1 },
- "12": { "GeneralSettings": 5 },
- "13": { "Globalfunctions_General": 9 },
- "14": { "Globalfunctions_Message": 1 },
- "15": { "Globalfunctions_Room": 2 },
- "16": { "GUI": 3 },
- "17": { "GUIControl": 3 },
- "18": { "ListBox": 1 },
- "19": { "Mouse": 3 },
- "20": { "OOProgramming": 1 },
- "21": { "Preprocessor": 2 },
- "22": { "Region": 1 },
- "23": { "ScriptAPIOverview": 1 },
- "24": { "Setup": 1 },
- "25": { "Speech": 2 },
- "26": { "TemplateBASS": 1 },
- "27": { "TemplateVerbcoin": 1 },
- "28": { "Tumbleweed_helper": 1 },
- "29": { "UpgradeTo36": 1 },
- "30": { "Viewport": 1 }
+ "2": { "Character": 2 },
+ "3": { "Constants": 2 },
+ "4": { "CustomDialogOptions": 1 },
+ "5": { "DefaultSetup": 1 },
+ "6": { "Dialog": 4 },
+ "7": { "EditorDialog": 1 },
+ "8": { "EditorGUI": 4 },
+ "9": { "EditorLogPanel": 1 },
+ "10": { "EditorRoom": 2 },
+ "11": { "EngineConfigFile": 2 },
+ "12": { "EnginePluginRun-timeAPI": 1 },
+ "13": { "Gamevariables": 1 },
+ "14": { "GeneralSettings": 5 },
+ "15": { "Globalfunctions_General": 9 },
+ "16": { "Globalfunctions_Message": 1 },
+ "17": { "Globalfunctions_Room": 2 },
+ "18": { "GUI": 3 },
+ "19": { "GUIControl": 3 },
+ "20": { "ListBox": 1 },
+ "21": { "Mouse": 3 },
+ "22": { "OOProgramming": 1 },
+ "23": { "Preprocessor": 2 },
+ "24": { "Region": 1 },
+ "25": { "ScriptAPIOverview": 1 },
+ "26": { "Setup": 1 },
+ "27": { "Speech": 2 },
+ "28": { "TemplateBASS": 1 },
+ "29": { "TemplateVerbcoin": 1 },
+ "30": { "Tumbleweed_helper": 1 },
+ "31": { "UpgradeTo36": 1 },
+ "32": { "Viewport": 1 }
},
"disables": {
"0": { "Camera": 1 },
@@ -30070,7 +30127,7 @@ var meta = {
"38": { "EnginePluginRun-timeAPI": 21 },
"39": { "EventTypes": 2 },
"40": { "ExtenderFunctions": 1 },
- "41": { "FAQ": 10 },
+ "41": { "FAQ": 12 },
"42": { "File": 1 },
"43": { "Game": 5 },
"44": { "GameSavesCompatibility": 1 },
@@ -30685,7 +30742,7 @@ var meta = {
"4": { "AdvancedRoomFeatures": 1 },
"5": { "Button": 2 },
"6": { "Camera": 1 },
- "7": { "Character": 2 },
+ "7": { "Character": 3 },
"8": { "DrawingSurface": 4 },
"9": { "DynamicSprite": 1 },
"10": { "EditorFont": 2 },
@@ -30730,7 +30787,7 @@ var meta = {
"0": { "Character": 2 },
"1": { "DefaultSetup": 7 },
"2": { "DynamicSprite": 1 },
- "3": { "EngineConfigFile": 5 },
+ "3": { "EngineConfigFile": 7 },
"4": { "EnginePluginRun-timeAPI": 20 },
"5": { "Game": 2 },
"6": { "Globalfunctions_General": 1 },
@@ -32516,30 +32573,31 @@ var meta = {
"5": { "Character": 10 },
"6": { "DistGame": 1 },
"7": { "DynamicSprite": 2 },
- "8": { "EngineConfigFile": 1 },
- "9": { "EnginePluginRun-timeAPI": 3 },
- "10": { "Game": 2 },
- "11": { "Gamevariables": 1 },
- "12": { "GeneralSettings": 3 },
- "13": { "Globalfunctions_General": 3 },
- "14": { "Globalfunctions_Palette": 4 },
- "15": { "Globalfunctions_Screen": 2 },
- "16": { "Mouse": 4 },
- "17": { "Multimedia": 1 },
- "18": { "Object": 5 },
- "19": { "Preprocessor": 1 },
- "20": { "Region": 2 },
- "21": { "ScriptingTutorialPart1": 1 },
- "22": { "ScriptKeywords": 1 },
- "23": { "Settingupthegame": 2 },
- "24": { "Setup": 1 },
- "25": { "Speech": 1 },
- "26": { "System": 3 },
- "27": { "TextParser": 1 },
- "28": { "UpgradeTo32": 2 },
- "29": { "UpgradeTo35": 3 },
- "30": { "UpgradingTo27": 1 },
- "31": { "Viewport": 1 }
+ "8": { "EditorRoom": 1 },
+ "9": { "EngineConfigFile": 1 },
+ "10": { "EnginePluginRun-timeAPI": 3 },
+ "11": { "Game": 2 },
+ "12": { "Gamevariables": 1 },
+ "13": { "GeneralSettings": 3 },
+ "14": { "Globalfunctions_General": 3 },
+ "15": { "Globalfunctions_Palette": 4 },
+ "16": { "Globalfunctions_Screen": 2 },
+ "17": { "Mouse": 4 },
+ "18": { "Multimedia": 1 },
+ "19": { "Object": 5 },
+ "20": { "Preprocessor": 1 },
+ "21": { "Region": 2 },
+ "22": { "ScriptingTutorialPart1": 1 },
+ "23": { "ScriptKeywords": 1 },
+ "24": { "Settingupthegame": 2 },
+ "25": { "Setup": 1 },
+ "26": { "Speech": 1 },
+ "27": { "System": 3 },
+ "28": { "TextParser": 1 },
+ "29": { "UpgradeTo32": 2 },
+ "30": { "UpgradeTo35": 3 },
+ "31": { "UpgradingTo27": 1 },
+ "32": { "Viewport": 1 }
},
"effectively": {
"0": { "Character": 2 },
@@ -32624,40 +32682,41 @@ var meta = {
"17": { "EditorView": 1 },
"18": { "EngineConfigFile": 3 },
"19": { "EnginePluginRun-timeAPI": 8 },
- "20": { "File": 4 },
- "21": { "GeneralSettings": 2 },
- "22": { "Globalfunctions_Event": 1 },
- "23": { "Globalfunctions_General": 3 },
- "24": { "Globalfunctions_Message": 1 },
- "25": { "Globalfunctions_Room": 2 },
- "26": { "Globalfunctions_Screen": 1 },
- "27": { "Globalfunctions_Wait": 2 },
- "28": { "GUI": 1 },
- "29": { "GUIControl": 1 },
- "30": { "Hotspot": 1 },
- "31": { "ImportingFunctionsAndVariables": 1 },
- "32": { "InventoryItem": 1 },
- "33": { "InvWindow": 1 },
- "34": { "Maths": 1 },
- "35": { "Mouse": 1 },
- "36": { "Object": 4 },
- "37": { "Overlay": 2 },
- "38": { "Plugins": 1 },
- "39": { "Pointers": 2 },
- "40": { "Room": 1 },
- "41": { "RuntimeEngine": 3 },
- "42": { "Screen": 1 },
- "43": { "ScriptingTutorialPart1": 1 },
- "44": { "ScriptingTutorialPart2": 2 },
- "45": { "ScriptKeywords": 3 },
- "46": { "Settingupthegame": 2 },
- "47": { "Translations": 3 },
- "48": { "UnicodeSupport": 1 },
- "49": { "UpgradeTo341": 1 },
- "50": { "UpgradeTo35": 2 },
- "51": { "UpgradeTo36": 4 },
- "52": { "UpgradeTo361": 1 },
- "53": { "UpgradingTo27": 1 }
+ "20": { "FAQ": 1 },
+ "21": { "File": 4 },
+ "22": { "GeneralSettings": 2 },
+ "23": { "Globalfunctions_Event": 1 },
+ "24": { "Globalfunctions_General": 3 },
+ "25": { "Globalfunctions_Message": 1 },
+ "26": { "Globalfunctions_Room": 2 },
+ "27": { "Globalfunctions_Screen": 1 },
+ "28": { "Globalfunctions_Wait": 2 },
+ "29": { "GUI": 1 },
+ "30": { "GUIControl": 1 },
+ "31": { "Hotspot": 1 },
+ "32": { "ImportingFunctionsAndVariables": 1 },
+ "33": { "InventoryItem": 1 },
+ "34": { "InvWindow": 1 },
+ "35": { "Maths": 1 },
+ "36": { "Mouse": 1 },
+ "37": { "Object": 4 },
+ "38": { "Overlay": 2 },
+ "39": { "Plugins": 1 },
+ "40": { "Pointers": 2 },
+ "41": { "Room": 1 },
+ "42": { "RuntimeEngine": 3 },
+ "43": { "Screen": 1 },
+ "44": { "ScriptingTutorialPart1": 1 },
+ "45": { "ScriptingTutorialPart2": 2 },
+ "46": { "ScriptKeywords": 3 },
+ "47": { "Settingupthegame": 2 },
+ "48": { "Translations": 3 },
+ "49": { "UnicodeSupport": 1 },
+ "50": { "UpgradeTo341": 1 },
+ "51": { "UpgradeTo35": 2 },
+ "52": { "UpgradeTo36": 4 },
+ "53": { "UpgradeTo361": 1 },
+ "54": { "UpgradingTo27": 1 }
},
"ejected": {
"0": { "Multimedia": 1 }
@@ -32866,7 +32925,7 @@ var meta = {
"0": { "acintro1": 1 },
"1": { "acintro8": 1 },
"2": { "Camera": 1 },
- "3": { "Character": 10 },
+ "3": { "Character": 12 },
"4": { "Constants": 7 },
"5": { "CustomDialogOptions": 5 },
"6": { "Debuggingfeatures": 4 },
@@ -33135,14 +33194,15 @@ var meta = {
"5": { "EditorLogPanel": 1 },
"6": { "EditorRoom": 1 },
"7": { "EnginePluginRun-timeAPI": 2 },
- "8": { "Game": 1 },
- "9": { "GameSavesCompatibility": 1 },
- "10": { "ScriptingTutorialPart1": 1 },
- "11": { "StringFormats": 1 },
- "12": { "UnicodeSupport": 1 },
- "13": { "UpgradeTo34": 1 },
- "14": { "UpgradeTo35": 1 },
- "15": { "UpgradeTo36": 1 }
+ "8": { "FAQ": 1 },
+ "9": { "Game": 1 },
+ "10": { "GameSavesCompatibility": 1 },
+ "11": { "ScriptingTutorialPart1": 1 },
+ "12": { "StringFormats": 1 },
+ "13": { "UnicodeSupport": 1 },
+ "14": { "UpgradeTo34": 1 },
+ "15": { "UpgradeTo35": 1 },
+ "16": { "UpgradeTo36": 1 }
},
"ensure": {
"0": { "acintro4": 2 },
@@ -33424,7 +33484,7 @@ var meta = {
"1": { "acintro3": 1 },
"2": { "acintro6": 1 },
"3": { "acintro7": 1 },
- "4": { "Character": 6 },
+ "4": { "Character": 7 },
"5": { "ContactingTheDevelopers": 2 },
"6": { "DefaultSetup": 1 },
"7": { "DistGame": 2 },
@@ -34083,17 +34143,18 @@ var meta = {
},
"exists": {
"0": { "Character": 2 },
- "1": { "File": 4 },
- "2": { "GeneralSettings": 1 },
- "3": { "Globalfunctions_General": 2 },
- "4": { "GUIControl": 1 },
- "5": { "Hotspot": 2 },
- "6": { "InventoryItem": 3 },
- "7": { "MusicAndSound": 1 },
- "8": { "Object": 1 },
- "9": { "Preprocessor": 1 },
- "10": { "Room": 3 },
- "11": { "System": 3 }
+ "1": { "EditorRoom": 1 },
+ "2": { "File": 4 },
+ "3": { "GeneralSettings": 1 },
+ "4": { "Globalfunctions_General": 2 },
+ "5": { "GUIControl": 1 },
+ "6": { "Hotspot": 2 },
+ "7": { "InventoryItem": 3 },
+ "8": { "MusicAndSound": 1 },
+ "9": { "Object": 1 },
+ "10": { "Preprocessor": 1 },
+ "11": { "Room": 3 },
+ "12": { "System": 3 }
},
"exit": {
"0": { "acintro2": 1 },
@@ -34126,6 +34187,9 @@ var meta = {
"1": { "Mouse": 1 },
"2": { "Tumbleweed": 1 }
},
+ "exotic": {
+ "0": { "EditorRoom": 1 }
+ },
"expValue": {
"0": { "Maths": 1 }
},
@@ -34631,31 +34695,32 @@ var meta = {
"4": { "Dictionary": 2 },
"5": { "DynamicSprite": 1 },
"6": { "EnginePluginRun-timeAPI": 2 },
- "7": { "File": 1 },
- "8": { "Game": 6 },
- "9": { "GeneralSettings": 2 },
- "10": { "Globalfunctions_General": 4 },
- "11": { "GUI": 7 },
- "12": { "GUIControl": 13 },
- "13": { "Hotspot": 3 },
- "14": { "InventoryItem": 1 },
- "15": { "InvWindow": 2 },
- "16": { "ListBox": 2 },
- "17": { "Mouse": 3 },
- "18": { "Object": 17 },
- "19": { "Overlay": 3 },
- "20": { "Parser": 1 },
- "21": { "Region": 9 },
- "22": { "Screen": 3 },
- "23": { "ScriptKeywords": 2 },
- "24": { "Set": 3 },
- "25": { "Speech": 1 },
- "26": { "String": 5 },
- "27": { "System": 2 },
- "28": { "TemplateBASS": 2 },
- "29": { "TemplateVerbcoin": 2 },
- "30": { "Tumbleweed_helper": 1 },
- "31": { "Viewport": 4 }
+ "7": { "FAQ": 1 },
+ "8": { "File": 1 },
+ "9": { "Game": 6 },
+ "10": { "GeneralSettings": 2 },
+ "11": { "Globalfunctions_General": 4 },
+ "12": { "GUI": 7 },
+ "13": { "GUIControl": 13 },
+ "14": { "Hotspot": 3 },
+ "15": { "InventoryItem": 1 },
+ "16": { "InvWindow": 2 },
+ "17": { "ListBox": 2 },
+ "18": { "Mouse": 3 },
+ "19": { "Object": 17 },
+ "20": { "Overlay": 3 },
+ "21": { "Parser": 1 },
+ "22": { "Region": 9 },
+ "23": { "Screen": 3 },
+ "24": { "ScriptKeywords": 2 },
+ "25": { "Set": 3 },
+ "26": { "Speech": 1 },
+ "27": { "String": 5 },
+ "28": { "System": 2 },
+ "29": { "TemplateBASS": 2 },
+ "30": { "TemplateVerbcoin": 2 },
+ "31": { "Tumbleweed_helper": 1 },
+ "32": { "Viewport": 4 }
},
"familiar": {
"0": { "acintro1": 1 },
@@ -34822,18 +34887,19 @@ var meta = {
"1": { "acintro7": 1 },
"2": { "Button": 1 },
"3": { "Character": 1 },
- "4": { "FAQ": 2 },
- "5": { "GameSavesCompatibility": 2 },
- "6": { "GeneralSettings": 2 },
- "7": { "Lipsync": 1 },
- "8": { "Multimedia": 2 },
- "9": { "Pointers": 2 },
- "10": { "ScriptingTutorialPart1": 1 },
- "11": { "Templates": 1 },
- "12": { "Translations": 3 },
- "13": { "UpgradeTo35": 1 },
- "14": { "UpgradeTo36": 1 },
- "15": { "UpgradeTo361": 2 }
+ "4": { "EditorRoom": 1 },
+ "5": { "FAQ": 2 },
+ "6": { "GameSavesCompatibility": 2 },
+ "7": { "GeneralSettings": 2 },
+ "8": { "Lipsync": 1 },
+ "9": { "Multimedia": 2 },
+ "10": { "Pointers": 2 },
+ "11": { "ScriptingTutorialPart1": 1 },
+ "12": { "Templates": 1 },
+ "13": { "Translations": 3 },
+ "14": { "UpgradeTo35": 1 },
+ "15": { "UpgradeTo36": 1 },
+ "16": { "UpgradeTo361": 2 }
},
"fhandle": {
"0": { "EnginePluginRun-timeAPI": 1 }
@@ -34984,43 +35050,44 @@ var meta = {
"11": { "DynamicSprite": 1 },
"12": { "EditorPlugins": 1 },
"13": { "EditorPreferences": 2 },
- "14": { "EditorSprite": 11 },
- "15": { "EditorView": 1 },
- "16": { "EngineConfigFile": 2 },
- "17": { "EnginePluginDesign-timeAPI": 1 },
- "18": { "EnginePlugins": 2 },
- "19": { "File": 18 },
- "20": { "Game": 1 },
- "21": { "GameSavesCompatibility": 2 },
- "22": { "Gamevariables": 1 },
- "23": { "GeneralSettings": 7 },
- "24": { "Globalfunctions_General": 1 },
- "25": { "Lipsync": 1 },
- "26": { "ListBox": 4 },
- "27": { "MIDI-playback": 13 },
- "28": { "Multimedia": 1 },
- "29": { "MusicAndSound": 11 },
- "30": { "OtherFeatures": 1 },
- "31": { "Plugins": 2 },
- "32": { "RuntimeEngine": 5 },
- "33": { "ScriptModules": 1 },
- "34": { "Setup": 2 },
- "35": { "SourceControl": 3 },
- "36": { "Templates": 6 },
- "37": { "Translations": 1 },
- "38": { "TroubleshootingWindowsZoneID": 5 },
- "39": { "Tumbleweed": 1 },
- "40": { "UnicodeSupport": 2 },
- "41": { "UpgradeTo30": 2 },
- "42": { "UpgradeTo32": 6 },
- "43": { "UpgradeTo33": 1 },
- "44": { "UpgradeTo335": 1 },
- "45": { "UpgradeTo34": 1 },
- "46": { "UpgradeTo341": 4 },
- "47": { "UpgradeTo35": 2 },
- "48": { "UpgradeTo36": 10 },
- "49": { "UpgradeTo361": 2 },
- "50": { "VoiceSpeech": 9 }
+ "14": { "EditorRoom": 1 },
+ "15": { "EditorSprite": 11 },
+ "16": { "EditorView": 1 },
+ "17": { "EngineConfigFile": 2 },
+ "18": { "EnginePluginDesign-timeAPI": 1 },
+ "19": { "EnginePlugins": 2 },
+ "20": { "File": 18 },
+ "21": { "Game": 1 },
+ "22": { "GameSavesCompatibility": 2 },
+ "23": { "Gamevariables": 1 },
+ "24": { "GeneralSettings": 7 },
+ "25": { "Globalfunctions_General": 1 },
+ "26": { "Lipsync": 1 },
+ "27": { "ListBox": 4 },
+ "28": { "MIDI-playback": 13 },
+ "29": { "Multimedia": 1 },
+ "30": { "MusicAndSound": 11 },
+ "31": { "OtherFeatures": 1 },
+ "32": { "Plugins": 2 },
+ "33": { "RuntimeEngine": 5 },
+ "34": { "ScriptModules": 1 },
+ "35": { "Setup": 2 },
+ "36": { "SourceControl": 3 },
+ "37": { "Templates": 6 },
+ "38": { "Translations": 1 },
+ "39": { "TroubleshootingWindowsZoneID": 5 },
+ "40": { "Tumbleweed": 1 },
+ "41": { "UnicodeSupport": 2 },
+ "42": { "UpgradeTo30": 2 },
+ "43": { "UpgradeTo32": 6 },
+ "44": { "UpgradeTo33": 1 },
+ "45": { "UpgradeTo335": 1 },
+ "46": { "UpgradeTo34": 1 },
+ "47": { "UpgradeTo341": 4 },
+ "48": { "UpgradeTo35": 2 },
+ "49": { "UpgradeTo36": 10 },
+ "50": { "UpgradeTo361": 2 },
+ "51": { "VoiceSpeech": 9 }
},
"filesize": {
"0": { "DistGame": 1 }
@@ -35333,7 +35400,7 @@ var meta = {
"2": { "Dictionary": 1 },
"3": { "EditorGUI": 2 },
"4": { "EnginePluginDesign-timeAPI": 1 },
- "5": { "FAQ": 1 },
+ "5": { "FAQ": 2 },
"6": { "InvWindow": 1 },
"7": { "Set": 1 },
"8": { "Settingupthegame": 1 },
@@ -36042,21 +36109,22 @@ var meta = {
"2": { "AdvancedRoomFeatures": 2 },
"3": { "Button": 3 },
"4": { "Character": 9 },
- "5": { "EditorSprite": 3 },
- "6": { "EditorView": 5 },
- "7": { "EnginePluginRun-timeAPI": 3 },
- "8": { "Game": 3 },
- "9": { "GameSavesCompatibility": 3 },
- "10": { "GeneralSettings": 1 },
- "11": { "Globalfunctions_General": 2 },
- "12": { "Globalfunctions_Room": 2 },
- "13": { "Globalfunctions_Wait": 2 },
- "14": { "Lipsync": 4 },
- "15": { "Object": 2 },
- "16": { "RepExec": 1 },
- "17": { "Settingupthegame": 4 },
- "18": { "SystemLimits": 1 },
- "19": { "UpgradeTo36": 1 }
+ "5": { "EditorRoom": 2 },
+ "6": { "EditorSprite": 3 },
+ "7": { "EditorView": 5 },
+ "8": { "EnginePluginRun-timeAPI": 3 },
+ "9": { "Game": 3 },
+ "10": { "GameSavesCompatibility": 3 },
+ "11": { "GeneralSettings": 1 },
+ "12": { "Globalfunctions_General": 2 },
+ "13": { "Globalfunctions_Room": 2 },
+ "14": { "Globalfunctions_Wait": 2 },
+ "15": { "Lipsync": 4 },
+ "16": { "Object": 2 },
+ "17": { "RepExec": 1 },
+ "18": { "Settingupthegame": 4 },
+ "19": { "SystemLimits": 1 },
+ "20": { "UpgradeTo36": 1 }
},
"francais": {
"0": { "Game": 2 },
@@ -36167,7 +36235,7 @@ var meta = {
"42": { "EditorPlugins": 5 },
"43": { "EditorSprite": 14 },
"44": { "EditorView": 3 },
- "45": { "EngineConfigFile": 4 },
+ "45": { "EngineConfigFile": 5 },
"46": { "EnginePluginDesign-timeAPI": 3 },
"47": { "EnginePluginRun-timeAPI": 53 },
"48": { "EventTypes": 3 },
@@ -36316,7 +36384,7 @@ var meta = {
},
"fullscreen": {
"0": { "DefaultSetup": 4 },
- "1": { "EngineConfigFile": 9 },
+ "1": { "EngineConfigFile": 12 },
"2": { "Mouse": 2 },
"3": { "Multimedia": 1 },
"4": { "RuntimeEngine": 2 },
@@ -36370,7 +36438,7 @@ var meta = {
"6": { "BlockingScripts": 3 },
"7": { "Button": 2 },
"8": { "Camera": 2 },
- "9": { "Character": 62 },
+ "9": { "Character": 63 },
"10": { "CustomDialogOptions": 20 },
"11": { "DateTime": 2 },
"12": { "Dialog": 12 },
@@ -36384,85 +36452,86 @@ var meta = {
"20": { "EditorGUI": 3 },
"21": { "EditorInventoryItems": 2 },
"22": { "EditorLogPanel": 1 },
- "23": { "EditorView": 3 },
- "24": { "EnginePluginDesign-timeAPI": 13 },
- "25": { "EnginePluginRun-timeAPI": 104 },
- "26": { "EventTypes": 56 },
- "27": { "ExtenderFunctions": 14 },
- "28": { "FAQ": 15 },
- "29": { "File": 14 },
- "30": { "Game": 33 },
- "31": { "GameEventsOrder": 2 },
- "32": { "GameSavesCompatibility": 11 },
- "33": { "Gamevariables": 2 },
- "34": { "GeneralSettings": 20 },
- "35": { "Globalfunctions_Event": 16 },
- "36": { "Globalfunctions_General": 48 },
- "37": { "Globalfunctions_Message": 6 },
- "38": { "Globalfunctions_Palette": 5 },
- "39": { "Globalfunctions_Room": 12 },
- "40": { "Globalfunctions_Screen": 5 },
- "41": { "Globalfunctions_Wait": 2 },
- "42": { "GUI": 7 },
- "43": { "GUIControl": 7 },
- "44": { "Hotspot": 13 },
- "45": { "ImportingFunctionsAndVariables": 8 },
- "46": { "InventoryItem": 13 },
- "47": { "Keycodes": 2 },
- "48": { "ListBox": 3 },
- "49": { "Maths": 5 },
- "50": { "Mouse": 11 },
- "51": { "Multimedia": 5 },
- "52": { "MultipleScripts": 12 },
- "53": { "Object": 25 },
- "54": { "OOProgramming": 2 },
- "55": { "Overlay": 6 },
- "56": { "Parser": 2 },
- "57": { "Plugins": 1 },
- "58": { "Pointers": 6 },
- "59": { "Preprocessor": 2 },
- "60": { "Region": 4 },
- "61": { "RepExec": 7 },
- "62": { "Room": 11 },
- "63": { "Screen": 2 },
- "64": { "ScriptAPIOverview": 2 },
- "65": { "ScriptingTutorialPart1": 16 },
- "66": { "ScriptingTutorialPart2": 22 },
- "67": { "ScriptKeywords": 52 },
- "68": { "ScriptModules": 1 },
- "69": { "Set": 1 },
- "70": { "Settingupthegame": 3 },
- "71": { "Speech": 2 },
- "72": { "StandardEnums": 2 },
- "73": { "String": 26 },
- "74": { "System": 4 },
- "75": { "SystemLimits": 3 },
- "76": { "TemplateBASS": 1 },
- "77": { "TemplateVerbcoin": 1 },
- "78": { "TextParser": 2 },
- "79": { "TextWindowGUI": 5 },
- "80": { "TheScriptHeader": 1 },
- "81": { "Translations": 5 },
- "82": { "Tumbleweed": 20 },
- "83": { "Tumbleweed_actions": 7 },
- "84": { "Tumbleweed_door": 11 },
- "85": { "Tumbleweed_extensions": 3 },
- "86": { "Tumbleweed_helper": 3 },
- "87": { "Tumbleweed_movement": 10 },
- "88": { "Tumbleweed_player": 6 },
- "89": { "Tumbleweed_translation": 12 },
- "90": { "Tumbleweed_unhandled": 5 },
- "91": { "UnicodeSupport": 1 },
- "92": { "UpgradeTo30": 1 },
- "93": { "UpgradeTo33": 2 },
- "94": { "UpgradeTo34": 7 },
- "95": { "UpgradeTo35": 10 },
- "96": { "UpgradeTo36": 13 },
- "97": { "UpgradeTo361": 7 },
- "98": { "UpgradingTo27": 7 },
- "99": { "UpgradingTo271": 3 },
- "100": { "Viewport": 6 },
- "101": { "VoiceSpeech": 4 }
+ "23": { "EditorRoom": 1 },
+ "24": { "EditorView": 3 },
+ "25": { "EnginePluginDesign-timeAPI": 13 },
+ "26": { "EnginePluginRun-timeAPI": 104 },
+ "27": { "EventTypes": 56 },
+ "28": { "ExtenderFunctions": 14 },
+ "29": { "FAQ": 15 },
+ "30": { "File": 14 },
+ "31": { "Game": 33 },
+ "32": { "GameEventsOrder": 2 },
+ "33": { "GameSavesCompatibility": 11 },
+ "34": { "Gamevariables": 2 },
+ "35": { "GeneralSettings": 20 },
+ "36": { "Globalfunctions_Event": 16 },
+ "37": { "Globalfunctions_General": 48 },
+ "38": { "Globalfunctions_Message": 6 },
+ "39": { "Globalfunctions_Palette": 5 },
+ "40": { "Globalfunctions_Room": 12 },
+ "41": { "Globalfunctions_Screen": 5 },
+ "42": { "Globalfunctions_Wait": 2 },
+ "43": { "GUI": 7 },
+ "44": { "GUIControl": 7 },
+ "45": { "Hotspot": 13 },
+ "46": { "ImportingFunctionsAndVariables": 8 },
+ "47": { "InventoryItem": 13 },
+ "48": { "Keycodes": 2 },
+ "49": { "ListBox": 3 },
+ "50": { "Maths": 5 },
+ "51": { "Mouse": 11 },
+ "52": { "Multimedia": 5 },
+ "53": { "MultipleScripts": 12 },
+ "54": { "Object": 25 },
+ "55": { "OOProgramming": 2 },
+ "56": { "Overlay": 6 },
+ "57": { "Parser": 2 },
+ "58": { "Plugins": 1 },
+ "59": { "Pointers": 6 },
+ "60": { "Preprocessor": 2 },
+ "61": { "Region": 4 },
+ "62": { "RepExec": 7 },
+ "63": { "Room": 11 },
+ "64": { "Screen": 2 },
+ "65": { "ScriptAPIOverview": 2 },
+ "66": { "ScriptingTutorialPart1": 16 },
+ "67": { "ScriptingTutorialPart2": 22 },
+ "68": { "ScriptKeywords": 52 },
+ "69": { "ScriptModules": 1 },
+ "70": { "Set": 1 },
+ "71": { "Settingupthegame": 3 },
+ "72": { "Speech": 2 },
+ "73": { "StandardEnums": 2 },
+ "74": { "String": 26 },
+ "75": { "System": 4 },
+ "76": { "SystemLimits": 3 },
+ "77": { "TemplateBASS": 1 },
+ "78": { "TemplateVerbcoin": 1 },
+ "79": { "TextParser": 2 },
+ "80": { "TextWindowGUI": 5 },
+ "81": { "TheScriptHeader": 1 },
+ "82": { "Translations": 5 },
+ "83": { "Tumbleweed": 20 },
+ "84": { "Tumbleweed_actions": 7 },
+ "85": { "Tumbleweed_door": 11 },
+ "86": { "Tumbleweed_extensions": 3 },
+ "87": { "Tumbleweed_helper": 3 },
+ "88": { "Tumbleweed_movement": 10 },
+ "89": { "Tumbleweed_player": 6 },
+ "90": { "Tumbleweed_translation": 12 },
+ "91": { "Tumbleweed_unhandled": 5 },
+ "92": { "UnicodeSupport": 1 },
+ "93": { "UpgradeTo30": 1 },
+ "94": { "UpgradeTo33": 2 },
+ "95": { "UpgradeTo34": 7 },
+ "96": { "UpgradeTo35": 10 },
+ "97": { "UpgradeTo36": 13 },
+ "98": { "UpgradeTo361": 7 },
+ "99": { "UpgradingTo27": 7 },
+ "100": { "UpgradingTo271": 3 },
+ "101": { "Viewport": 6 },
+ "102": { "VoiceSpeech": 4 }
},
"function's": {
"0": { "FAQ": 1 },
@@ -36757,7 +36826,7 @@ var meta = {
"44": { "EditorLogPanel": 3 },
"45": { "EditorPlugins": 2 },
"46": { "EditorPreferences": 4 },
- "47": { "EditorRoom": 2 },
+ "47": { "EditorRoom": 3 },
"48": { "EditorSprite": 8 },
"49": { "EditorView": 4 },
"50": { "EngineConfigFile": 43 },
@@ -36766,7 +36835,7 @@ var meta = {
"53": { "EnginePlugins": 2 },
"54": { "EventTypes": 5 },
"55": { "ExtenderFunctions": 2 },
- "56": { "FAQ": 25 },
+ "56": { "FAQ": 27 },
"57": { "File": 14 },
"58": { "Game": 64 },
"59": { "GameEventsOrder": 6 },
@@ -37176,7 +37245,11 @@ var meta = {
"7": { "Tumbleweed_extensions": 1 }
},
"gfxdriver": {
- "0": { "RuntimeEngine": 1 }
+ "0": { "EngineConfigFile": 1 },
+ "1": { "RuntimeEngine": 1 }
+ },
+ "gfxdrivers": {
+ "0": { "EngineConfigFile": 1 }
},
"gfxfilter": {
"0": { "RuntimeEngine": 4 }
@@ -37607,7 +37680,7 @@ var meta = {
"7": { "DistGame": 1 },
"8": { "DynamicSprite": 1 },
"9": { "EditorGUI": 3 },
- "10": { "EngineConfigFile": 4 },
+ "10": { "EngineConfigFile": 5 },
"11": { "EnginePluginRun-timeAPI": 11 },
"12": { "EventTypes": 1 },
"13": { "FAQ": 1 },
@@ -38165,13 +38238,13 @@ var meta = {
"28": { "EditorGUI": 1 },
"29": { "EditorInventoryItems": 1 },
"30": { "EditorPlugins": 1 },
- "31": { "EditorRoom": 1 },
+ "31": { "EditorRoom": 6 },
"32": { "EditorSprite": 1 },
"33": { "EngineConfigFile": 1 },
"34": { "EnginePluginDesign-timeAPI": 1 },
"35": { "EnginePluginRun-timeAPI": 24 },
"36": { "EventTypes": 5 },
- "37": { "FAQ": 3 },
+ "37": { "FAQ": 4 },
"38": { "File": 6 },
"39": { "Game": 18 },
"40": { "GameSavesCompatibility": 2 },
@@ -38281,7 +38354,7 @@ var meta = {
"13": { "BuildAndroid": 3 },
"14": { "Button": 4 },
"15": { "Camera": 2 },
- "16": { "Character": 28 },
+ "16": { "Character": 31 },
"17": { "ColoursEditor": 1 },
"18": { "Constants": 1 },
"19": { "ContactingTheDevelopers": 1 },
@@ -38301,7 +38374,7 @@ var meta = {
"33": { "EditorFont": 3 },
"34": { "EditorGUI": 5 },
"35": { "EditorPlugins": 5 },
- "36": { "EditorRoom": 2 },
+ "36": { "EditorRoom": 4 },
"37": { "EditorSprite": 7 },
"38": { "EditorView": 5 },
"39": { "EngineConfigFile": 1 },
@@ -38310,7 +38383,7 @@ var meta = {
"42": { "EnginePlugins": 2 },
"43": { "EventTypes": 5 },
"44": { "ExtenderFunctions": 1 },
- "45": { "FAQ": 10 },
+ "45": { "FAQ": 11 },
"46": { "File": 7 },
"47": { "Game": 6 },
"48": { "GameSavesCompatibility": 10 },
@@ -38748,32 +38821,33 @@ var meta = {
"2": { "DefaultSetup": 3 },
"3": { "DrawingSurface": 1 },
"4": { "EditorFont": 1 },
- "5": { "EngineConfigFile": 1 },
- "6": { "EnginePluginRun-timeAPI": 2 },
- "7": { "FAQ": 1 },
- "8": { "Game": 3 },
- "9": { "Gamevariables": 1 },
- "10": { "GeneralSettings": 2 },
- "11": { "Globalfunctions_General": 2 },
- "12": { "Globalfunctions_Room": 1 },
- "13": { "GraphicsDriver": 2 },
- "14": { "GUI": 2 },
- "15": { "Hotspot": 1 },
- "16": { "ListBox": 1 },
- "17": { "Mouse": 1 },
- "18": { "MusicAndSound": 3 },
- "19": { "Object": 1 },
- "20": { "Overlay": 1 },
- "21": { "Preprocessor": 1 },
- "22": { "Setup": 2 },
- "23": { "Slider": 1 },
- "24": { "StandardEnums": 5 },
- "25": { "System": 3 },
- "26": { "SystemRequirements": 2 },
- "27": { "TemplateBASS": 1 },
- "28": { "UpgradeTo31": 1 },
- "29": { "UpgradeTo35": 2 },
- "30": { "Viewport": 1 }
+ "5": { "EditorRoom": 1 },
+ "6": { "EngineConfigFile": 1 },
+ "7": { "EnginePluginRun-timeAPI": 2 },
+ "8": { "FAQ": 1 },
+ "9": { "Game": 3 },
+ "10": { "Gamevariables": 1 },
+ "11": { "GeneralSettings": 2 },
+ "12": { "Globalfunctions_General": 2 },
+ "13": { "Globalfunctions_Room": 1 },
+ "14": { "GraphicsDriver": 2 },
+ "15": { "GUI": 2 },
+ "16": { "Hotspot": 1 },
+ "17": { "ListBox": 1 },
+ "18": { "Mouse": 1 },
+ "19": { "MusicAndSound": 3 },
+ "20": { "Object": 1 },
+ "21": { "Overlay": 1 },
+ "22": { "Preprocessor": 1 },
+ "23": { "Setup": 2 },
+ "24": { "Slider": 1 },
+ "25": { "StandardEnums": 5 },
+ "26": { "System": 3 },
+ "27": { "SystemRequirements": 2 },
+ "28": { "TemplateBASS": 1 },
+ "29": { "UpgradeTo31": 1 },
+ "30": { "UpgradeTo35": 2 },
+ "31": { "Viewport": 1 }
},
"highest": {
"0": { "Dialog": 5 },
@@ -38964,7 +39038,7 @@ var meta = {
"8": { "EditorCursor": 2 },
"9": { "EditorGUI": 1 },
"10": { "EditorInventoryItems": 4 },
- "11": { "EditorRoom": 2 },
+ "11": { "EditorRoom": 4 },
"12": { "EnginePluginRun-timeAPI": 1 },
"13": { "EventTypes": 21 },
"14": { "FAQ": 1 },
@@ -39267,7 +39341,7 @@ var meta = {
"3": { "Templates": 1 }
},
"id": {
- "0": { "EngineConfigFile": 5 },
+ "0": { "EngineConfigFile": 6 },
"1": { "GlobalArrays": 3 },
"2": { "Globalfunctions_General": 2 },
"3": { "Pointers": 1 },
@@ -39472,7 +39546,7 @@ var meta = {
"1": { "acintro7": 3 },
"2": { "Button": 2 },
"3": { "EditorGUI": 1 },
- "4": { "EditorRoom": 3 },
+ "4": { "EditorRoom": 2 },
"5": { "EditorSprite": 8 },
"6": { "EnginePluginRun-timeAPI": 2 },
"7": { "Gamevariables": 2 },
@@ -39504,6 +39578,9 @@ var meta = {
"10": { "Settingupthegame": 1 },
"11": { "TemplateVerbcoin": 1 }
},
+ "immobile": {
+ "0": { "EditorRoom": 1 }
+ },
"implement": {
"0": { "acintro8": 1 },
"1": { "CustomDialogOptions": 2 },
@@ -39792,25 +39869,26 @@ var meta = {
"9": { "UpgradeTo36": 2 }
},
"including": {
- "0": { "Copyright": 1 },
- "1": { "CustomDialogOptions": 1 },
- "2": { "DialogScript": 1 },
- "3": { "DrawingSurface": 1 },
- "4": { "EditorPlugins": 1 },
- "5": { "EditorSprite": 2 },
- "6": { "EnginePluginDesign-timeAPI": 1 },
- "7": { "ExtenderFunctions": 1 },
- "8": { "GeneralSettings": 1 },
- "9": { "MultipleScripts": 1 },
- "10": { "ScriptKeywords": 3 },
- "11": { "Settingupthegame": 1 },
- "12": { "SystemRequirements": 1 },
- "13": { "TextParser": 1 },
- "14": { "Tumbleweed": 1 },
- "15": { "Tumbleweed_movement": 1 },
- "16": { "UpgradeTo35": 1 },
- "17": { "UpgradeTo361": 1 },
- "18": { "UpgradingTo27": 1 }
+ "0": { "Character": 1 },
+ "1": { "Copyright": 1 },
+ "2": { "CustomDialogOptions": 1 },
+ "3": { "DialogScript": 1 },
+ "4": { "DrawingSurface": 1 },
+ "5": { "EditorPlugins": 1 },
+ "6": { "EditorSprite": 2 },
+ "7": { "EnginePluginDesign-timeAPI": 1 },
+ "8": { "ExtenderFunctions": 1 },
+ "9": { "GeneralSettings": 1 },
+ "10": { "MultipleScripts": 1 },
+ "11": { "ScriptKeywords": 3 },
+ "12": { "Settingupthegame": 1 },
+ "13": { "SystemRequirements": 1 },
+ "14": { "TextParser": 1 },
+ "15": { "Tumbleweed": 1 },
+ "16": { "Tumbleweed_movement": 1 },
+ "17": { "UpgradeTo35": 1 },
+ "18": { "UpgradeTo361": 1 },
+ "19": { "UpgradingTo27": 1 }
},
"inclusive": {
"0": { "Game": 1 },
@@ -40040,39 +40118,40 @@ var meta = {
"12": { "EditorDialog": 1 },
"13": { "EditorGUI": 2 },
"14": { "EditorPlugins": 1 },
- "15": { "EnginePluginRun-timeAPI": 1 },
- "16": { "EnginePlugins": 1 },
- "17": { "File": 2 },
- "18": { "Game": 1 },
- "19": { "GameSavesCompatibility": 1 },
- "20": { "GeneralSettings": 4 },
- "21": { "Globalfunctions_Event": 3 },
- "22": { "Globalfunctions_Message": 6 },
- "23": { "GlobalVariables": 2 },
- "24": { "GUI": 1 },
- "25": { "GUIControl": 1 },
- "26": { "Multimedia": 1 },
- "27": { "MusicAndSound": 1 },
- "28": { "Overlay": 2 },
- "29": { "Preprocessor": 1 },
- "30": { "RepExec": 1 },
- "31": { "RuntimeEngine": 3 },
- "32": { "ScriptAPIOverview": 5 },
- "33": { "ScriptingTutorialPart1": 2 },
- "34": { "ScriptingTutorialPart2": 1 },
- "35": { "ScriptKeywords": 1 },
- "36": { "Settingupthegame": 6 },
- "37": { "String": 1 },
- "38": { "TextParser": 1 },
- "39": { "TheScriptHeader": 1 },
- "40": { "UnicodeSupport": 1 },
- "41": { "UpgradeTo32": 1 },
- "42": { "UpgradeTo34": 1 },
- "43": { "UpgradeTo341": 1 },
- "44": { "UpgradeTo35": 2 },
- "45": { "UpgradeTo36": 1 },
- "46": { "UpgradeTo361": 1 },
- "47": { "UpgradingTo27": 1 }
+ "15": { "EditorRoom": 1 },
+ "16": { "EnginePluginRun-timeAPI": 1 },
+ "17": { "EnginePlugins": 1 },
+ "18": { "File": 2 },
+ "19": { "Game": 1 },
+ "20": { "GameSavesCompatibility": 1 },
+ "21": { "GeneralSettings": 4 },
+ "22": { "Globalfunctions_Event": 3 },
+ "23": { "Globalfunctions_Message": 6 },
+ "24": { "GlobalVariables": 2 },
+ "25": { "GUI": 1 },
+ "26": { "GUIControl": 1 },
+ "27": { "Multimedia": 1 },
+ "28": { "MusicAndSound": 1 },
+ "29": { "Overlay": 2 },
+ "30": { "Preprocessor": 1 },
+ "31": { "RepExec": 1 },
+ "32": { "RuntimeEngine": 3 },
+ "33": { "ScriptAPIOverview": 5 },
+ "34": { "ScriptingTutorialPart1": 2 },
+ "35": { "ScriptingTutorialPart2": 1 },
+ "36": { "ScriptKeywords": 1 },
+ "37": { "Settingupthegame": 6 },
+ "38": { "String": 1 },
+ "39": { "TextParser": 1 },
+ "40": { "TheScriptHeader": 1 },
+ "41": { "UnicodeSupport": 1 },
+ "42": { "UpgradeTo32": 1 },
+ "43": { "UpgradeTo34": 1 },
+ "44": { "UpgradeTo341": 1 },
+ "45": { "UpgradeTo35": 2 },
+ "46": { "UpgradeTo36": 1 },
+ "47": { "UpgradeTo361": 1 },
+ "48": { "UpgradingTo27": 1 }
},
"informational": {
"0": { "EnginePluginRun-timeAPI": 3 }
@@ -40441,7 +40520,7 @@ var meta = {
"1": { "AudioClip": 4 },
"2": { "Button": 13 },
"3": { "Camera": 10 },
- "4": { "Character": 89 },
+ "4": { "Character": 90 },
"5": { "Constants": 1 },
"6": { "CustomDialogOptions": 17 },
"7": { "DateTime": 8 },
@@ -40629,6 +40708,9 @@ var meta = {
"5": { "Tumbleweed": 1 },
"6": { "UpgradeTo30": 3 }
},
+ "interactive": {
+ "0": { "FAQ": 1 }
+ },
"interactivity": {
"0": { "acintro5": 1 },
"1": { "EditorGUI": 1 },
@@ -40925,15 +41007,16 @@ var meta = {
"invisible": {
"0": { "acintro7": 2 },
"1": { "Character": 2 },
- "2": { "EnginePluginRun-timeAPI": 1 },
- "3": { "GameSavesCompatibility": 1 },
- "4": { "GUI": 3 },
- "5": { "GUIControl": 3 },
- "6": { "InvWindow": 1 },
- "7": { "Mouse": 1 },
- "8": { "Object": 2 },
- "9": { "Tumbleweed_door": 1 },
- "10": { "Tumbleweed_movement": 1 }
+ "2": { "EditorRoom": 1 },
+ "3": { "EnginePluginRun-timeAPI": 1 },
+ "4": { "GameSavesCompatibility": 1 },
+ "5": { "GUI": 3 },
+ "6": { "GUIControl": 3 },
+ "7": { "InvWindow": 1 },
+ "8": { "Mouse": 1 },
+ "9": { "Object": 2 },
+ "10": { "Tumbleweed_door": 1 },
+ "11": { "Tumbleweed_movement": 1 }
},
"invoke": {
"0": { "acintro9": 1 }
@@ -41026,48 +41109,49 @@ var meta = {
"19": { "EditorLogPanel": 1 },
"20": { "EditorPlugins": 1 },
"21": { "EditorPreferences": 2 },
- "22": { "EnginePluginRun-timeAPI": 1 },
- "23": { "FAQ": 5 },
- "24": { "GameEventsOrder": 1 },
- "25": { "GameSavesCompatibility": 2 },
- "26": { "GeneralSettings": 4 },
- "27": { "GlobalArrays": 1 },
- "28": { "Globalfunctions_General": 2 },
- "29": { "GlobalVariables": 1 },
- "30": { "GUIControl": 1 },
- "31": { "ImportingFunctionsAndVariables": 1 },
- "32": { "InventoryItem": 1 },
- "33": { "Lipsync": 1 },
- "34": { "Mouse": 2 },
- "35": { "Multimedia": 2 },
- "36": { "Object": 2 },
- "37": { "OOProgramming": 1 },
- "38": { "Overlay": 1 },
- "39": { "Pointers": 8 },
- "40": { "Preprocessor": 3 },
- "41": { "RuntimeEngine": 1 },
- "42": { "Screen": 2 },
- "43": { "ScriptAPIOverview": 1 },
- "44": { "ScriptingTutorialPart1": 3 },
- "45": { "ScriptingTutorialPart2": 1 },
- "46": { "ScriptKeywords": 2 },
- "47": { "Settingupthegame": 1 },
- "48": { "String": 1 },
- "49": { "System": 2 },
- "50": { "SystemRequirements": 1 },
- "51": { "TroubleshootingWindowsZoneID": 3 },
- "52": { "Tumbleweed": 2 },
- "53": { "Tumbleweed_extensions": 3 },
- "54": { "Tumbleweed_helper": 1 },
- "55": { "Tumbleweed_movement": 11 },
- "56": { "Tumbleweed_translation": 1 },
- "57": { "UnicodeSupport": 5 },
- "58": { "UpgradeTo30": 1 },
- "59": { "UpgradeTo35": 1 },
- "60": { "UpgradeTo36": 2 },
- "61": { "UpgradeTo361": 2 },
- "62": { "UpgradingTo27": 5 },
- "63": { "Viewport": 3 }
+ "22": { "EditorRoom": 1 },
+ "23": { "EnginePluginRun-timeAPI": 1 },
+ "24": { "FAQ": 5 },
+ "25": { "GameEventsOrder": 1 },
+ "26": { "GameSavesCompatibility": 2 },
+ "27": { "GeneralSettings": 4 },
+ "28": { "GlobalArrays": 1 },
+ "29": { "Globalfunctions_General": 2 },
+ "30": { "GlobalVariables": 1 },
+ "31": { "GUIControl": 1 },
+ "32": { "ImportingFunctionsAndVariables": 1 },
+ "33": { "InventoryItem": 1 },
+ "34": { "Lipsync": 1 },
+ "35": { "Mouse": 2 },
+ "36": { "Multimedia": 2 },
+ "37": { "Object": 2 },
+ "38": { "OOProgramming": 1 },
+ "39": { "Overlay": 1 },
+ "40": { "Pointers": 8 },
+ "41": { "Preprocessor": 3 },
+ "42": { "RuntimeEngine": 1 },
+ "43": { "Screen": 2 },
+ "44": { "ScriptAPIOverview": 1 },
+ "45": { "ScriptingTutorialPart1": 3 },
+ "46": { "ScriptingTutorialPart2": 1 },
+ "47": { "ScriptKeywords": 2 },
+ "48": { "Settingupthegame": 1 },
+ "49": { "String": 1 },
+ "50": { "System": 2 },
+ "51": { "SystemRequirements": 1 },
+ "52": { "TroubleshootingWindowsZoneID": 3 },
+ "53": { "Tumbleweed": 2 },
+ "54": { "Tumbleweed_extensions": 3 },
+ "55": { "Tumbleweed_helper": 1 },
+ "56": { "Tumbleweed_movement": 11 },
+ "57": { "Tumbleweed_translation": 1 },
+ "58": { "UnicodeSupport": 5 },
+ "59": { "UpgradeTo30": 1 },
+ "60": { "UpgradeTo35": 1 },
+ "61": { "UpgradeTo36": 2 },
+ "62": { "UpgradeTo361": 2 },
+ "63": { "UpgradingTo27": 5 },
+ "64": { "Viewport": 3 }
},
"item": {
"0": { "acintro3": 1 },
@@ -41206,7 +41290,7 @@ var meta = {
"22": { "EditorFont": 1 },
"23": { "EditorGUI": 4 },
"24": { "EditorPlugins": 2 },
- "25": { "EditorRoom": 6 },
+ "25": { "EditorRoom": 7 },
"26": { "EditorSprite": 2 },
"27": { "EnginePluginDesign-timeAPI": 1 },
"28": { "EnginePluginRun-timeAPI": 19 },
@@ -41285,26 +41369,27 @@ var meta = {
"10": { "EditorFont": 2 },
"11": { "EditorGUI": 2 },
"12": { "EditorInventoryItems": 2 },
- "13": { "EnginePluginRun-timeAPI": 5 },
- "14": { "FAQ": 2 },
- "15": { "Game": 1 },
- "16": { "GameSavesCompatibility": 1 },
- "17": { "Maths": 2 },
- "18": { "Plugins": 1 },
- "19": { "Pointers": 3 },
- "20": { "Preprocessor": 1 },
- "21": { "RepExec": 1 },
- "22": { "Room": 1 },
- "23": { "ScriptKeywords": 6 },
- "24": { "Setup": 1 },
- "25": { "SourceControl": 1 },
- "26": { "SystemLimits": 1 },
- "27": { "TemplateSierraStyle": 1 },
- "28": { "Tumbleweed_unhandled": 1 },
- "29": { "UpgradeTo34": 1 },
- "30": { "UpgradeTo341": 1 },
- "31": { "UpgradeTo35": 1 },
- "32": { "VoiceSpeech": 1 }
+ "13": { "EditorRoom": 1 },
+ "14": { "EnginePluginRun-timeAPI": 5 },
+ "15": { "FAQ": 2 },
+ "16": { "Game": 1 },
+ "17": { "GameSavesCompatibility": 1 },
+ "18": { "Maths": 2 },
+ "19": { "Plugins": 1 },
+ "20": { "Pointers": 3 },
+ "21": { "Preprocessor": 1 },
+ "22": { "RepExec": 1 },
+ "23": { "Room": 1 },
+ "24": { "ScriptKeywords": 6 },
+ "25": { "Setup": 1 },
+ "26": { "SourceControl": 1 },
+ "27": { "SystemLimits": 1 },
+ "28": { "TemplateSierraStyle": 1 },
+ "29": { "Tumbleweed_unhandled": 1 },
+ "30": { "UpgradeTo34": 1 },
+ "31": { "UpgradeTo341": 1 },
+ "32": { "UpgradeTo35": 1 },
+ "33": { "VoiceSpeech": 1 }
},
"jack": {
"0": { "EngineConfigFile": 1 }
@@ -41929,34 +42014,35 @@ var meta = {
"5": { "DialogScript": 1 },
"6": { "EditorDialog": 1 },
"7": { "EditorFont": 1 },
- "8": { "EnginePluginRun-timeAPI": 4 },
- "9": { "Game": 3 },
- "10": { "GameSavesCompatibility": 1 },
- "11": { "Gamevariables": 4 },
- "12": { "GeneralSettings": 2 },
- "13": { "Globalfunctions_Message": 1 },
- "14": { "Globalfunctions_Palette": 1 },
- "15": { "Globalfunctions_Room": 3 },
- "16": { "GraphicsDriver": 1 },
- "17": { "Hotspot": 1 },
- "18": { "InvWindow": 1 },
- "19": { "ListBox": 1 },
- "20": { "Mouse": 1 },
- "21": { "Object": 4 },
- "22": { "Overlay": 2 },
- "23": { "Parser": 1 },
- "24": { "Region": 1 },
- "25": { "RepExec": 1 },
- "26": { "Room": 1 },
- "27": { "ScriptingTutorialPart1": 1 },
- "28": { "ScriptKeywords": 1 },
- "29": { "Settingupthegame": 1 },
- "30": { "String": 3 },
- "31": { "Tumbleweed": 2 },
- "32": { "Tumbleweed_translation": 1 },
- "33": { "UpgradeTo36": 1 },
- "34": { "UpgradeTo361": 1 },
- "35": { "Viewport": 1 }
+ "8": { "EditorRoom": 1 },
+ "9": { "EnginePluginRun-timeAPI": 4 },
+ "10": { "Game": 3 },
+ "11": { "GameSavesCompatibility": 1 },
+ "12": { "Gamevariables": 4 },
+ "13": { "GeneralSettings": 2 },
+ "14": { "Globalfunctions_Message": 1 },
+ "15": { "Globalfunctions_Palette": 1 },
+ "16": { "Globalfunctions_Room": 3 },
+ "17": { "GraphicsDriver": 1 },
+ "18": { "Hotspot": 1 },
+ "19": { "InvWindow": 1 },
+ "20": { "ListBox": 1 },
+ "21": { "Mouse": 1 },
+ "22": { "Object": 4 },
+ "23": { "Overlay": 2 },
+ "24": { "Parser": 1 },
+ "25": { "Region": 1 },
+ "26": { "RepExec": 1 },
+ "27": { "Room": 1 },
+ "28": { "ScriptingTutorialPart1": 1 },
+ "29": { "ScriptKeywords": 1 },
+ "30": { "Settingupthegame": 1 },
+ "31": { "String": 3 },
+ "32": { "Tumbleweed": 2 },
+ "33": { "Tumbleweed_translation": 1 },
+ "34": { "UpgradeTo36": 1 },
+ "35": { "UpgradeTo361": 1 },
+ "36": { "Viewport": 1 }
},
"lastSpeech": {
"0": { "Speech": 6 }
@@ -42236,7 +42322,7 @@ var meta = {
"7": { "ScriptKeywords": 1 }
},
"leaving": {
- "0": { "Character": 1 },
+ "0": { "Character": 2 },
"1": { "Globalfunctions_Event": 3 },
"2": { "MusicAndSound": 1 }
},
@@ -42373,22 +42459,23 @@ var meta = {
"1": { "ColoursEditor": 1 },
"2": { "DefaultSetup": 1 },
"3": { "DistGame": 1 },
- "4": { "EditorSprite": 1 },
- "5": { "EngineConfigFile": 1 },
- "6": { "EnginePluginRun-timeAPI": 6 },
- "7": { "GameSavesCompatibility": 3 },
- "8": { "GeneralSettings": 5 },
- "9": { "Globalfunctions_General": 1 },
- "10": { "ScriptingTutorialPart1": 3 },
- "11": { "ScriptingTutorialPart2": 1 },
- "12": { "ScriptKeywords": 3 },
- "13": { "Setup": 1 },
- "14": { "String": 1 },
- "15": { "System": 1 },
- "16": { "TemplateBASS": 3 },
- "17": { "TheScriptHeader": 1 },
- "18": { "UpgradeTo35": 2 },
- "19": { "UpgradingTo27": 1 }
+ "4": { "EditorRoom": 1 },
+ "5": { "EditorSprite": 1 },
+ "6": { "EngineConfigFile": 1 },
+ "7": { "EnginePluginRun-timeAPI": 6 },
+ "8": { "GameSavesCompatibility": 3 },
+ "9": { "GeneralSettings": 5 },
+ "10": { "Globalfunctions_General": 1 },
+ "11": { "ScriptingTutorialPart1": 3 },
+ "12": { "ScriptingTutorialPart2": 1 },
+ "13": { "ScriptKeywords": 3 },
+ "14": { "Setup": 1 },
+ "15": { "String": 1 },
+ "16": { "System": 1 },
+ "17": { "TemplateBASS": 3 },
+ "18": { "TheScriptHeader": 1 },
+ "19": { "UpgradeTo35": 2 },
+ "20": { "UpgradingTo27": 1 }
},
"let": {
"0": { "acintro3": 1 },
@@ -42400,7 +42487,7 @@ var meta = {
"6": { "EditorSprite": 2 },
"7": { "EngineConfigFile": 1 },
"8": { "EnginePluginDesign-timeAPI": 1 },
- "9": { "FAQ": 1 },
+ "9": { "FAQ": 2 },
"10": { "GeneralSettings": 2 },
"11": { "Globalfunctions_Wait": 1 },
"12": { "ImportingFunctionsAndVariables": 2 },
@@ -42440,7 +42527,7 @@ var meta = {
"0": { "acintro8": 1 },
"1": { "Button": 2 },
"2": { "Camera": 1 },
- "3": { "Character": 2 },
+ "3": { "Character": 3 },
"4": { "ColoursEditor": 1 },
"5": { "CustomDialogOptions": 1 },
"6": { "DefaultSetup": 4 },
@@ -42448,24 +42535,25 @@ var meta = {
"8": { "DialogScript": 1 },
"9": { "DynamicSprite": 2 },
"10": { "EditorFont": 1 },
- "11": { "EngineConfigFile": 2 },
- "12": { "EnginePluginRun-timeAPI": 1 },
- "13": { "ExtenderFunctions": 1 },
- "14": { "GeneralSettings": 2 },
- "15": { "Globalfunctions_Wait": 5 },
- "16": { "ImportingFunctionsAndVariables": 1 },
- "17": { "Object": 2 },
- "18": { "Pointers": 1 },
- "19": { "ScriptingTutorialPart2": 1 },
- "20": { "ScriptKeywords": 1 },
- "21": { "Translations": 1 },
- "22": { "Tumbleweed_movement": 1 },
- "23": { "UnicodeSupport": 1 },
- "24": { "UpgradeTo33": 1 },
- "25": { "UpgradeTo34": 1 },
- "26": { "UpgradeTo35": 3 },
- "27": { "UpgradeTo36": 5 },
- "28": { "Viewport": 1 }
+ "11": { "EditorRoom": 1 },
+ "12": { "EngineConfigFile": 2 },
+ "13": { "EnginePluginRun-timeAPI": 1 },
+ "14": { "ExtenderFunctions": 1 },
+ "15": { "GeneralSettings": 2 },
+ "16": { "Globalfunctions_Wait": 5 },
+ "17": { "ImportingFunctionsAndVariables": 1 },
+ "18": { "Object": 2 },
+ "19": { "Pointers": 1 },
+ "20": { "ScriptingTutorialPart2": 1 },
+ "21": { "ScriptKeywords": 1 },
+ "22": { "Translations": 1 },
+ "23": { "Tumbleweed_movement": 1 },
+ "24": { "UnicodeSupport": 1 },
+ "25": { "UpgradeTo33": 1 },
+ "26": { "UpgradeTo34": 1 },
+ "27": { "UpgradeTo35": 3 },
+ "28": { "UpgradeTo36": 5 },
+ "29": { "Viewport": 1 }
},
"letter": {
"0": { "EditorGUI": 1 },
@@ -42658,7 +42746,7 @@ var meta = {
"22": { "DynamicArrays": 1 },
"23": { "DynamicSprite": 3 },
"24": { "EditorGUI": 5 },
- "25": { "EditorRoom": 2 },
+ "25": { "EditorRoom": 3 },
"26": { "EditorSprite": 2 },
"27": { "EditorView": 1 },
"28": { "EnginePluginRun-timeAPI": 6 },
@@ -42937,7 +43025,7 @@ var meta = {
"17": { "EditorGUI": 6 },
"18": { "EditorPlugins": 1 },
"19": { "EditorRoom": 1 },
- "20": { "EngineConfigFile": 1 },
+ "20": { "EngineConfigFile": 3 },
"21": { "EnginePluginDesign-timeAPI": 1 },
"22": { "EnginePluginRun-timeAPI": 3 },
"23": { "EnginePlugins": 1 },
@@ -43078,27 +43166,29 @@ var meta = {
"0": { "acintro2": 1 },
"1": { "BuildAndroid": 2 },
"2": { "Camera": 1 },
- "3": { "DefaultSetup": 1 },
- "4": { "DynamicSprite": 4 },
- "5": { "EditorPlugins": 1 },
- "6": { "EditorPreferences": 1 },
- "7": { "EngineConfigFile": 1 },
- "8": { "EnginePluginDesign-timeAPI": 1 },
- "9": { "EnginePluginRun-timeAPI": 7 },
- "10": { "EnginePlugins": 1 },
- "11": { "EventTypes": 1 },
- "12": { "FAQ": 1 },
- "13": { "Game": 3 },
- "14": { "GameSavesCompatibility": 1 },
- "15": { "Globalfunctions_Event": 2 },
- "16": { "Globalfunctions_General": 3 },
- "17": { "Screen": 2 },
- "18": { "Settingupthegame": 2 },
- "19": { "Setup": 1 },
- "20": { "TroubleshootingWindowsZoneID": 1 },
- "21": { "UpgradeTo341": 1 },
- "22": { "UpgradeTo361": 1 },
- "23": { "Viewport": 1 }
+ "3": { "Character": 1 },
+ "4": { "DefaultSetup": 1 },
+ "5": { "DynamicSprite": 4 },
+ "6": { "EditorPlugins": 1 },
+ "7": { "EditorPreferences": 1 },
+ "8": { "EditorRoom": 2 },
+ "9": { "EngineConfigFile": 1 },
+ "10": { "EnginePluginDesign-timeAPI": 1 },
+ "11": { "EnginePluginRun-timeAPI": 7 },
+ "12": { "EnginePlugins": 1 },
+ "13": { "EventTypes": 1 },
+ "14": { "FAQ": 1 },
+ "15": { "Game": 3 },
+ "16": { "GameSavesCompatibility": 1 },
+ "17": { "Globalfunctions_Event": 2 },
+ "18": { "Globalfunctions_General": 3 },
+ "19": { "Screen": 2 },
+ "20": { "Settingupthegame": 2 },
+ "21": { "Setup": 1 },
+ "22": { "TroubleshootingWindowsZoneID": 1 },
+ "23": { "UpgradeTo341": 1 },
+ "24": { "UpgradeTo361": 1 },
+ "25": { "Viewport": 1 }
},
"loading": {
"0": { "Credits": 1 },
@@ -43216,7 +43306,7 @@ var meta = {
"lock": {
"0": { "acintro2": 1 },
"1": { "EditorRoom": 1 },
- "2": { "EngineConfigFile": 8 },
+ "2": { "EngineConfigFile": 9 },
"3": { "Globalfunctions_Room": 3 },
"4": { "Mouse": 1 },
"5": { "ScriptAPIOverview": 1 },
@@ -43668,21 +43758,22 @@ var meta = {
"1": { "AudioClip": 2 },
"2": { "DynamicSprite": 1 },
"3": { "EditorFont": 1 },
- "4": { "EnginePluginRun-timeAPI": 3 },
- "5": { "FAQ": 1 },
- "6": { "GeneralSettings": 2 },
- "7": { "Globalfunctions_General": 1 },
- "8": { "Globalfunctions_Message": 1 },
- "9": { "GUI": 4 },
- "10": { "GUIControl": 1 },
- "11": { "Multimedia": 2 },
- "12": { "Object": 1 },
- "13": { "Overlay": 1 },
- "14": { "ScriptAPIOverview": 1 },
- "15": { "Settingupthegame": 2 },
- "16": { "Slider": 1 },
- "17": { "String": 1 },
- "18": { "Viewport": 1 }
+ "4": { "EditorRoom": 1 },
+ "5": { "EnginePluginRun-timeAPI": 3 },
+ "6": { "FAQ": 1 },
+ "7": { "GeneralSettings": 2 },
+ "8": { "Globalfunctions_General": 1 },
+ "9": { "Globalfunctions_Message": 1 },
+ "10": { "GUI": 4 },
+ "11": { "GUIControl": 1 },
+ "12": { "Multimedia": 2 },
+ "13": { "Object": 1 },
+ "14": { "Overlay": 1 },
+ "15": { "ScriptAPIOverview": 1 },
+ "16": { "Settingupthegame": 2 },
+ "17": { "Slider": 1 },
+ "18": { "String": 1 },
+ "19": { "Viewport": 1 }
},
"lower-left": {
"0": { "Object": 1 }
@@ -43923,7 +44014,7 @@ var meta = {
"34": { "EnginePluginDesign-timeAPI": 1 },
"35": { "EnginePluginRun-timeAPI": 12 },
"36": { "ExtenderFunctions": 1 },
- "37": { "FAQ": 14 },
+ "37": { "FAQ": 15 },
"38": { "File": 1 },
"39": { "Game": 1 },
"40": { "GameSavesCompatibility": 3 },
@@ -44246,7 +44337,7 @@ var meta = {
"0": { "acintro2": 1 },
"1": { "AdvancedRoomFeatures": 3 },
"2": { "DynamicSprite": 2 },
- "3": { "EditorRoom": 3 },
+ "3": { "EditorRoom": 5 },
"4": { "EnginePluginRun-timeAPI": 2 },
"5": { "GeneralSettings": 3 },
"6": { "Globalfunctions_General": 3 },
@@ -44264,7 +44355,7 @@ var meta = {
},
"masks": {
"0": { "acintro3": 1 },
- "1": { "EditorRoom": 2 },
+ "1": { "EditorRoom": 3 },
"2": { "EnginePluginRun-timeAPI": 3 },
"3": { "GameSavesCompatibility": 1 },
"4": { "GeneralSettings": 2 },
@@ -44341,14 +44432,15 @@ var meta = {
"matter": {
"0": { "acintro4": 1 },
"1": { "Character": 1 },
- "2": { "Gamevariables": 1 },
- "3": { "GeneralSettings": 1 },
- "4": { "GlobalVariables": 1 },
- "5": { "GraphicsDriver": 1 },
- "6": { "Preprocessor": 1 },
- "7": { "RepExec": 1 },
- "8": { "ScriptKeywords": 1 },
- "9": { "Tumbleweed_extensions": 1 }
+ "2": { "FAQ": 1 },
+ "3": { "Gamevariables": 1 },
+ "4": { "GeneralSettings": 1 },
+ "5": { "GlobalVariables": 1 },
+ "6": { "GraphicsDriver": 1 },
+ "7": { "Preprocessor": 1 },
+ "8": { "RepExec": 1 },
+ "9": { "ScriptKeywords": 1 },
+ "10": { "Tumbleweed_extensions": 1 }
},
"max": {
"0": { "AdvancedRoomFeatures": 1 },
@@ -44408,7 +44500,7 @@ var meta = {
"11": { "AudioInScript": 3 },
"12": { "BuildAndroid": 1 },
"13": { "Camera": 13 },
- "14": { "Character": 15 },
+ "14": { "Character": 16 },
"15": { "ColoursEditor": 1 },
"16": { "CustomDialogOptions": 7 },
"17": { "DefaultSetup": 5 },
@@ -44428,7 +44520,7 @@ var meta = {
"31": { "EditorGUI": 4 },
"32": { "EditorPlugins": 2 },
"33": { "EditorPreferences": 1 },
- "34": { "EditorRoom": 1 },
+ "34": { "EditorRoom": 5 },
"35": { "EditorSprite": 6 },
"36": { "EngineConfigFile": 8 },
"37": { "EnginePluginDesign-timeAPI": 1 },
@@ -44539,17 +44631,18 @@ var meta = {
"3": { "DialogScript": 1 },
"4": { "DrawingSurface": 1 },
"5": { "DynamicSprite": 1 },
- "6": { "EnginePluginRun-timeAPI": 1 },
- "7": { "Game": 1 },
- "8": { "GameSavesCompatibility": 1 },
- "9": { "Object": 1 },
- "10": { "Plugins": 1 },
- "11": { "Region": 1 },
- "12": { "ScriptKeywords": 1 },
- "13": { "StringFormats": 4 },
- "14": { "System": 1 },
- "15": { "UpgradeTo36": 3 },
- "16": { "Viewport": 1 }
+ "6": { "EditorRoom": 2 },
+ "7": { "EnginePluginRun-timeAPI": 1 },
+ "8": { "Game": 1 },
+ "9": { "GameSavesCompatibility": 1 },
+ "10": { "Object": 1 },
+ "11": { "Plugins": 1 },
+ "12": { "Region": 1 },
+ "13": { "ScriptKeywords": 1 },
+ "14": { "StringFormats": 4 },
+ "15": { "System": 1 },
+ "16": { "UpgradeTo36": 3 },
+ "17": { "Viewport": 1 }
},
"meaningful": {
"0": { "EnginePluginRun-timeAPI": 2 }
@@ -45204,46 +45297,47 @@ var meta = {
"11": { "DefaultSetup": 13 },
"12": { "EditorCursor": 6 },
"13": { "EditorGUI": 3 },
- "14": { "EngineConfigFile": 15 },
- "15": { "EnginePluginRun-timeAPI": 14 },
- "16": { "EnginePlugins": 2 },
- "17": { "EventTypes": 56 },
- "18": { "File": 3 },
- "19": { "Game": 1 },
- "20": { "Gamevariables": 5 },
- "21": { "GeneralSettings": 16 },
- "22": { "GlobalArrays": 1 },
- "23": { "Globalfunctions_Event": 5 },
- "24": { "Globalfunctions_General": 14 },
- "25": { "Hotspot": 2 },
- "26": { "InventoryItem": 3 },
- "27": { "Keycodes": 2 },
- "28": { "Mouse": 28 },
- "29": { "Multimedia": 1 },
- "30": { "Object": 2 },
- "31": { "Region": 1 },
- "32": { "Room": 3 },
- "33": { "RuntimeEngine": 4 },
- "34": { "ScriptKeywords": 2 },
- "35": { "Settingupthegame": 6 },
- "36": { "Setup": 7 },
- "37": { "Speech": 5 },
- "38": { "StandardEnums": 1 },
- "39": { "System": 7 },
- "40": { "TemplateBASS": 3 },
- "41": { "TemplateSierraStyle": 3 },
- "42": { "TemplateVerbcoin": 4 },
- "43": { "Translations": 1 },
- "44": { "Tumbleweed_actions": 1 },
- "45": { "Tumbleweed_helper": 1 },
- "46": { "UnicodeSupport": 9 },
- "47": { "UpgradeTo31": 1 },
- "48": { "UpgradeTo33": 2 },
- "49": { "UpgradeTo34": 1 },
- "50": { "UpgradeTo35": 3 },
- "51": { "UpgradeTo36": 16 },
- "52": { "UpgradeTo361": 5 },
- "53": { "Viewport": 1 }
+ "14": { "EditorRoom": 1 },
+ "15": { "EngineConfigFile": 16 },
+ "16": { "EnginePluginRun-timeAPI": 14 },
+ "17": { "EnginePlugins": 2 },
+ "18": { "EventTypes": 56 },
+ "19": { "File": 3 },
+ "20": { "Game": 1 },
+ "21": { "Gamevariables": 5 },
+ "22": { "GeneralSettings": 16 },
+ "23": { "GlobalArrays": 1 },
+ "24": { "Globalfunctions_Event": 5 },
+ "25": { "Globalfunctions_General": 14 },
+ "26": { "Hotspot": 2 },
+ "27": { "InventoryItem": 3 },
+ "28": { "Keycodes": 2 },
+ "29": { "Mouse": 28 },
+ "30": { "Multimedia": 1 },
+ "31": { "Object": 2 },
+ "32": { "Region": 1 },
+ "33": { "Room": 3 },
+ "34": { "RuntimeEngine": 4 },
+ "35": { "ScriptKeywords": 2 },
+ "36": { "Settingupthegame": 6 },
+ "37": { "Setup": 7 },
+ "38": { "Speech": 5 },
+ "39": { "StandardEnums": 1 },
+ "40": { "System": 7 },
+ "41": { "TemplateBASS": 3 },
+ "42": { "TemplateSierraStyle": 3 },
+ "43": { "TemplateVerbcoin": 4 },
+ "44": { "Translations": 1 },
+ "45": { "Tumbleweed_actions": 1 },
+ "46": { "Tumbleweed_helper": 1 },
+ "47": { "UnicodeSupport": 9 },
+ "48": { "UpgradeTo31": 1 },
+ "49": { "UpgradeTo33": 2 },
+ "50": { "UpgradeTo34": 1 },
+ "51": { "UpgradeTo35": 3 },
+ "52": { "UpgradeTo36": 16 },
+ "53": { "UpgradeTo361": 5 },
+ "54": { "Viewport": 1 }
},
"mode's": {
"0": { "Mouse": 3 }
@@ -45288,16 +45382,17 @@ var meta = {
"0": { "OOProgramming": 1 }
},
"modified": {
- "0": { "DefaultSetup": 1 },
- "1": { "DynamicSprite": 1 },
- "2": { "EditorPreferences": 2 },
- "3": { "EnginePluginRun-timeAPI": 1 },
- "4": { "Gamevariables": 1 },
- "5": { "Mouse": 1 },
- "6": { "Pointers": 1 },
- "7": { "ScriptKeywords": 2 },
- "8": { "TemplateBASS": 1 },
- "9": { "UpgradingTo271": 1 }
+ "0": { "Character": 1 },
+ "1": { "DefaultSetup": 1 },
+ "2": { "DynamicSprite": 1 },
+ "3": { "EditorPreferences": 2 },
+ "4": { "EnginePluginRun-timeAPI": 1 },
+ "5": { "Gamevariables": 1 },
+ "6": { "Mouse": 1 },
+ "7": { "Pointers": 1 },
+ "8": { "ScriptKeywords": 2 },
+ "9": { "TemplateBASS": 1 },
+ "10": { "UpgradingTo271": 1 }
},
"modifier": {
"0": { "Keycodes": 4 },
@@ -45454,7 +45549,7 @@ var meta = {
"18": { "EditorDialog": 1 },
"19": { "EditorGUI": 1 },
"20": { "EditorPlugins": 2 },
- "21": { "EditorRoom": 2 },
+ "21": { "EditorRoom": 3 },
"22": { "EditorSprite": 1 },
"23": { "EnginePluginDesign-timeAPI": 1 },
"24": { "EnginePluginRun-timeAPI": 4 },
@@ -45560,9 +45655,10 @@ var meta = {
},
"mostly": {
"0": { "DefaultSetup": 1 },
- "1": { "EnginePluginRun-timeAPI": 3 },
- "2": { "TemplateVerbcoin": 1 },
- "3": { "UpgradeTo30": 1 }
+ "1": { "EditorRoom": 1 },
+ "2": { "EnginePluginRun-timeAPI": 3 },
+ "3": { "TemplateVerbcoin": 1 },
+ "4": { "UpgradeTo30": 1 }
},
"motion": {
"0": { "DefaultSetup": 1 },
@@ -45701,7 +45797,7 @@ var meta = {
"0": { "Tumbleweed_movement": 1 }
},
"moved": {
- "0": { "Character": 1 },
+ "0": { "Character": 2 },
"1": { "EditorRoom": 2 },
"2": { "GameSavesCompatibility": 1 },
"3": { "GUI": 1 },
@@ -45749,7 +45845,7 @@ var meta = {
},
"moving": {
"0": { "acintro9": 1 },
- "1": { "Character": 26 },
+ "1": { "Character": 27 },
"2": { "DefaultSetup": 1 },
"3": { "DynamicSprite": 1 },
"4": { "EditorCursor": 1 },
@@ -45828,33 +45924,34 @@ var meta = {
"5": { "DynamicSprite": 1 },
"6": { "EditorGUI": 1 },
"7": { "EditorPreferences": 2 },
- "8": { "EditorSprite": 1 },
- "9": { "EnginePluginRun-timeAPI": 1 },
- "10": { "EventTypes": 2 },
- "11": { "ExtenderFunctions": 1 },
- "12": { "Game": 1 },
- "13": { "GameSavesCompatibility": 1 },
- "14": { "GeneralSettings": 3 },
- "15": { "Globalfunctions_Event": 3 },
- "16": { "Globalfunctions_General": 2 },
- "17": { "GraphicsDriver": 1 },
- "18": { "GUI": 1 },
- "19": { "InvWindow": 2 },
- "20": { "Lipsync": 1 },
- "21": { "Multimedia": 1 },
- "22": { "MultipleScripts": 1 },
- "23": { "Preprocessor": 1 },
- "24": { "RuntimeEngine": 1 },
- "25": { "ScriptKeywords": 2 },
- "26": { "ScriptModules": 1 },
- "27": { "TheScriptHeader": 1 },
- "28": { "Translations": 1 },
- "29": { "UnicodeSupport": 2 },
- "30": { "UpgradeTo34": 1 },
- "31": { "UpgradeTo36": 2 },
- "32": { "UpgradeTo361": 2 },
- "33": { "Viewport": 2 },
- "34": { "VoiceSpeech": 1 }
+ "8": { "EditorRoom": 2 },
+ "9": { "EditorSprite": 1 },
+ "10": { "EnginePluginRun-timeAPI": 1 },
+ "11": { "EventTypes": 2 },
+ "12": { "ExtenderFunctions": 1 },
+ "13": { "Game": 1 },
+ "14": { "GameSavesCompatibility": 1 },
+ "15": { "GeneralSettings": 3 },
+ "16": { "Globalfunctions_Event": 3 },
+ "17": { "Globalfunctions_General": 2 },
+ "18": { "GraphicsDriver": 1 },
+ "19": { "GUI": 1 },
+ "20": { "InvWindow": 2 },
+ "21": { "Lipsync": 1 },
+ "22": { "Multimedia": 1 },
+ "23": { "MultipleScripts": 1 },
+ "24": { "Preprocessor": 1 },
+ "25": { "RuntimeEngine": 1 },
+ "26": { "ScriptKeywords": 2 },
+ "27": { "ScriptModules": 1 },
+ "28": { "TheScriptHeader": 1 },
+ "29": { "Translations": 1 },
+ "30": { "UnicodeSupport": 2 },
+ "31": { "UpgradeTo34": 1 },
+ "32": { "UpgradeTo36": 2 },
+ "33": { "UpgradeTo361": 2 },
+ "34": { "Viewport": 2 },
+ "35": { "VoiceSpeech": 1 }
},
"multiplied": {
"0": { "Maths": 2 }
@@ -45973,7 +46070,7 @@ var meta = {
"5": { "Dictionary": 1 },
"6": { "DrawingSurface": 1 },
"7": { "ExtenderFunctions": 1 },
- "8": { "FAQ": 10 },
+ "8": { "FAQ": 11 },
"9": { "Game": 1 },
"10": { "GeneralSettings": 2 },
"11": { "Globalfunctions_Message": 5 },
@@ -46085,56 +46182,57 @@ var meta = {
"15": { "EditorGUI": 4 },
"16": { "EditorInventoryItems": 2 },
"17": { "EditorPlugins": 4 },
- "18": { "EditorSprite": 1 },
- "19": { "EditorView": 1 },
- "20": { "EngineConfigFile": 5 },
- "21": { "EnginePluginDesign-timeAPI": 1 },
- "22": { "EnginePluginRun-timeAPI": 19 },
- "23": { "ExtenderFunctions": 1 },
- "24": { "FAQ": 6 },
- "25": { "Game": 20 },
- "26": { "Gamevariables": 1 },
- "27": { "GeneralSettings": 15 },
- "28": { "GlobalArrays": 2 },
- "29": { "Globalfunctions_Event": 1 },
- "30": { "Globalfunctions_General": 8 },
- "31": { "Globalfunctions_Message": 1 },
- "32": { "GlobalVariables": 2 },
- "33": { "GUI": 12 },
- "34": { "GUIControl": 11 },
- "35": { "Hotspot": 11 },
- "36": { "ImportingFunctionsAndVariables": 4 },
- "37": { "InventoryItem": 15 },
- "38": { "InvWindow": 1 },
- "39": { "Label": 3 },
- "40": { "MIDI-playback": 1 },
- "41": { "MusicAndSound": 1 },
- "42": { "Object": 14 },
- "43": { "ObsoleteScriptAPI": 1 },
- "44": { "OOProgramming": 6 },
- "45": { "Pointers": 3 },
- "46": { "Preprocessor": 4 },
- "47": { "RuntimeEngine": 6 },
- "48": { "ScriptAPIOverview": 1 },
- "49": { "ScriptingTutorialPart1": 19 },
- "50": { "ScriptingTutorialPart2": 4 },
- "51": { "ScriptKeywords": 15 },
- "52": { "ScriptModules": 1 },
- "53": { "Settingupthegame": 7 },
- "54": { "StandardEnums": 2 },
- "55": { "String": 2 },
- "56": { "TemplateBASS": 1 },
- "57": { "Templates": 1 },
- "58": { "TheScriptHeader": 2 },
- "59": { "Translations": 2 },
- "60": { "TroubleshootingWindowsZoneID": 2 },
- "61": { "Tumbleweed": 2 },
- "62": { "Tumbleweed_extensions": 3 },
- "63": { "UpgradeTo32": 2 },
- "64": { "UpgradeTo36": 1 },
- "65": { "UpgradeTo361": 2 },
- "66": { "UpgradingTo27": 6 },
- "67": { "VoiceSpeech": 3 }
+ "18": { "EditorRoom": 1 },
+ "19": { "EditorSprite": 1 },
+ "20": { "EditorView": 1 },
+ "21": { "EngineConfigFile": 5 },
+ "22": { "EnginePluginDesign-timeAPI": 1 },
+ "23": { "EnginePluginRun-timeAPI": 19 },
+ "24": { "ExtenderFunctions": 1 },
+ "25": { "FAQ": 6 },
+ "26": { "Game": 20 },
+ "27": { "Gamevariables": 1 },
+ "28": { "GeneralSettings": 15 },
+ "29": { "GlobalArrays": 2 },
+ "30": { "Globalfunctions_Event": 1 },
+ "31": { "Globalfunctions_General": 8 },
+ "32": { "Globalfunctions_Message": 1 },
+ "33": { "GlobalVariables": 2 },
+ "34": { "GUI": 12 },
+ "35": { "GUIControl": 11 },
+ "36": { "Hotspot": 11 },
+ "37": { "ImportingFunctionsAndVariables": 4 },
+ "38": { "InventoryItem": 15 },
+ "39": { "InvWindow": 1 },
+ "40": { "Label": 3 },
+ "41": { "MIDI-playback": 1 },
+ "42": { "MusicAndSound": 1 },
+ "43": { "Object": 14 },
+ "44": { "ObsoleteScriptAPI": 1 },
+ "45": { "OOProgramming": 6 },
+ "46": { "Pointers": 3 },
+ "47": { "Preprocessor": 4 },
+ "48": { "RuntimeEngine": 6 },
+ "49": { "ScriptAPIOverview": 1 },
+ "50": { "ScriptingTutorialPart1": 19 },
+ "51": { "ScriptingTutorialPart2": 4 },
+ "52": { "ScriptKeywords": 15 },
+ "53": { "ScriptModules": 1 },
+ "54": { "Settingupthegame": 7 },
+ "55": { "StandardEnums": 2 },
+ "56": { "String": 2 },
+ "57": { "TemplateBASS": 1 },
+ "58": { "Templates": 1 },
+ "59": { "TheScriptHeader": 2 },
+ "60": { "Translations": 2 },
+ "61": { "TroubleshootingWindowsZoneID": 2 },
+ "62": { "Tumbleweed": 2 },
+ "63": { "Tumbleweed_extensions": 3 },
+ "64": { "UpgradeTo32": 2 },
+ "65": { "UpgradeTo36": 1 },
+ "66": { "UpgradeTo361": 2 },
+ "67": { "UpgradingTo27": 6 },
+ "68": { "VoiceSpeech": 3 }
},
"named": {
"0": { "BuildAndroid": 2 },
@@ -46850,9 +46948,10 @@ var meta = {
},
"non-zero": {
"0": { "EditorCommandLineOptions": 1 },
- "1": { "EnginePluginRun-timeAPI": 3 },
- "2": { "Maths": 2 },
- "3": { "ScriptingTutorialPart1": 2 }
+ "1": { "EditorRoom": 1 },
+ "2": { "EnginePluginRun-timeAPI": 3 },
+ "3": { "Maths": 2 },
+ "4": { "ScriptingTutorialPart1": 2 }
},
"none": {
"0": { "acintro5": 1 },
@@ -47246,64 +47345,65 @@ var meta = {
"28": { "EditorGUI": 4 },
"29": { "EditorInventoryItems": 1 },
"30": { "EditorPlugins": 1 },
- "31": { "EditorSprite": 2 },
- "32": { "EditorView": 3 },
- "33": { "EnginePluginDesign-timeAPI": 2 },
- "34": { "EnginePluginRun-timeAPI": 44 },
- "35": { "File": 13 },
- "36": { "Game": 22 },
- "37": { "GameSavesCompatibility": 9 },
- "38": { "Gamevariables": 2 },
- "39": { "GeneralSettings": 7 },
- "40": { "GlobalArrays": 3 },
- "41": { "Globalfunctions_Event": 15 },
- "42": { "Globalfunctions_General": 17 },
- "43": { "Globalfunctions_Message": 5 },
- "44": { "Globalfunctions_Palette": 1 },
- "45": { "Globalfunctions_Room": 10 },
- "46": { "GUI": 11 },
- "47": { "GUIControl": 4 },
- "48": { "Hotspot": 7 },
- "49": { "InventoryItem": 9 },
- "50": { "InvWindow": 5 },
- "51": { "Lipsync": 1 },
- "52": { "ListBox": 6 },
- "53": { "Maths": 7 },
- "54": { "Mouse": 2 },
- "55": { "Multimedia": 5 },
- "56": { "MusicAndSound": 1 },
- "57": { "Object": 17 },
- "58": { "Overlay": 5 },
- "59": { "Parser": 2 },
- "60": { "Preprocessor": 2 },
- "61": { "Region": 5 },
- "62": { "Room": 5 },
- "63": { "RuntimeEngine": 1 },
- "64": { "Screen": 1 },
- "65": { "ScriptAPIOverview": 2 },
- "66": { "ScriptingTutorialPart1": 1 },
- "67": { "ScriptingTutorialPart2": 1 },
- "68": { "ScriptKeywords": 6 },
- "69": { "ScriptModules": 1 },
- "70": { "Set": 2 },
- "71": { "Settingupthegame": 14 },
- "72": { "String": 6 },
- "73": { "StringFormats": 1 },
- "74": { "System": 6 },
- "75": { "SystemLimits": 1 },
- "76": { "TextParser": 5 },
- "77": { "Translations": 4 },
- "78": { "TroubleshootingWindowsZoneID": 2 },
- "79": { "UnicodeSupport": 1 },
- "80": { "UpgradeTo33": 3 },
- "81": { "UpgradeTo34": 4 },
- "82": { "UpgradeTo341": 1 },
- "83": { "UpgradeTo35": 3 },
- "84": { "UpgradeTo36": 3 },
- "85": { "UpgradingTo27": 2 },
- "86": { "ViewFrame": 4 },
- "87": { "Viewport": 1 },
- "88": { "VoiceSpeech": 1 }
+ "31": { "EditorRoom": 2 },
+ "32": { "EditorSprite": 2 },
+ "33": { "EditorView": 3 },
+ "34": { "EnginePluginDesign-timeAPI": 2 },
+ "35": { "EnginePluginRun-timeAPI": 44 },
+ "36": { "File": 13 },
+ "37": { "Game": 22 },
+ "38": { "GameSavesCompatibility": 9 },
+ "39": { "Gamevariables": 2 },
+ "40": { "GeneralSettings": 7 },
+ "41": { "GlobalArrays": 3 },
+ "42": { "Globalfunctions_Event": 15 },
+ "43": { "Globalfunctions_General": 17 },
+ "44": { "Globalfunctions_Message": 5 },
+ "45": { "Globalfunctions_Palette": 1 },
+ "46": { "Globalfunctions_Room": 10 },
+ "47": { "GUI": 11 },
+ "48": { "GUIControl": 4 },
+ "49": { "Hotspot": 7 },
+ "50": { "InventoryItem": 9 },
+ "51": { "InvWindow": 5 },
+ "52": { "Lipsync": 1 },
+ "53": { "ListBox": 6 },
+ "54": { "Maths": 7 },
+ "55": { "Mouse": 2 },
+ "56": { "Multimedia": 5 },
+ "57": { "MusicAndSound": 1 },
+ "58": { "Object": 17 },
+ "59": { "Overlay": 5 },
+ "60": { "Parser": 2 },
+ "61": { "Preprocessor": 2 },
+ "62": { "Region": 5 },
+ "63": { "Room": 5 },
+ "64": { "RuntimeEngine": 1 },
+ "65": { "Screen": 1 },
+ "66": { "ScriptAPIOverview": 2 },
+ "67": { "ScriptingTutorialPart1": 1 },
+ "68": { "ScriptingTutorialPart2": 1 },
+ "69": { "ScriptKeywords": 6 },
+ "70": { "ScriptModules": 1 },
+ "71": { "Set": 2 },
+ "72": { "Settingupthegame": 14 },
+ "73": { "String": 6 },
+ "74": { "StringFormats": 1 },
+ "75": { "System": 6 },
+ "76": { "SystemLimits": 1 },
+ "77": { "TextParser": 5 },
+ "78": { "Translations": 4 },
+ "79": { "TroubleshootingWindowsZoneID": 2 },
+ "80": { "UnicodeSupport": 1 },
+ "81": { "UpgradeTo33": 3 },
+ "82": { "UpgradeTo34": 4 },
+ "83": { "UpgradeTo341": 1 },
+ "84": { "UpgradeTo35": 3 },
+ "85": { "UpgradeTo36": 3 },
+ "86": { "UpgradingTo27": 2 },
+ "87": { "ViewFrame": 4 },
+ "88": { "Viewport": 1 },
+ "89": { "VoiceSpeech": 1 }
},
"number-based": {
"0": { "Hotspot": 1 },
@@ -48170,14 +48270,14 @@ var meta = {
"31": { "EditorInventoryItems": 1 },
"32": { "EditorPlugins": 2 },
"33": { "EditorPreferences": 1 },
- "34": { "EditorRoom": 5 },
+ "34": { "EditorRoom": 7 },
"35": { "EditorSprite": 2 },
"36": { "EditorView": 3 },
"37": { "EngineConfigFile": 5 },
"38": { "EnginePluginDesign-timeAPI": 6 },
"39": { "EnginePluginRun-timeAPI": 52 },
"40": { "EventTypes": 1 },
- "41": { "FAQ": 2 },
+ "41": { "FAQ": 3 },
"42": { "File": 11 },
"43": { "Game": 8 },
"44": { "GameSavesCompatibility": 5 },
@@ -48570,31 +48670,32 @@ var meta = {
"7": { "DrawingSurface": 18 },
"8": { "DynamicSprite": 11 },
"9": { "EditorFont": 1 },
- "10": { "EngineConfigFile": 1 },
- "11": { "EnginePluginRun-timeAPI": 1 },
- "12": { "File": 2 },
- "13": { "Game": 2 },
- "14": { "Globalfunctions_Event": 3 },
- "15": { "Maths": 1 },
- "16": { "Multimedia": 1 },
- "17": { "MusicAndSound": 1 },
- "18": { "Object": 9 },
- "19": { "Overlay": 4 },
- "20": { "Region": 1 },
- "21": { "Room": 1 },
- "22": { "Screen": 1 },
- "23": { "ScriptingTutorialPart1": 5 },
- "24": { "ScriptKeywords": 5 },
- "25": { "Settingupthegame": 1 },
- "26": { "String": 4 },
- "27": { "TextParser": 2 },
- "28": { "Tumbleweed": 1 },
- "29": { "Tumbleweed_unhandled": 1 },
- "30": { "UpgradeTo32": 1 },
- "31": { "UpgradeTo36": 3 },
- "32": { "UpgradingTo27": 2 },
- "33": { "Viewport": 1 },
- "34": { "VoiceSpeech": 2 }
+ "10": { "EditorRoom": 1 },
+ "11": { "EngineConfigFile": 1 },
+ "12": { "EnginePluginRun-timeAPI": 1 },
+ "13": { "File": 2 },
+ "14": { "Game": 2 },
+ "15": { "Globalfunctions_Event": 3 },
+ "16": { "Maths": 1 },
+ "17": { "Multimedia": 1 },
+ "18": { "MusicAndSound": 1 },
+ "19": { "Object": 9 },
+ "20": { "Overlay": 4 },
+ "21": { "Region": 1 },
+ "22": { "Room": 1 },
+ "23": { "Screen": 1 },
+ "24": { "ScriptingTutorialPart1": 5 },
+ "25": { "ScriptKeywords": 5 },
+ "26": { "Settingupthegame": 1 },
+ "27": { "String": 4 },
+ "28": { "TextParser": 2 },
+ "29": { "Tumbleweed": 1 },
+ "30": { "Tumbleweed_unhandled": 1 },
+ "31": { "UpgradeTo32": 1 },
+ "32": { "UpgradeTo36": 3 },
+ "33": { "UpgradingTo27": 2 },
+ "34": { "Viewport": 1 },
+ "35": { "VoiceSpeech": 2 }
},
"optionally": {
"0": { "Character": 1 },
@@ -48765,8 +48866,9 @@ var meta = {
"1": { "EditorCharacter": 1 },
"2": { "EditorDialog": 1 },
"3": { "EditorSprite": 1 },
- "4": { "MusicAndSound": 1 },
- "5": { "ScriptModules": 1 }
+ "4": { "FAQ": 1 },
+ "5": { "MusicAndSound": 1 },
+ "6": { "ScriptModules": 1 }
},
"organized": {
"0": { "MusicAndSound": 1 },
@@ -48862,68 +48964,69 @@ var meta = {
"29": { "EditorInventoryItems": 1 },
"30": { "EditorLogPanel": 1 },
"31": { "EditorPlugins": 1 },
- "32": { "EditorSprite": 2 },
- "33": { "EditorView": 2 },
- "34": { "EnginePluginDesign-timeAPI": 2 },
- "35": { "EnginePluginRun-timeAPI": 17 },
- "36": { "EnginePlugins": 1 },
- "37": { "EventTypes": 3 },
- "38": { "ExtenderFunctions": 3 },
- "39": { "FAQ": 2 },
- "40": { "File": 6 },
- "41": { "Game": 1 },
- "42": { "GameSavesCompatibility": 4 },
- "43": { "GeneralSettings": 7 },
- "44": { "Globalfunctions_General": 6 },
- "45": { "Globalfunctions_Message": 1 },
- "46": { "Globalfunctions_Palette": 1 },
- "47": { "Globalfunctions_Room": 3 },
- "48": { "Globalfunctions_Screen": 1 },
- "49": { "Globalfunctions_Wait": 1 },
- "50": { "GlobalVariables": 1 },
- "51": { "GraphicsDriver": 2 },
- "52": { "GUI": 11 },
- "53": { "GUIControl": 5 },
- "54": { "ImportingFunctionsAndVariables": 6 },
- "55": { "ListBox": 2 },
- "56": { "Maths": 1 },
- "57": { "MIDI-playback": 1 },
- "58": { "Multimedia": 3 },
- "59": { "MultipleScripts": 7 },
- "60": { "MusicAndSound": 2 },
- "61": { "Object": 2 },
- "62": { "OOProgramming": 1 },
- "63": { "Overlay": 11 },
- "64": { "Plugins": 4 },
- "65": { "Pointers": 3 },
- "66": { "Region": 1 },
- "67": { "RepExec": 2 },
- "68": { "Room": 4 },
- "69": { "RuntimeEngine": 2 },
- "70": { "ScriptingLanguage": 1 },
- "71": { "ScriptingTutorialPart1": 1 },
- "72": { "ScriptingTutorialPart2": 6 },
- "73": { "ScriptKeywords": 3 },
- "74": { "Settingupthegame": 8 },
- "75": { "Setup": 1 },
- "76": { "Speech": 1 },
- "77": { "String": 3 },
- "78": { "System": 1 },
- "79": { "SystemLimits": 1 },
- "80": { "Templates": 1 },
- "81": { "TextParser": 2 },
- "82": { "TheScriptHeader": 2 },
- "83": { "Translations": 1 },
- "84": { "Tumbleweed": 4 },
- "85": { "Tumbleweed_actions": 1 },
- "86": { "Tumbleweed_movement": 1 },
- "87": { "Tumbleweed_translation": 1 },
- "88": { "UpgradeTo335": 1 },
- "89": { "UpgradeTo34": 2 },
- "90": { "UpgradeTo35": 1 },
- "91": { "UpgradeTo36": 5 },
- "92": { "UpgradingTo271": 1 },
- "93": { "Viewport": 2 }
+ "32": { "EditorRoom": 1 },
+ "33": { "EditorSprite": 2 },
+ "34": { "EditorView": 2 },
+ "35": { "EnginePluginDesign-timeAPI": 2 },
+ "36": { "EnginePluginRun-timeAPI": 17 },
+ "37": { "EnginePlugins": 1 },
+ "38": { "EventTypes": 3 },
+ "39": { "ExtenderFunctions": 3 },
+ "40": { "FAQ": 2 },
+ "41": { "File": 6 },
+ "42": { "Game": 1 },
+ "43": { "GameSavesCompatibility": 4 },
+ "44": { "GeneralSettings": 7 },
+ "45": { "Globalfunctions_General": 6 },
+ "46": { "Globalfunctions_Message": 1 },
+ "47": { "Globalfunctions_Palette": 1 },
+ "48": { "Globalfunctions_Room": 3 },
+ "49": { "Globalfunctions_Screen": 1 },
+ "50": { "Globalfunctions_Wait": 1 },
+ "51": { "GlobalVariables": 1 },
+ "52": { "GraphicsDriver": 2 },
+ "53": { "GUI": 11 },
+ "54": { "GUIControl": 5 },
+ "55": { "ImportingFunctionsAndVariables": 6 },
+ "56": { "ListBox": 2 },
+ "57": { "Maths": 1 },
+ "58": { "MIDI-playback": 1 },
+ "59": { "Multimedia": 3 },
+ "60": { "MultipleScripts": 7 },
+ "61": { "MusicAndSound": 2 },
+ "62": { "Object": 2 },
+ "63": { "OOProgramming": 1 },
+ "64": { "Overlay": 11 },
+ "65": { "Plugins": 4 },
+ "66": { "Pointers": 3 },
+ "67": { "Region": 1 },
+ "68": { "RepExec": 2 },
+ "69": { "Room": 4 },
+ "70": { "RuntimeEngine": 2 },
+ "71": { "ScriptingLanguage": 1 },
+ "72": { "ScriptingTutorialPart1": 1 },
+ "73": { "ScriptingTutorialPart2": 6 },
+ "74": { "ScriptKeywords": 3 },
+ "75": { "Settingupthegame": 8 },
+ "76": { "Setup": 1 },
+ "77": { "Speech": 1 },
+ "78": { "String": 3 },
+ "79": { "System": 1 },
+ "80": { "SystemLimits": 1 },
+ "81": { "Templates": 1 },
+ "82": { "TextParser": 2 },
+ "83": { "TheScriptHeader": 2 },
+ "84": { "Translations": 1 },
+ "85": { "Tumbleweed": 4 },
+ "86": { "Tumbleweed_actions": 1 },
+ "87": { "Tumbleweed_movement": 1 },
+ "88": { "Tumbleweed_translation": 1 },
+ "89": { "UpgradeTo335": 1 },
+ "90": { "UpgradeTo34": 2 },
+ "91": { "UpgradeTo35": 1 },
+ "92": { "UpgradeTo36": 5 },
+ "93": { "UpgradingTo271": 1 },
+ "94": { "Viewport": 2 }
},
"otherChar": {
"0": { "Character": 1 }
@@ -49145,45 +49248,46 @@ var meta = {
"14": { "EditorFont": 1 },
"15": { "EditorGUI": 1 },
"16": { "EditorInventoryItems": 1 },
- "17": { "EditorView": 2 },
- "18": { "EnginePluginRun-timeAPI": 5 },
- "19": { "EventTypes": 2 },
- "20": { "File": 1 },
- "21": { "Game": 4 },
- "22": { "GameSavesCompatibility": 1 },
- "23": { "GeneralSettings": 2 },
- "24": { "GlobalArrays": 1 },
- "25": { "Globalfunctions_Event": 2 },
- "26": { "Globalfunctions_General": 2 },
- "27": { "Globalfunctions_Wait": 1 },
- "28": { "GUI": 1 },
- "29": { "GUIControl": 4 },
- "30": { "Hotspot": 2 },
- "31": { "InventoryItem": 2 },
- "32": { "Label": 2 },
- "33": { "ListBox": 5 },
- "34": { "Mouse": 3 },
- "35": { "MusicAndSound": 3 },
- "36": { "Object": 3 },
- "37": { "Overlay": 3 },
- "38": { "Pointers": 5 },
- "39": { "Region": 1 },
- "40": { "RuntimeEngine": 1 },
- "41": { "Screen": 1 },
- "42": { "ScriptAPIOverview": 1 },
- "43": { "ScriptingTutorial": 1 },
- "44": { "ScriptKeywords": 1 },
- "45": { "Settingupthegame": 5 },
- "46": { "Speech": 3 },
- "47": { "TemplateVerbcoin": 1 },
- "48": { "Translations": 1 },
- "49": { "Tumbleweed": 2 },
- "50": { "Tumbleweed_actions": 1 },
- "51": { "UpgradeTo30": 1 },
- "52": { "UpgradeTo31": 2 },
- "53": { "UpgradeTo32": 1 },
- "54": { "UpgradingTo27": 2 },
- "55": { "Viewport": 1 }
+ "17": { "EditorRoom": 1 },
+ "18": { "EditorView": 2 },
+ "19": { "EnginePluginRun-timeAPI": 5 },
+ "20": { "EventTypes": 2 },
+ "21": { "File": 1 },
+ "22": { "Game": 4 },
+ "23": { "GameSavesCompatibility": 1 },
+ "24": { "GeneralSettings": 2 },
+ "25": { "GlobalArrays": 1 },
+ "26": { "Globalfunctions_Event": 2 },
+ "27": { "Globalfunctions_General": 2 },
+ "28": { "Globalfunctions_Wait": 1 },
+ "29": { "GUI": 1 },
+ "30": { "GUIControl": 4 },
+ "31": { "Hotspot": 2 },
+ "32": { "InventoryItem": 2 },
+ "33": { "Label": 2 },
+ "34": { "ListBox": 5 },
+ "35": { "Mouse": 3 },
+ "36": { "MusicAndSound": 3 },
+ "37": { "Object": 3 },
+ "38": { "Overlay": 3 },
+ "39": { "Pointers": 5 },
+ "40": { "Region": 1 },
+ "41": { "RuntimeEngine": 1 },
+ "42": { "Screen": 1 },
+ "43": { "ScriptAPIOverview": 1 },
+ "44": { "ScriptingTutorial": 1 },
+ "45": { "ScriptKeywords": 1 },
+ "46": { "Settingupthegame": 5 },
+ "47": { "Speech": 3 },
+ "48": { "TemplateVerbcoin": 1 },
+ "49": { "Translations": 1 },
+ "50": { "Tumbleweed": 2 },
+ "51": { "Tumbleweed_actions": 1 },
+ "52": { "UpgradeTo30": 1 },
+ "53": { "UpgradeTo31": 2 },
+ "54": { "UpgradeTo32": 1 },
+ "55": { "UpgradingTo27": 2 },
+ "56": { "Viewport": 1 }
},
"overall": {
"0": { "AudioChannel": 1 },
@@ -49793,7 +49897,7 @@ var meta = {
"7": { "EditorFont": 1 },
"8": { "EditorPlugins": 1 },
"9": { "EditorRoom": 2 },
- "10": { "EngineConfigFile": 4 },
+ "10": { "EngineConfigFile": 5 },
"11": { "EnginePluginDesign-timeAPI": 1 },
"12": { "EnginePluginRun-timeAPI": 3 },
"13": { "EventTypes": 1 },
@@ -50418,25 +50522,26 @@ var meta = {
"9": { "EditorGUI": 1 },
"10": { "EditorInventoryItems": 2 },
"11": { "EnginePluginRun-timeAPI": 17 },
- "12": { "Game": 2 },
- "13": { "GeneralSettings": 4 },
- "14": { "Globalfunctions_General": 5 },
- "15": { "Globalfunctions_Message": 2 },
- "16": { "GUI": 5 },
- "17": { "GUIControl": 4 },
- "18": { "Multimedia": 1 },
- "19": { "Object": 7 },
- "20": { "Overlay": 2 },
- "21": { "Screen": 2 },
- "22": { "Settingupthegame": 2 },
- "23": { "Setup": 2 },
- "24": { "Slider": 1 },
- "25": { "SystemLimits": 1 },
- "26": { "TemplateBASS": 3 },
- "27": { "TextWindowGUI": 1 },
- "28": { "Tumbleweed": 1 },
- "29": { "UpgradeTo31": 2 },
- "30": { "UpgradeTo35": 1 }
+ "12": { "FAQ": 1 },
+ "13": { "Game": 2 },
+ "14": { "GeneralSettings": 4 },
+ "15": { "Globalfunctions_General": 5 },
+ "16": { "Globalfunctions_Message": 2 },
+ "17": { "GUI": 5 },
+ "18": { "GUIControl": 4 },
+ "19": { "Multimedia": 1 },
+ "20": { "Object": 7 },
+ "21": { "Overlay": 2 },
+ "22": { "Screen": 2 },
+ "23": { "Settingupthegame": 2 },
+ "24": { "Setup": 2 },
+ "25": { "Slider": 1 },
+ "26": { "SystemLimits": 1 },
+ "27": { "TemplateBASS": 3 },
+ "28": { "TextWindowGUI": 1 },
+ "29": { "Tumbleweed": 1 },
+ "30": { "UpgradeTo31": 2 },
+ "31": { "UpgradeTo35": 1 }
},
"place": {
"0": { "acintro2": 2 },
@@ -50678,7 +50783,7 @@ var meta = {
"8": { "AudioClip": 1 },
"9": { "Button": 1 },
"10": { "Camera": 6 },
- "11": { "Character": 59 },
+ "11": { "Character": 61 },
"12": { "Copyright": 1 },
"13": { "Credits": 3 },
"14": { "CustomDialogOptions": 5 },
@@ -50695,68 +50800,69 @@ var meta = {
"25": { "EditorCursor": 4 },
"26": { "EditorGUI": 8 },
"27": { "EditorInventoryItems": 6 },
- "28": { "EngineConfigFile": 2 },
- "29": { "EnginePluginRun-timeAPI": 16 },
- "30": { "EventTypes": 48 },
- "31": { "ExtenderFunctions": 1 },
- "32": { "FAQ": 4 },
- "33": { "Game": 24 },
- "34": { "GameSavesCompatibility": 5 },
- "35": { "Gamevariables": 6 },
- "36": { "GeneralSettings": 16 },
- "37": { "Globalfunctions_Event": 6 },
- "38": { "Globalfunctions_General": 36 },
- "39": { "Globalfunctions_Message": 2 },
- "40": { "Globalfunctions_Palette": 1 },
- "41": { "Globalfunctions_Room": 27 },
- "42": { "Globalfunctions_Screen": 1 },
- "43": { "Globalfunctions_Wait": 13 },
- "44": { "GraphicsDriver": 1 },
- "45": { "GUI": 3 },
- "46": { "GUIControl": 1 },
- "47": { "Hotspot": 9 },
- "48": { "InventoryItem": 8 },
- "49": { "InvWindow": 1 },
- "50": { "Keycodes": 1 },
- "51": { "ListBox": 1 },
- "52": { "Mouse": 14 },
- "53": { "Multimedia": 12 },
- "54": { "MusicAndSound": 3 },
- "55": { "Object": 10 },
- "56": { "ObsoleteScriptAPI": 1 },
- "57": { "Overlay": 5 },
- "58": { "Parser": 3 },
- "59": { "Region": 8 },
- "60": { "RepExec": 8 },
- "61": { "Room": 4 },
- "62": { "RuntimeEngine": 1 },
- "63": { "Screen": 2 },
- "64": { "ScriptingTutorialPart1": 13 },
- "65": { "ScriptingTutorialPart2": 12 },
- "66": { "ScriptKeywords": 24 },
- "67": { "Settingupthegame": 27 },
- "68": { "Setup": 8 },
- "69": { "Slider": 2 },
- "70": { "Speech": 9 },
- "71": { "String": 1 },
- "72": { "System": 11 },
- "73": { "TemplateBASS": 1 },
- "74": { "TemplateSierraStyle": 5 },
- "75": { "TextBox": 1 },
- "76": { "TextParser": 7 },
- "77": { "Tumbleweed": 13 },
- "78": { "Tumbleweed_actions": 1 },
- "79": { "Tumbleweed_door": 3 },
- "80": { "Tumbleweed_movement": 17 },
- "81": { "Tumbleweed_player": 1 },
- "82": { "Tumbleweed_unhandled": 2 },
- "83": { "UpgradeTo31": 1 },
- "84": { "UpgradeTo34": 1 },
- "85": { "UpgradeTo35": 3 },
- "86": { "UpgradeTo36": 1 },
- "87": { "UpgradingTo27": 3 },
- "88": { "Viewport": 2 },
- "89": { "VoiceSpeech": 1 }
+ "28": { "EditorRoom": 2 },
+ "29": { "EngineConfigFile": 2 },
+ "30": { "EnginePluginRun-timeAPI": 16 },
+ "31": { "EventTypes": 48 },
+ "32": { "ExtenderFunctions": 1 },
+ "33": { "FAQ": 4 },
+ "34": { "Game": 24 },
+ "35": { "GameSavesCompatibility": 5 },
+ "36": { "Gamevariables": 6 },
+ "37": { "GeneralSettings": 16 },
+ "38": { "Globalfunctions_Event": 6 },
+ "39": { "Globalfunctions_General": 36 },
+ "40": { "Globalfunctions_Message": 2 },
+ "41": { "Globalfunctions_Palette": 1 },
+ "42": { "Globalfunctions_Room": 27 },
+ "43": { "Globalfunctions_Screen": 1 },
+ "44": { "Globalfunctions_Wait": 13 },
+ "45": { "GraphicsDriver": 1 },
+ "46": { "GUI": 3 },
+ "47": { "GUIControl": 1 },
+ "48": { "Hotspot": 9 },
+ "49": { "InventoryItem": 8 },
+ "50": { "InvWindow": 1 },
+ "51": { "Keycodes": 1 },
+ "52": { "ListBox": 1 },
+ "53": { "Mouse": 14 },
+ "54": { "Multimedia": 12 },
+ "55": { "MusicAndSound": 3 },
+ "56": { "Object": 10 },
+ "57": { "ObsoleteScriptAPI": 1 },
+ "58": { "Overlay": 5 },
+ "59": { "Parser": 3 },
+ "60": { "Region": 8 },
+ "61": { "RepExec": 8 },
+ "62": { "Room": 4 },
+ "63": { "RuntimeEngine": 1 },
+ "64": { "Screen": 2 },
+ "65": { "ScriptingTutorialPart1": 13 },
+ "66": { "ScriptingTutorialPart2": 12 },
+ "67": { "ScriptKeywords": 24 },
+ "68": { "Settingupthegame": 27 },
+ "69": { "Setup": 8 },
+ "70": { "Slider": 2 },
+ "71": { "Speech": 9 },
+ "72": { "String": 1 },
+ "73": { "System": 11 },
+ "74": { "TemplateBASS": 1 },
+ "75": { "TemplateSierraStyle": 5 },
+ "76": { "TextBox": 1 },
+ "77": { "TextParser": 7 },
+ "78": { "Tumbleweed": 13 },
+ "79": { "Tumbleweed_actions": 1 },
+ "80": { "Tumbleweed_door": 3 },
+ "81": { "Tumbleweed_movement": 17 },
+ "82": { "Tumbleweed_player": 1 },
+ "83": { "Tumbleweed_unhandled": 2 },
+ "84": { "UpgradeTo31": 1 },
+ "85": { "UpgradeTo34": 1 },
+ "86": { "UpgradeTo35": 3 },
+ "87": { "UpgradeTo36": 1 },
+ "88": { "UpgradingTo27": 3 },
+ "89": { "Viewport": 2 },
+ "90": { "VoiceSpeech": 1 }
},
"player's": {
"0": { "acintro4": 3 },
@@ -50904,8 +51010,7 @@ var meta = {
"0": { "Speech": 4 }
},
"png": {
- "0": { "BuildAndroid": 11 },
- "1": { "EditorRoom": 1 }
+ "0": { "BuildAndroid": 11 }
},
"point": {
"0": { "acintro2": 1 },
@@ -51384,11 +51489,12 @@ var meta = {
"2": { "ScriptKeywords": 5 }
},
"precise": {
- "0": { "GeneralSettings": 1 },
- "1": { "Globalfunctions_General": 1 },
- "2": { "SystemLimits": 1 },
- "3": { "UnicodeSupport": 1 },
- "4": { "UpgradeTo35": 2 }
+ "0": { "EditorRoom": 1 },
+ "1": { "GeneralSettings": 1 },
+ "2": { "Globalfunctions_General": 1 },
+ "3": { "SystemLimits": 1 },
+ "4": { "UnicodeSupport": 1 },
+ "5": { "UpgradeTo35": 2 }
},
"precisely": {
"0": { "EngineConfigFile": 1 },
@@ -52157,7 +52263,7 @@ var meta = {
"11": { "AudioInScript": 1 },
"12": { "Button": 4 },
"13": { "Camera": 4 },
- "14": { "Character": 9 },
+ "14": { "Character": 10 },
"15": { "ColoursEditor": 1 },
"16": { "Constants": 1 },
"17": { "CustomDialogOptions": 2 },
@@ -52238,7 +52344,7 @@ var meta = {
"8": { "AudioClip": 3 },
"9": { "Button": 12 },
"10": { "Camera": 3 },
- "11": { "Character": 78 },
+ "11": { "Character": 81 },
"12": { "ColoursEditor": 1 },
"13": { "CustomDialogOptions": 2 },
"14": { "CustomProperties": 12 },
@@ -52251,11 +52357,11 @@ var meta = {
"21": { "EditorFont": 1 },
"22": { "EditorGUI": 7 },
"23": { "EditorInventoryItems": 1 },
- "24": { "EditorRoom": 1 },
+ "24": { "EditorRoom": 3 },
"25": { "EditorView": 1 },
"26": { "EnginePluginRun-timeAPI": 1 },
"27": { "EventTypes": 4 },
- "28": { "FAQ": 4 },
+ "28": { "FAQ": 5 },
"29": { "Game": 11 },
"30": { "GeneralSettings": 3 },
"31": { "GlobalArrays": 1 },
@@ -52457,13 +52563,14 @@ var meta = {
"0": { "Character": 1 },
"1": { "ColoursEditor": 1 },
"2": { "DynamicArrays": 1 },
- "3": { "File": 1 },
- "4": { "Globalfunctions_General": 2 },
- "5": { "Globalfunctions_Room": 1 },
- "6": { "Pointers": 1 },
- "7": { "ScriptKeywords": 1 },
- "8": { "System": 1 },
- "9": { "UpgradeTo361": 1 }
+ "3": { "EditorRoom": 1 },
+ "4": { "File": 1 },
+ "5": { "Globalfunctions_General": 2 },
+ "6": { "Globalfunctions_Room": 1 },
+ "7": { "Pointers": 1 },
+ "8": { "ScriptKeywords": 1 },
+ "9": { "System": 1 },
+ "10": { "UpgradeTo361": 1 }
},
"purposed": {
"0": { "Globalfunctions_General": 1 }
@@ -52810,11 +52917,12 @@ var meta = {
"ratio": {
"0": { "Camera": 4 },
"1": { "DefaultSetup": 4 },
- "2": { "EngineConfigFile": 1 },
- "3": { "Multimedia": 1 },
- "4": { "RuntimeEngine": 1 },
- "5": { "Setup": 4 },
- "6": { "Viewport": 4 }
+ "2": { "EditorRoom": 2 },
+ "3": { "EngineConfigFile": 1 },
+ "4": { "Multimedia": 1 },
+ "5": { "RuntimeEngine": 1 },
+ "6": { "Setup": 4 },
+ "7": { "Viewport": 4 }
},
"ration": {
"0": { "Multimedia": 1 }
@@ -53518,7 +53626,7 @@ var meta = {
"0": { "AdvancedRoomFeatures": 1 },
"1": { "Character": 5 },
"2": { "EditorGUI": 1 },
- "3": { "EditorRoom": 1 },
+ "3": { "EditorRoom": 2 },
"4": { "EnginePluginRun-timeAPI": 1 },
"5": { "EventTypes": 10 },
"6": { "GlobalArrays": 1 },
@@ -53853,7 +53961,7 @@ var meta = {
"6": { "EditorCursor": 1 },
"7": { "EditorInventoryItems": 1 },
"8": { "EditorPlugins": 2 },
- "9": { "EngineConfigFile": 1 },
+ "9": { "EngineConfigFile": 2 },
"10": { "EnginePluginDesign-timeAPI": 1 },
"11": { "Game": 1 },
"12": { "GameSavesCompatibility": 2 },
@@ -53917,12 +54025,13 @@ var meta = {
},
"rename": {
"0": { "acintro6": 1 },
- "1": { "EditorSprite": 1 },
- "2": { "MusicAndSound": 1 },
- "3": { "Settingupthegame": 1 },
- "4": { "UpgradeTo30": 1 },
- "5": { "UpgradeTo32": 2 },
- "6": { "UpgradeTo34": 1 }
+ "1": { "EditorRoom": 1 },
+ "2": { "EditorSprite": 1 },
+ "3": { "MusicAndSound": 1 },
+ "4": { "Settingupthegame": 1 },
+ "5": { "UpgradeTo30": 1 },
+ "6": { "UpgradeTo32": 2 },
+ "7": { "UpgradeTo34": 1 }
},
"renamed": {
"0": { "ColoursEditor": 1 },
@@ -53986,6 +54095,9 @@ var meta = {
"3": { "UpgradeTo33": 1 },
"4": { "UpgradeTo35": 1 }
},
+ "renumber": {
+ "0": { "EditorRoom": 1 }
+ },
"repack": {
"0": { "UpgradeTo36": 1 }
},
@@ -54345,22 +54457,23 @@ var meta = {
"5": { "Character": 1 },
"6": { "DefaultSetup": 3 },
"7": { "DistGame": 1 },
- "8": { "EngineConfigFile": 7 },
- "9": { "EnginePluginRun-timeAPI": 7 },
- "10": { "FAQ": 4 },
- "11": { "Game": 2 },
- "12": { "Gamevariables": 1 },
- "13": { "GeneralSettings": 11 },
- "14": { "Globalfunctions_General": 1 },
- "15": { "Mouse": 1 },
- "16": { "ObsoleteScriptAPI": 1 },
- "17": { "Screen": 2 },
- "18": { "Settingupthegame": 1 },
- "19": { "Setup": 6 },
- "20": { "System": 6 },
- "21": { "UpgradeTo31": 2 },
- "22": { "UpgradeTo34": 2 },
- "23": { "UpgradeTo35": 16 }
+ "8": { "EditorRoom": 1 },
+ "9": { "EngineConfigFile": 7 },
+ "10": { "EnginePluginRun-timeAPI": 7 },
+ "11": { "FAQ": 4 },
+ "12": { "Game": 2 },
+ "13": { "Gamevariables": 1 },
+ "14": { "GeneralSettings": 11 },
+ "15": { "Globalfunctions_General": 1 },
+ "16": { "Mouse": 1 },
+ "17": { "ObsoleteScriptAPI": 1 },
+ "18": { "Screen": 2 },
+ "19": { "Settingupthegame": 1 },
+ "20": { "Setup": 6 },
+ "21": { "System": 6 },
+ "22": { "UpgradeTo31": 2 },
+ "23": { "UpgradeTo34": 2 },
+ "24": { "UpgradeTo35": 16 }
},
"resolution-sized": {
"0": { "EnginePluginRun-timeAPI": 1 }
@@ -54421,7 +54534,7 @@ var meta = {
"respective": {
"0": { "AdvancedRoomFeatures": 1 },
"1": { "EditorGUI": 1 },
- "2": { "EditorRoom": 1 },
+ "2": { "EditorRoom": 2 },
"3": { "FAQ": 3 },
"4": { "GameEventsOrder": 1 },
"5": { "GlobalArrays": 1 },
@@ -54512,12 +54625,13 @@ var meta = {
"12": { "Parser": 1 }
},
"restored": {
- "0": { "DrawingSurface": 1 },
- "1": { "EditorSprite": 2 },
- "2": { "EnginePluginRun-timeAPI": 4 },
- "3": { "GameSavesCompatibility": 8 },
- "4": { "Globalfunctions_Event": 2 },
- "5": { "Globalfunctions_General": 2 }
+ "0": { "Character": 1 },
+ "1": { "DrawingSurface": 1 },
+ "2": { "EditorSprite": 2 },
+ "3": { "EnginePluginRun-timeAPI": 4 },
+ "4": { "GameSavesCompatibility": 8 },
+ "5": { "Globalfunctions_Event": 2 },
+ "6": { "Globalfunctions_General": 2 }
},
"restores": {
"0": { "DateTime": 1 },
@@ -55015,7 +55129,7 @@ var meta = {
"13": { "BackingUpYourGame": 2 },
"14": { "BlockingScripts": 2 },
"15": { "Camera": 47 },
- "16": { "Character": 59 },
+ "16": { "Character": 62 },
"17": { "ColoursEditor": 1 },
"18": { "Constants": 3 },
"19": { "Debuggingfeatures": 6 },
@@ -55024,7 +55138,7 @@ var meta = {
"22": { "EditorCharacter": 1 },
"23": { "EditorInventoryItems": 1 },
"24": { "EditorPreferences": 2 },
- "25": { "EditorRoom": 21 },
+ "25": { "EditorRoom": 31 },
"26": { "EngineConfigFile": 2 },
"27": { "EnginePluginRun-timeAPI": 29 },
"28": { "EventTypes": 26 },
@@ -55087,7 +55201,7 @@ var meta = {
"3": { "Character": 2 },
"4": { "CustomProperties": 2 },
"5": { "DynamicSprite": 1 },
- "6": { "EditorRoom": 1 },
+ "6": { "EditorRoom": 4 },
"7": { "Game": 1 },
"8": { "Gamevariables": 1 },
"9": { "GeneralSettings": 2 },
@@ -55484,7 +55598,7 @@ var meta = {
"20": { "EditorCursor": 1 },
"21": { "EditorGUI": 3 },
"22": { "EditorPreferences": 2 },
- "23": { "EditorRoom": 1 },
+ "23": { "EditorRoom": 2 },
"24": { "EngineConfigFile": 1 },
"25": { "EnginePluginRun-timeAPI": 12 },
"26": { "EnginePlugins": 1 },
@@ -55789,6 +55903,9 @@ var meta = {
"scans": {
"0": { "EditorPlugins": 1 }
},
+ "scenarios": {
+ "0": { "EditorRoom": 1 }
+ },
"scene": {
"0": { "AdvancedRoomFeatures": 5 },
"1": { "Character": 1 },
@@ -55871,7 +55988,7 @@ var meta = {
"8": { "AnonymousUsageInfo": 1 },
"9": { "BuildAndroid": 3 },
"10": { "Camera": 5 },
- "11": { "Character": 21 },
+ "11": { "Character": 22 },
"12": { "ColoursEditor": 2 },
"13": { "CustomDialogOptions": 7 },
"14": { "Debuggingfeatures": 1 },
@@ -55888,7 +56005,7 @@ var meta = {
"25": { "EngineConfigFile": 6 },
"26": { "EnginePluginRun-timeAPI": 46 },
"27": { "EventTypes": 10 },
- "28": { "FAQ": 8 },
+ "28": { "FAQ": 9 },
"29": { "File": 1 },
"30": { "Game": 6 },
"31": { "GameEventsOrder": 3 },
@@ -56010,7 +56127,7 @@ var meta = {
"31": { "EditorInventoryItems": 2 },
"32": { "EditorLogPanel": 1 },
"33": { "EditorPreferences": 5 },
- "34": { "EditorRoom": 1 },
+ "34": { "EditorRoom": 3 },
"35": { "EngineConfigFile": 3 },
"36": { "EnginePluginDesign-timeAPI": 5 },
"37": { "EnginePluginRun-timeAPI": 73 },
@@ -56452,56 +56569,57 @@ var meta = {
"26": { "EditorGUI": 4 },
"27": { "EditorInventoryItems": 1 },
"28": { "EditorLogPanel": 1 },
- "29": { "EditorSprite": 1 },
- "30": { "EditorView": 2 },
- "31": { "EngineConfigFile": 1 },
- "32": { "EnginePluginDesign-timeAPI": 1 },
- "33": { "EnginePluginRun-timeAPI": 5 },
- "34": { "Game": 3 },
- "35": { "GameEventsOrder": 3 },
- "36": { "GameSavesCompatibility": 2 },
- "37": { "Gamevariables": 4 },
- "38": { "GeneralSettings": 4 },
- "39": { "Globalfunctions_General": 3 },
- "40": { "Globalfunctions_Message": 5 },
- "41": { "Globalfunctions_Screen": 1 },
- "42": { "Globalfunctions_Wait": 4 },
- "43": { "ImportingFunctionsAndVariables": 4 },
- "44": { "Lipsync": 1 },
- "45": { "ListBox": 1 },
- "46": { "Multimedia": 1 },
- "47": { "MusicAndSound": 4 },
- "48": { "Object": 3 },
- "49": { "Overlay": 2 },
- "50": { "Plugins": 1 },
- "51": { "Preprocessor": 3 },
- "52": { "Region": 1 },
- "53": { "RepExec": 1 },
- "54": { "Room": 1 },
- "55": { "RuntimeEngine": 1 },
- "56": { "ScriptAPIOverview": 1 },
- "57": { "ScriptingTutorialPart1": 1 },
- "58": { "ScriptingTutorialPart2": 1 },
- "59": { "ScriptKeywords": 2 },
- "60": { "Set": 1 },
- "61": { "Settingupthegame": 10 },
- "62": { "SourceControl": 1 },
- "63": { "String": 2 },
- "64": { "Templates": 1 },
- "65": { "TextParser": 2 },
- "66": { "Translations": 2 },
- "67": { "Tumbleweed": 1 },
- "68": { "Tumbleweed_extensions": 1 },
- "69": { "Tumbleweed_movement": 1 },
- "70": { "Tumbleweed_translation": 1 },
- "71": { "UnicodeSupport": 2 },
- "72": { "UpgradeTo30": 1 },
- "73": { "UpgradeTo32": 2 },
- "74": { "UpgradeTo34": 1 },
- "75": { "UpgradeTo35": 4 },
- "76": { "UpgradeTo36": 2 },
- "77": { "UpgradingTo27": 3 },
- "78": { "ViewFrame": 1 }
+ "29": { "EditorRoom": 1 },
+ "30": { "EditorSprite": 1 },
+ "31": { "EditorView": 2 },
+ "32": { "EngineConfigFile": 1 },
+ "33": { "EnginePluginDesign-timeAPI": 1 },
+ "34": { "EnginePluginRun-timeAPI": 5 },
+ "35": { "Game": 3 },
+ "36": { "GameEventsOrder": 3 },
+ "37": { "GameSavesCompatibility": 2 },
+ "38": { "Gamevariables": 4 },
+ "39": { "GeneralSettings": 4 },
+ "40": { "Globalfunctions_General": 3 },
+ "41": { "Globalfunctions_Message": 5 },
+ "42": { "Globalfunctions_Screen": 1 },
+ "43": { "Globalfunctions_Wait": 4 },
+ "44": { "ImportingFunctionsAndVariables": 4 },
+ "45": { "Lipsync": 1 },
+ "46": { "ListBox": 1 },
+ "47": { "Multimedia": 1 },
+ "48": { "MusicAndSound": 4 },
+ "49": { "Object": 3 },
+ "50": { "Overlay": 2 },
+ "51": { "Plugins": 1 },
+ "52": { "Preprocessor": 3 },
+ "53": { "Region": 1 },
+ "54": { "RepExec": 1 },
+ "55": { "Room": 1 },
+ "56": { "RuntimeEngine": 1 },
+ "57": { "ScriptAPIOverview": 1 },
+ "58": { "ScriptingTutorialPart1": 1 },
+ "59": { "ScriptingTutorialPart2": 1 },
+ "60": { "ScriptKeywords": 2 },
+ "61": { "Set": 1 },
+ "62": { "Settingupthegame": 10 },
+ "63": { "SourceControl": 1 },
+ "64": { "String": 2 },
+ "65": { "Templates": 1 },
+ "66": { "TextParser": 2 },
+ "67": { "Translations": 2 },
+ "68": { "Tumbleweed": 1 },
+ "69": { "Tumbleweed_extensions": 1 },
+ "70": { "Tumbleweed_movement": 1 },
+ "71": { "Tumbleweed_translation": 1 },
+ "72": { "UnicodeSupport": 2 },
+ "73": { "UpgradeTo30": 1 },
+ "74": { "UpgradeTo32": 2 },
+ "75": { "UpgradeTo34": 1 },
+ "76": { "UpgradeTo35": 4 },
+ "77": { "UpgradeTo36": 2 },
+ "78": { "UpgradingTo27": 3 },
+ "79": { "ViewFrame": 1 }
},
"see-through": {
"0": { "acintro7": 2 }
@@ -56522,7 +56640,7 @@ var meta = {
"0": { "EnginePluginRun-timeAPI": 3 }
},
"seem": {
- "0": { "FAQ": 1 },
+ "0": { "FAQ": 2 },
"1": { "GameEventsOrder": 1 },
"2": { "Globalfunctions_Room": 1 },
"3": { "Pointers": 1 },
@@ -56654,7 +56772,7 @@ var meta = {
"3": { "Dialog": 1 },
"4": { "EditorGUI": 3 },
"5": { "EditorSprite": 3 },
- "6": { "EngineConfigFile": 6 },
+ "6": { "EngineConfigFile": 9 },
"7": { "GraphicsDriver": 1 },
"8": { "KeyboardShortcuts": 3 },
"9": { "ListBox": 1 },
@@ -56855,7 +56973,8 @@ var meta = {
},
"serve": {
"0": { "Character": 1 },
- "1": { "GameSavesCompatibility": 1 }
+ "1": { "EditorRoom": 1 },
+ "2": { "GameSavesCompatibility": 1 }
},
"server": {
"0": { "AnonymousUsageInfo": 1 },
@@ -56903,7 +57022,7 @@ var meta = {
"14": { "BuildAndroid": 9 },
"15": { "Button": 5 },
"16": { "Camera": 5 },
- "17": { "Character": 66 },
+ "17": { "Character": 67 },
"18": { "ColoursEditor": 2 },
"19": { "CustomDialogOptions": 7 },
"20": { "CustomProperties": 2 },
@@ -56921,75 +57040,76 @@ var meta = {
"32": { "EditorInventoryItems": 3 },
"33": { "EditorPlugins": 2 },
"34": { "EditorPreferences": 2 },
- "35": { "EditorSprite": 1 },
- "36": { "EditorView": 1 },
- "37": { "EngineConfigFile": 5 },
- "38": { "EnginePluginDesign-timeAPI": 2 },
- "39": { "EnginePluginRun-timeAPI": 13 },
- "40": { "FAQ": 7 },
- "41": { "Game": 13 },
- "42": { "GameSavesCompatibility": 2 },
- "43": { "Gamevariables": 7 },
- "44": { "GeneralSettings": 8 },
- "45": { "Globalfunctions_Event": 3 },
- "46": { "Globalfunctions_General": 24 },
- "47": { "Globalfunctions_Message": 2 },
- "48": { "Globalfunctions_Palette": 1 },
- "49": { "Globalfunctions_Room": 5 },
- "50": { "Globalfunctions_Screen": 2 },
- "51": { "GlobalVariables": 3 },
- "52": { "GUI": 7 },
- "53": { "GUIControl": 10 },
- "54": { "Hotspot": 5 },
- "55": { "Introduction": 1 },
- "56": { "InventoryItem": 5 },
- "57": { "InvWindow": 4 },
- "58": { "Lipsync": 3 },
- "59": { "ListBox": 2 },
- "60": { "MIDI-playback": 1 },
- "61": { "Mouse": 5 },
- "62": { "Multimedia": 2 },
- "63": { "MusicAndSound": 5 },
- "64": { "Object": 38 },
- "65": { "ObsoleteScriptAPI": 1 },
- "66": { "OOProgramming": 10 },
- "67": { "Plugins": 1 },
- "68": { "Pointers": 4 },
- "69": { "Preprocessor": 1 },
- "70": { "Region": 6 },
- "71": { "Room": 11 },
- "72": { "RuntimeEngine": 2 },
- "73": { "Screen": 2 },
- "74": { "ScriptingTutorialPart1": 7 },
- "75": { "ScriptingTutorialPart2": 2 },
- "76": { "ScriptKeywords": 2 },
- "77": { "Set": 1 },
- "78": { "Settingupthegame": 28 },
- "79": { "Setup": 1 },
- "80": { "Slider": 7 },
- "81": { "Speech": 10 },
- "82": { "StandardEnums": 1 },
- "83": { "String": 6 },
- "84": { "System": 5 },
- "85": { "SystemLimits": 1 },
- "86": { "TemplateBASS": 1 },
- "87": { "Templates": 1 },
- "88": { "Translations": 5 },
- "89": { "Tumbleweed": 3 },
- "90": { "Tumbleweed_door": 5 },
- "91": { "Tumbleweed_extensions": 1 },
- "92": { "Tumbleweed_helper": 1 },
- "93": { "Tumbleweed_movement": 2 },
- "94": { "UnicodeSupport": 1 },
- "95": { "UpgradeTo32": 1 },
- "96": { "UpgradeTo33": 4 },
- "97": { "UpgradeTo335": 1 },
- "98": { "UpgradeTo34": 2 },
- "99": { "UpgradeTo341": 1 },
- "100": { "UpgradeTo35": 1 },
- "101": { "UpgradeTo36": 6 },
- "102": { "UpgradingTo27": 2 },
- "103": { "ViewFrame": 1 }
+ "35": { "EditorRoom": 2 },
+ "36": { "EditorSprite": 1 },
+ "37": { "EditorView": 1 },
+ "38": { "EngineConfigFile": 5 },
+ "39": { "EnginePluginDesign-timeAPI": 2 },
+ "40": { "EnginePluginRun-timeAPI": 13 },
+ "41": { "FAQ": 8 },
+ "42": { "Game": 13 },
+ "43": { "GameSavesCompatibility": 2 },
+ "44": { "Gamevariables": 7 },
+ "45": { "GeneralSettings": 8 },
+ "46": { "Globalfunctions_Event": 3 },
+ "47": { "Globalfunctions_General": 24 },
+ "48": { "Globalfunctions_Message": 2 },
+ "49": { "Globalfunctions_Palette": 1 },
+ "50": { "Globalfunctions_Room": 5 },
+ "51": { "Globalfunctions_Screen": 2 },
+ "52": { "GlobalVariables": 3 },
+ "53": { "GUI": 7 },
+ "54": { "GUIControl": 10 },
+ "55": { "Hotspot": 5 },
+ "56": { "Introduction": 1 },
+ "57": { "InventoryItem": 5 },
+ "58": { "InvWindow": 4 },
+ "59": { "Lipsync": 3 },
+ "60": { "ListBox": 2 },
+ "61": { "MIDI-playback": 1 },
+ "62": { "Mouse": 5 },
+ "63": { "Multimedia": 2 },
+ "64": { "MusicAndSound": 5 },
+ "65": { "Object": 38 },
+ "66": { "ObsoleteScriptAPI": 1 },
+ "67": { "OOProgramming": 10 },
+ "68": { "Plugins": 1 },
+ "69": { "Pointers": 4 },
+ "70": { "Preprocessor": 1 },
+ "71": { "Region": 6 },
+ "72": { "Room": 11 },
+ "73": { "RuntimeEngine": 2 },
+ "74": { "Screen": 2 },
+ "75": { "ScriptingTutorialPart1": 7 },
+ "76": { "ScriptingTutorialPart2": 2 },
+ "77": { "ScriptKeywords": 2 },
+ "78": { "Set": 1 },
+ "79": { "Settingupthegame": 28 },
+ "80": { "Setup": 1 },
+ "81": { "Slider": 7 },
+ "82": { "Speech": 10 },
+ "83": { "StandardEnums": 1 },
+ "84": { "String": 6 },
+ "85": { "System": 5 },
+ "86": { "SystemLimits": 1 },
+ "87": { "TemplateBASS": 1 },
+ "88": { "Templates": 1 },
+ "89": { "Translations": 5 },
+ "90": { "Tumbleweed": 3 },
+ "91": { "Tumbleweed_door": 5 },
+ "92": { "Tumbleweed_extensions": 1 },
+ "93": { "Tumbleweed_helper": 1 },
+ "94": { "Tumbleweed_movement": 2 },
+ "95": { "UnicodeSupport": 1 },
+ "96": { "UpgradeTo32": 1 },
+ "97": { "UpgradeTo33": 4 },
+ "98": { "UpgradeTo335": 1 },
+ "99": { "UpgradeTo34": 2 },
+ "100": { "UpgradeTo341": 1 },
+ "101": { "UpgradeTo35": 1 },
+ "102": { "UpgradeTo36": 6 },
+ "103": { "UpgradingTo27": 2 },
+ "104": { "ViewFrame": 1 }
},
"seti": {
"0": { "EnginePluginRun-timeAPI": 1 },
@@ -57001,7 +57121,7 @@ var meta = {
"2": { "AudioChannel": 4 },
"3": { "Button": 10 },
"4": { "Camera": 5 },
- "5": { "Character": 40 },
+ "5": { "Character": 41 },
"6": { "DialogOptionsRenderingInfo": 9 },
"7": { "DrawingSurface": 2 },
"8": { "DynamicSprite": 2 },
@@ -57058,7 +57178,7 @@ var meta = {
"5": { "AudioClip": 1 },
"6": { "AudioInScript": 1 },
"7": { "Button": 2 },
- "8": { "Character": 28 },
+ "8": { "Character": 29 },
"9": { "CustomDialogOptions": 1 },
"10": { "CustomProperties": 3 },
"11": { "DefaultSetup": 1 },
@@ -57070,43 +57190,44 @@ var meta = {
"17": { "EditorGUI": 4 },
"18": { "EditorInventoryItems": 1 },
"19": { "EditorPreferences": 2 },
- "20": { "EditorView": 2 },
- "21": { "EngineConfigFile": 1 },
- "22": { "EnginePluginRun-timeAPI": 1 },
- "23": { "FAQ": 1 },
- "24": { "Game": 7 },
- "25": { "GeneralSettings": 13 },
- "26": { "Globalfunctions_General": 5 },
- "27": { "Globalfunctions_Message": 1 },
- "28": { "Globalfunctions_Room": 2 },
- "29": { "GUI": 5 },
- "30": { "GUIControl": 6 },
- "31": { "Hotspot": 4 },
- "32": { "InventoryItem": 3 },
- "33": { "InvWindow": 1 },
- "34": { "ListBox": 1 },
- "35": { "MIDI-playback": 1 },
- "36": { "Mouse": 3 },
- "37": { "MusicAndSound": 2 },
- "38": { "Object": 17 },
- "39": { "Overlay": 3 },
- "40": { "Region": 6 },
- "41": { "Room": 3 },
- "42": { "Screen": 2 },
- "43": { "ScriptKeywords": 1 },
- "44": { "Settingupthegame": 3 },
- "45": { "Slider": 1 },
- "46": { "SourceControl": 1 },
- "47": { "Speech": 4 },
- "48": { "System": 1 },
- "49": { "UnicodeSupport": 2 },
- "50": { "UpgradeTo31": 1 },
- "51": { "UpgradeTo33": 2 },
- "52": { "UpgradeTo34": 2 },
- "53": { "UpgradeTo35": 2 },
- "54": { "UpgradeTo36": 9 },
- "55": { "ViewFrame": 1 },
- "56": { "Viewport": 1 }
+ "20": { "EditorRoom": 1 },
+ "21": { "EditorView": 2 },
+ "22": { "EngineConfigFile": 1 },
+ "23": { "EnginePluginRun-timeAPI": 1 },
+ "24": { "FAQ": 1 },
+ "25": { "Game": 7 },
+ "26": { "GeneralSettings": 13 },
+ "27": { "Globalfunctions_General": 5 },
+ "28": { "Globalfunctions_Message": 1 },
+ "29": { "Globalfunctions_Room": 2 },
+ "30": { "GUI": 5 },
+ "31": { "GUIControl": 6 },
+ "32": { "Hotspot": 4 },
+ "33": { "InventoryItem": 3 },
+ "34": { "InvWindow": 1 },
+ "35": { "ListBox": 1 },
+ "36": { "MIDI-playback": 1 },
+ "37": { "Mouse": 3 },
+ "38": { "MusicAndSound": 2 },
+ "39": { "Object": 17 },
+ "40": { "Overlay": 3 },
+ "41": { "Region": 6 },
+ "42": { "Room": 3 },
+ "43": { "Screen": 2 },
+ "44": { "ScriptKeywords": 1 },
+ "45": { "Settingupthegame": 3 },
+ "46": { "Slider": 1 },
+ "47": { "SourceControl": 1 },
+ "48": { "Speech": 4 },
+ "49": { "System": 1 },
+ "50": { "UnicodeSupport": 2 },
+ "51": { "UpgradeTo31": 1 },
+ "52": { "UpgradeTo33": 2 },
+ "53": { "UpgradeTo34": 2 },
+ "54": { "UpgradeTo35": 2 },
+ "55": { "UpgradeTo36": 9 },
+ "56": { "ViewFrame": 1 },
+ "57": { "Viewport": 1 }
},
"settings": {
"0": { "acintro4": 1 },
@@ -57175,7 +57296,7 @@ var meta = {
"4": { "DialogScript": 1 },
"5": { "DistGame": 1 },
"6": { "EnginePluginRun-timeAPI": 1 },
- "7": { "FAQ": 1 },
+ "7": { "FAQ": 2 },
"8": { "ImportingFunctionsAndVariables": 2 },
"9": { "MusicAndSound": 1 },
"10": { "Preprocessor": 1 },
@@ -57502,8 +57623,9 @@ var meta = {
"8": { "Viewport": 1 }
},
"shrink": {
- "0": { "Overlay": 2 },
- "1": { "Settingupthegame": 1 }
+ "0": { "FAQ": 1 },
+ "1": { "Overlay": 2 },
+ "2": { "Settingupthegame": 1 }
},
"shrinking": {
"0": { "UpgradeTo36": 1 }
@@ -57619,7 +57741,7 @@ var meta = {
"7": { "DialogScript": 1 },
"8": { "DynamicSprite": 2 },
"9": { "EditorGUI": 1 },
- "10": { "EditorRoom": 1 },
+ "10": { "EditorRoom": 2 },
"11": { "EngineConfigFile": 1 },
"12": { "EnginePluginRun-timeAPI": 1 },
"13": { "FAQ": 4 },
@@ -57925,11 +58047,11 @@ var meta = {
"15": { "EditorFont": 1 },
"16": { "EditorGUI": 1 },
"17": { "EditorLogPanel": 1 },
- "18": { "EditorRoom": 1 },
+ "18": { "EditorRoom": 2 },
"19": { "EngineConfigFile": 12 },
"20": { "EnginePluginDesign-timeAPI": 2 },
"21": { "EnginePluginRun-timeAPI": 10 },
- "22": { "FAQ": 1 },
+ "22": { "FAQ": 2 },
"23": { "Game": 3 },
"24": { "GameSavesCompatibility": 21 },
"25": { "Gamevariables": 5 },
@@ -58200,13 +58322,14 @@ var meta = {
"4": { "DistGame": 1 },
"5": { "DynamicArrays": 1 },
"6": { "EnginePluginRun-timeAPI": 1 },
- "7": { "GeneralSettings": 1 },
- "8": { "Screen": 1 },
- "9": { "ScriptKeywords": 1 },
- "10": { "Settingupthegame": 2 },
- "11": { "SourceControl": 1 },
- "12": { "UpgradeTo35": 4 },
- "13": { "Viewport": 2 }
+ "7": { "FAQ": 1 },
+ "8": { "GeneralSettings": 1 },
+ "9": { "Screen": 1 },
+ "10": { "ScriptKeywords": 1 },
+ "11": { "Settingupthegame": 2 },
+ "12": { "SourceControl": 1 },
+ "13": { "UpgradeTo35": 4 },
+ "14": { "Viewport": 2 }
},
"smallest": {
"0": { "GameSavesCompatibility": 1 }
@@ -59287,33 +59410,34 @@ var meta = {
"8": { "EditorCursor": 3 },
"9": { "EditorDialog": 1 },
"10": { "EditorGUI": 2 },
- "11": { "EngineConfigFile": 2 },
- "12": { "EnginePluginDesign-timeAPI": 1 },
- "13": { "EnginePluginRun-timeAPI": 8 },
- "14": { "EnginePlugins": 1 },
- "15": { "FAQ": 1 },
- "16": { "File": 1 },
- "17": { "Game": 2 },
- "18": { "GeneralSettings": 5 },
- "19": { "Globalfunctions_General": 2 },
- "20": { "Globalfunctions_Message": 1 },
- "21": { "Label": 1 },
- "22": { "Lipsync": 1 },
- "23": { "ListBox": 1 },
- "24": { "Mouse": 1 },
- "25": { "MusicAndSound": 1 },
- "26": { "Parser": 1 },
- "27": { "RuntimeEngine": 1 },
- "28": { "Screen": 1 },
- "29": { "ScriptingTutorialPart1": 1 },
- "30": { "Settingupthegame": 4 },
- "31": { "StandardEnums": 1 },
- "32": { "Templates": 2 },
- "33": { "TemplateVerbcoin": 1 },
- "34": { "TextWindowGUI": 1 },
- "35": { "UnicodeSupport": 1 },
- "36": { "UpgradeTo36": 1 },
- "37": { "Viewport": 1 }
+ "11": { "EditorRoom": 1 },
+ "12": { "EngineConfigFile": 2 },
+ "13": { "EnginePluginDesign-timeAPI": 1 },
+ "14": { "EnginePluginRun-timeAPI": 8 },
+ "15": { "EnginePlugins": 1 },
+ "16": { "FAQ": 1 },
+ "17": { "File": 1 },
+ "18": { "Game": 2 },
+ "19": { "GeneralSettings": 5 },
+ "20": { "Globalfunctions_General": 2 },
+ "21": { "Globalfunctions_Message": 1 },
+ "22": { "Label": 1 },
+ "23": { "Lipsync": 1 },
+ "24": { "ListBox": 1 },
+ "25": { "Mouse": 1 },
+ "26": { "MusicAndSound": 1 },
+ "27": { "Parser": 1 },
+ "28": { "RuntimeEngine": 1 },
+ "29": { "Screen": 1 },
+ "30": { "ScriptingTutorialPart1": 1 },
+ "31": { "Settingupthegame": 4 },
+ "32": { "StandardEnums": 1 },
+ "33": { "Templates": 2 },
+ "34": { "TemplateVerbcoin": 1 },
+ "35": { "TextWindowGUI": 1 },
+ "36": { "UnicodeSupport": 1 },
+ "37": { "UpgradeTo36": 1 },
+ "38": { "Viewport": 1 }
},
"standing": {
"0": { "acintro2": 1 },
@@ -59500,7 +59624,7 @@ var meta = {
"3": { "Dialog": 2 },
"4": { "DrawingSurface": 1 },
"5": { "EditorCursor": 1 },
- "6": { "EngineConfigFile": 1 },
+ "6": { "EngineConfigFile": 2 },
"7": { "EnginePluginRun-timeAPI": 10 },
"8": { "Game": 1 },
"9": { "GameSavesCompatibility": 6 },
@@ -59665,7 +59789,7 @@ var meta = {
"5": { "AnonymousUsageInfo": 2 },
"6": { "AudioChannel": 1 },
"7": { "BlockingScripts": 2 },
- "8": { "Character": 10 },
+ "8": { "Character": 11 },
"9": { "DefaultSetup": 1 },
"10": { "Dialog": 1 },
"11": { "DialogScript": 1 },
@@ -60203,7 +60327,8 @@ var meta = {
"4": { "VoiceSpeech": 1 }
},
"subject": {
- "0": { "FAQ": 1 }
+ "0": { "EditorRoom": 1 },
+ "1": { "FAQ": 1 }
},
"submission": {
"0": { "GeneralSettings": 1 }
@@ -60587,7 +60712,7 @@ var meta = {
"20": { "EditorPlugins": 2 },
"21": { "EnginePluginDesign-timeAPI": 1 },
"22": { "EnginePluginRun-timeAPI": 11 },
- "23": { "FAQ": 6 },
+ "23": { "FAQ": 7 },
"24": { "Game": 1 },
"25": { "Globalfunctions_General": 4 },
"26": { "ListBox": 1 },
@@ -60670,22 +60795,23 @@ var meta = {
"3": { "BuildAndroid": 1 },
"4": { "CustomDialogOptions": 1 },
"5": { "EditorCharacter": 1 },
- "6": { "FAQ": 1 },
- "7": { "Game": 1 },
- "8": { "GameSavesCompatibility": 1 },
- "9": { "GeneralSettings": 2 },
- "10": { "Globalfunctions_General": 2 },
- "11": { "GraphicsDriver": 1 },
- "12": { "Object": 1 },
- "13": { "ScriptKeywords": 13 },
- "14": { "Settingupthegame": 1 },
- "15": { "System": 4 },
- "16": { "Translations": 1 },
- "17": { "Tumbleweed": 1 },
- "18": { "UnicodeSupport": 3 },
- "19": { "UpgradeTo34": 7 },
- "20": { "UpgradeTo35": 1 },
- "21": { "UpgradeTo36": 4 }
+ "6": { "EditorRoom": 2 },
+ "7": { "FAQ": 1 },
+ "8": { "Game": 1 },
+ "9": { "GameSavesCompatibility": 1 },
+ "10": { "GeneralSettings": 2 },
+ "11": { "Globalfunctions_General": 2 },
+ "12": { "GraphicsDriver": 1 },
+ "13": { "Object": 1 },
+ "14": { "ScriptKeywords": 13 },
+ "15": { "Settingupthegame": 1 },
+ "16": { "System": 4 },
+ "17": { "Translations": 1 },
+ "18": { "Tumbleweed": 1 },
+ "19": { "UnicodeSupport": 3 },
+ "20": { "UpgradeTo34": 7 },
+ "21": { "UpgradeTo35": 1 },
+ "22": { "UpgradeTo36": 4 }
},
"switched": {
"0": { "acintro3": 1 },
@@ -61173,7 +61299,7 @@ var meta = {
"8": { "DialogScript": 1 },
"9": { "DynamicArrays": 1 },
"10": { "EditorCursor": 1 },
- "11": { "EngineConfigFile": 6 },
+ "11": { "EngineConfigFile": 9 },
"12": { "EnginePluginRun-timeAPI": 3 },
"13": { "FAQ": 1 },
"14": { "Game": 1 },
@@ -61482,7 +61608,7 @@ var meta = {
"19": { "EditorFont": 1 },
"20": { "EditorGUI": 2 },
"21": { "EditorInventoryItems": 1 },
- "22": { "EditorRoom": 2 },
+ "22": { "EditorRoom": 3 },
"23": { "EditorView": 1 },
"24": { "EngineConfigFile": 4 },
"25": { "EnginePluginDesign-timeAPI": 2 },
@@ -61552,19 +61678,20 @@ var meta = {
"2": { "AdvancedRoomFeatures": 1 },
"3": { "EditorPlugins": 1 },
"4": { "EnginePluginRun-timeAPI": 1 },
- "5": { "GameEventsOrder": 1 },
- "6": { "GameSavesCompatibility": 2 },
- "7": { "Mouse": 1 },
- "8": { "Multimedia": 1 },
- "9": { "Parser": 1 },
- "10": { "Pointers": 2 },
- "11": { "ScriptingTutorialPart1": 1 },
- "12": { "System": 2 },
- "13": { "TextParser": 1 },
- "14": { "TheScriptHeader": 1 },
- "15": { "Tumbleweed": 1 },
- "16": { "UpgradingTo27": 2 },
- "17": { "UpgradingTo271": 1 }
+ "5": { "FAQ": 1 },
+ "6": { "GameEventsOrder": 1 },
+ "7": { "GameSavesCompatibility": 2 },
+ "8": { "Mouse": 1 },
+ "9": { "Multimedia": 1 },
+ "10": { "Parser": 1 },
+ "11": { "Pointers": 2 },
+ "12": { "ScriptingTutorialPart1": 1 },
+ "13": { "System": 2 },
+ "14": { "TextParser": 1 },
+ "15": { "TheScriptHeader": 1 },
+ "16": { "Tumbleweed": 1 },
+ "17": { "UpgradingTo27": 2 },
+ "18": { "UpgradingTo271": 1 }
},
"theButton": {
"0": { "GUIControl": 3 }
@@ -61635,7 +61762,7 @@ var meta = {
"35": { "EnginePlugins": 1 },
"36": { "EventTypes": 3 },
"37": { "ExtenderFunctions": 1 },
- "38": { "FAQ": 5 },
+ "38": { "FAQ": 6 },
"39": { "File": 1 },
"40": { "Game": 4 },
"41": { "GameSavesCompatibility": 10 },
@@ -61731,7 +61858,7 @@ var meta = {
"9": { "EditorDialog": 1 },
"10": { "EnginePluginDesign-timeAPI": 1 },
"11": { "EnginePluginRun-timeAPI": 1 },
- "12": { "FAQ": 2 },
+ "12": { "FAQ": 3 },
"13": { "GameSavesCompatibility": 5 },
"14": { "GeneralSettings": 2 },
"15": { "Globalfunctions_Event": 1 },
@@ -61960,22 +62087,23 @@ var meta = {
"7": { "DefaultSetup": 1 },
"8": { "EditorGUI": 1 },
"9": { "EditorSprite": 1 },
- "10": { "GameSavesCompatibility": 1 },
- "11": { "GeneralSettings": 1 },
- "12": { "GlobalArrays": 2 },
- "13": { "Globalfunctions_General": 1 },
- "14": { "GUI": 1 },
- "15": { "Lipsync": 2 },
- "16": { "Maths": 1 },
- "17": { "Overlay": 1 },
- "18": { "ScriptKeywords": 1 },
- "19": { "Tumbleweed": 1 },
- "20": { "Tumbleweed_door": 1 },
- "21": { "Tumbleweed_translation": 1 },
- "22": { "UpgradeTo32": 1 },
- "23": { "UpgradeTo34": 2 },
- "24": { "Viewport": 1 },
- "25": { "VoiceSpeech": 1 }
+ "10": { "FAQ": 1 },
+ "11": { "GameSavesCompatibility": 1 },
+ "12": { "GeneralSettings": 1 },
+ "13": { "GlobalArrays": 2 },
+ "14": { "Globalfunctions_General": 1 },
+ "15": { "GUI": 1 },
+ "16": { "Lipsync": 2 },
+ "17": { "Maths": 1 },
+ "18": { "Overlay": 1 },
+ "19": { "ScriptKeywords": 1 },
+ "20": { "Tumbleweed": 1 },
+ "21": { "Tumbleweed_door": 1 },
+ "22": { "Tumbleweed_translation": 1 },
+ "23": { "UpgradeTo32": 1 },
+ "24": { "UpgradeTo34": 2 },
+ "25": { "Viewport": 1 },
+ "26": { "VoiceSpeech": 1 }
},
"though": {
"0": { "Character": 4 },
@@ -62070,34 +62198,35 @@ var meta = {
"20": { "EngineConfigFile": 1 },
"21": { "EnginePluginRun-timeAPI": 1 },
"22": { "EnginePlugins": 1 },
- "23": { "Game": 8 },
- "24": { "GeneralSettings": 1 },
- "25": { "Globalfunctions_General": 5 },
- "26": { "Globalfunctions_Palette": 1 },
- "27": { "Globalfunctions_Room": 1 },
- "28": { "GUI": 2 },
- "29": { "GUIControl": 2 },
- "30": { "Lipsync": 1 },
- "31": { "MIDI-playback": 2 },
- "32": { "Mouse": 2 },
- "33": { "Multimedia": 1 },
- "34": { "Object": 7 },
- "35": { "Pointers": 1 },
- "36": { "Room": 1 },
- "37": { "RuntimeEngine": 1 },
- "38": { "Screen": 3 },
- "39": { "ScriptAPIOverview": 2 },
- "40": { "ScriptingTutorialPart1": 1 },
- "41": { "Settingupthegame": 4 },
- "42": { "StartingOff": 1 },
- "43": { "System": 1 },
- "44": { "TemplateBASS": 1 },
- "45": { "Tumbleweed_door": 1 },
- "46": { "Tutorial": 1 },
- "47": { "UpgradeTo30": 3 },
- "48": { "UpgradeTo32": 1 },
- "49": { "UpgradingTo27": 2 },
- "50": { "Viewport": 3 }
+ "23": { "FAQ": 1 },
+ "24": { "Game": 8 },
+ "25": { "GeneralSettings": 1 },
+ "26": { "Globalfunctions_General": 5 },
+ "27": { "Globalfunctions_Palette": 1 },
+ "28": { "Globalfunctions_Room": 1 },
+ "29": { "GUI": 2 },
+ "30": { "GUIControl": 2 },
+ "31": { "Lipsync": 1 },
+ "32": { "MIDI-playback": 2 },
+ "33": { "Mouse": 2 },
+ "34": { "Multimedia": 1 },
+ "35": { "Object": 7 },
+ "36": { "Pointers": 1 },
+ "37": { "Room": 1 },
+ "38": { "RuntimeEngine": 1 },
+ "39": { "Screen": 3 },
+ "40": { "ScriptAPIOverview": 2 },
+ "41": { "ScriptingTutorialPart1": 1 },
+ "42": { "Settingupthegame": 4 },
+ "43": { "StartingOff": 1 },
+ "44": { "System": 1 },
+ "45": { "TemplateBASS": 1 },
+ "46": { "Tumbleweed_door": 1 },
+ "47": { "Tutorial": 1 },
+ "48": { "UpgradeTo30": 3 },
+ "49": { "UpgradeTo32": 1 },
+ "50": { "UpgradingTo27": 2 },
+ "51": { "Viewport": 3 }
},
"throughout": {
"0": { "acintro1": 1 },
@@ -62156,7 +62285,8 @@ var meta = {
"0": { "Globalfunctions_General": 1 }
},
"ticks": {
- "0": { "AudioChannel": 2 }
+ "0": { "AudioChannel": 2 },
+ "1": { "EditorRoom": 1 }
},
"tied": {
"0": { "Game": 1 },
@@ -62197,7 +62327,7 @@ var meta = {
"17": { "DynamicSprite": 2 },
"18": { "EditorFont": 1 },
"19": { "EditorPlugins": 1 },
- "20": { "EditorRoom": 1 },
+ "20": { "EditorRoom": 2 },
"21": { "EditorSprite": 2 },
"22": { "EditorView": 1 },
"23": { "EnginePluginRun-timeAPI": 7 },
@@ -62578,12 +62708,13 @@ var meta = {
"4": { "DialogScript": 8 },
"5": { "DistGame": 1 },
"6": { "EditorDialog": 2 },
- "7": { "FAQ": 1 },
- "8": { "GameSavesCompatibility": 2 },
- "9": { "GeneralSettings": 1 },
- "10": { "Settingupthegame": 8 },
- "11": { "SystemLimits": 1 },
- "12": { "UpgradingTo27": 1 }
+ "7": { "EditorRoom": 1 },
+ "8": { "FAQ": 1 },
+ "9": { "GameSavesCompatibility": 2 },
+ "10": { "GeneralSettings": 1 },
+ "11": { "Settingupthegame": 8 },
+ "12": { "SystemLimits": 1 },
+ "13": { "UpgradingTo27": 1 }
},
"topic's": {
"0": { "acintro8": 1 }
@@ -62838,7 +62969,7 @@ var meta = {
"4": { "DynamicSprite": 4 },
"5": { "EditorGUI": 1 },
"6": { "EnginePluginRun-timeAPI": 6 },
- "7": { "FAQ": 1 },
+ "7": { "FAQ": 3 },
"8": { "GeneralSettings": 2 },
"9": { "Globalfunctions_Room": 1 },
"10": { "Globalfunctions_Screen": 1 },
@@ -63102,10 +63233,11 @@ var meta = {
"0": { "acintro2": 1 },
"1": { "Character": 4 },
"2": { "Dialog": 1 },
- "3": { "EditorSprite": 1 },
- "4": { "Globalfunctions_Room": 1 },
- "5": { "InventoryItem": 1 },
- "6": { "Object": 2 }
+ "3": { "EditorRoom": 2 },
+ "4": { "EditorSprite": 1 },
+ "5": { "Globalfunctions_Room": 1 },
+ "6": { "InventoryItem": 1 },
+ "7": { "Object": 2 }
},
"turning": {
"0": { "Character": 8 },
@@ -63621,14 +63753,15 @@ var meta = {
"8": { "EnginePluginDesign-timeAPI": 1 },
"9": { "EnginePluginRun-timeAPI": 4 },
"10": { "EnginePlugins": 1 },
- "11": { "GeneralSettings": 1 },
- "12": { "Globalfunctions_Wait": 1 },
- "13": { "Mouse": 1 },
- "14": { "Object": 3 },
- "15": { "OOProgramming": 1 },
- "16": { "Speech": 1 },
- "17": { "System": 1 },
- "18": { "UpgradeTo35": 1 }
+ "11": { "FAQ": 1 },
+ "12": { "GeneralSettings": 1 },
+ "13": { "Globalfunctions_Wait": 1 },
+ "14": { "Mouse": 1 },
+ "15": { "Object": 3 },
+ "16": { "OOProgramming": 1 },
+ "17": { "Speech": 1 },
+ "18": { "System": 1 },
+ "19": { "UpgradeTo35": 1 }
},
"unlike": {
"0": { "acintro4": 1 },
@@ -63933,7 +64066,7 @@ var meta = {
"updated": {
"0": { "acintro2": 1 },
"1": { "acintro7": 1 },
- "2": { "Character": 3 },
+ "2": { "Character": 4 },
"3": { "Credits": 1 },
"4": { "CustomDialogOptions": 1 },
"5": { "EditorGUI": 1 },
@@ -64120,7 +64253,7 @@ var meta = {
"40": { "EditorInventoryItems": 5 },
"41": { "EditorPlugins": 5 },
"42": { "EditorPreferences": 3 },
- "43": { "EditorRoom": 1 },
+ "43": { "EditorRoom": 2 },
"44": { "EditorSprite": 3 },
"45": { "EditorView": 4 },
"46": { "EngineConfigFile": 10 },
@@ -64598,7 +64731,7 @@ var meta = {
"37": { "EditorInventoryItems": 1 },
"38": { "EditorPlugins": 3 },
"39": { "EditorPreferences": 2 },
- "40": { "EditorRoom": 4 },
+ "40": { "EditorRoom": 5 },
"41": { "EditorSprite": 9 },
"42": { "EditorView": 3 },
"43": { "EngineConfigFile": 1 },
@@ -64787,61 +64920,62 @@ var meta = {
"16": { "DynamicSprite": 1 },
"17": { "EditorGUI": 4 },
"18": { "EditorInventoryItems": 7 },
- "19": { "EditorView": 2 },
- "20": { "EngineConfigFile": 8 },
- "21": { "EnginePluginDesign-timeAPI": 1 },
- "22": { "EnginePluginRun-timeAPI": 53 },
- "23": { "ExtenderFunctions": 5 },
- "24": { "FAQ": 2 },
- "25": { "File": 11 },
- "26": { "GameSavesCompatibility": 2 },
- "27": { "Gamevariables": 3 },
- "28": { "GeneralSettings": 5 },
- "29": { "Globalfunctions_Event": 6 },
- "30": { "Globalfunctions_General": 23 },
- "31": { "Globalfunctions_Message": 5 },
- "32": { "Globalfunctions_Room": 6 },
- "33": { "Globalfunctions_Screen": 2 },
- "34": { "Globalfunctions_Wait": 3 },
- "35": { "GlobalVariables": 4 },
- "36": { "GUI": 3 },
- "37": { "GUIControl": 1 },
- "38": { "Hotspot": 12 },
- "39": { "InventoryItem": 9 },
- "40": { "Keycodes": 1 },
- "41": { "Maths": 22 },
- "42": { "MIDI-playback": 1 },
- "43": { "Mouse": 1 },
- "44": { "Multimedia": 1 },
- "45": { "Object": 18 },
- "46": { "OOProgramming": 4 },
- "47": { "Overlay": 5 },
- "48": { "Pointers": 4 },
- "49": { "Preprocessor": 8 },
- "50": { "Region": 8 },
- "51": { "Room": 8 },
- "52": { "ScriptingTutorialPart1": 31 },
- "53": { "ScriptingTutorialPart2": 2 },
- "54": { "ScriptKeywords": 15 },
- "55": { "Setup": 1 },
- "56": { "Slider": 12 },
- "57": { "Speech": 1 },
- "58": { "StandardTypes": 1 },
- "59": { "String": 9 },
- "60": { "StringFormats": 3 },
- "61": { "System": 2 },
- "62": { "SystemLimits": 1 },
- "63": { "TemplateBASS": 7 },
- "64": { "TextBox": 1 },
- "65": { "Translations": 3 },
- "66": { "Tumbleweed_door": 1 },
- "67": { "UnicodeSupport": 2 },
- "68": { "UpgradeTo30": 1 },
- "69": { "UpgradeTo33": 2 },
- "70": { "UpgradeTo34": 1 },
- "71": { "UpgradeTo35": 1 },
- "72": { "UpgradeTo36": 3 },
- "73": { "Viewport": 2 }
+ "19": { "EditorRoom": 3 },
+ "20": { "EditorView": 2 },
+ "21": { "EngineConfigFile": 8 },
+ "22": { "EnginePluginDesign-timeAPI": 1 },
+ "23": { "EnginePluginRun-timeAPI": 53 },
+ "24": { "ExtenderFunctions": 5 },
+ "25": { "FAQ": 2 },
+ "26": { "File": 11 },
+ "27": { "GameSavesCompatibility": 2 },
+ "28": { "Gamevariables": 3 },
+ "29": { "GeneralSettings": 5 },
+ "30": { "Globalfunctions_Event": 6 },
+ "31": { "Globalfunctions_General": 23 },
+ "32": { "Globalfunctions_Message": 5 },
+ "33": { "Globalfunctions_Room": 6 },
+ "34": { "Globalfunctions_Screen": 2 },
+ "35": { "Globalfunctions_Wait": 3 },
+ "36": { "GlobalVariables": 4 },
+ "37": { "GUI": 3 },
+ "38": { "GUIControl": 1 },
+ "39": { "Hotspot": 12 },
+ "40": { "InventoryItem": 9 },
+ "41": { "Keycodes": 1 },
+ "42": { "Maths": 22 },
+ "43": { "MIDI-playback": 1 },
+ "44": { "Mouse": 1 },
+ "45": { "Multimedia": 1 },
+ "46": { "Object": 18 },
+ "47": { "OOProgramming": 4 },
+ "48": { "Overlay": 5 },
+ "49": { "Pointers": 4 },
+ "50": { "Preprocessor": 8 },
+ "51": { "Region": 8 },
+ "52": { "Room": 8 },
+ "53": { "ScriptingTutorialPart1": 31 },
+ "54": { "ScriptingTutorialPart2": 2 },
+ "55": { "ScriptKeywords": 15 },
+ "56": { "Setup": 1 },
+ "57": { "Slider": 12 },
+ "58": { "Speech": 1 },
+ "59": { "StandardTypes": 1 },
+ "60": { "String": 9 },
+ "61": { "StringFormats": 3 },
+ "62": { "System": 2 },
+ "63": { "SystemLimits": 1 },
+ "64": { "TemplateBASS": 7 },
+ "65": { "TextBox": 1 },
+ "66": { "Translations": 3 },
+ "67": { "Tumbleweed_door": 1 },
+ "68": { "UnicodeSupport": 2 },
+ "69": { "UpgradeTo30": 1 },
+ "70": { "UpgradeTo33": 2 },
+ "71": { "UpgradeTo34": 1 },
+ "72": { "UpgradeTo35": 1 },
+ "73": { "UpgradeTo36": 3 },
+ "74": { "Viewport": 2 }
},
"values": {
"0": { "acintro1": 1 },
@@ -65445,7 +65579,7 @@ var meta = {
"visible": {
"0": { "acintro2": 4 },
"1": { "Camera": 1 },
- "2": { "Character": 1 },
+ "2": { "Character": 2 },
"3": { "DrawingSurface": 3 },
"4": { "EditorGUI": 2 },
"5": { "EditorRoom": 1 },
@@ -65607,6 +65741,9 @@ var meta = {
"vpod": {
"0": { "Tumbleweed_player": 1 }
},
+ "vs": {
+ "0": { "EditorRoom": 1 }
+ },
"vsync": {
"0": { "EngineConfigFile": 1 },
"1": { "ObsoleteScriptAPI": 1 },
@@ -65684,7 +65821,7 @@ var meta = {
"1": { "acintro3": 1 },
"2": { "AdvancedRoomFeatures": 2 },
"3": { "Character": 2 },
- "4": { "EditorRoom": 1 },
+ "4": { "EditorRoom": 2 },
"5": { "EnginePluginRun-timeAPI": 2 },
"6": { "FAQ": 1 },
"7": { "Globalfunctions_Room": 5 },
@@ -65725,7 +65862,7 @@ var meta = {
"3": { "AdvancedRoomFeatures": 9 },
"4": { "Character": 22 },
"5": { "Debuggingfeatures": 1 },
- "6": { "EditorRoom": 3 },
+ "6": { "EditorRoom": 5 },
"7": { "EnginePluginRun-timeAPI": 2 },
"8": { "FAQ": 2 },
"9": { "GeneralSettings": 1 },
@@ -65838,7 +65975,7 @@ var meta = {
"32": { "EditorGUI": 1 },
"33": { "EditorPlugins": 2 },
"34": { "EditorPreferences": 3 },
- "35": { "EditorRoom": 1 },
+ "35": { "EditorRoom": 2 },
"36": { "EditorSprite": 1 },
"37": { "EditorView": 3 },
"38": { "EnginePluginDesign-timeAPI": 2 },
@@ -66306,7 +66443,7 @@ var meta = {
"32": { "EditorRoom": 1 },
"33": { "EnginePluginDesign-timeAPI": 1 },
"34": { "EnginePluginRun-timeAPI": 5 },
- "35": { "FAQ": 2 },
+ "35": { "FAQ": 3 },
"36": { "File": 1 },
"37": { "Game": 1 },
"38": { "GameSavesCompatibility": 4 },
@@ -66412,7 +66549,7 @@ var meta = {
"13": { "BlockingScripts": 3 },
"14": { "BuildAndroid": 2 },
"15": { "Button": 6 },
- "16": { "Character": 33 },
+ "16": { "Character": 35 },
"17": { "ColoursEditor": 1 },
"18": { "Constants": 2 },
"19": { "CustomDialogOptions": 2 },
@@ -66436,7 +66573,7 @@ var meta = {
"37": { "EditorLogPanel": 1 },
"38": { "EditorPlugins": 2 },
"39": { "EditorPreferences": 6 },
- "40": { "EditorRoom": 3 },
+ "40": { "EditorRoom": 8 },
"41": { "EditorSprite": 1 },
"42": { "EditorView": 5 },
"43": { "EngineConfigFile": 12 },
@@ -66570,7 +66707,7 @@ var meta = {
"26": { "EditorInventoryItems": 3 },
"27": { "EditorPlugins": 1 },
"28": { "EditorPreferences": 2 },
- "29": { "EditorRoom": 3 },
+ "29": { "EditorRoom": 4 },
"30": { "EditorSprite": 2 },
"31": { "EditorView": 2 },
"32": { "EngineConfigFile": 2 },
@@ -66656,7 +66793,7 @@ var meta = {
"8": { "AudioInScript": 2 },
"9": { "Button": 3 },
"10": { "Camera": 1 },
- "11": { "Character": 27 },
+ "11": { "Character": 28 },
"12": { "Constants": 1 },
"13": { "DefaultSetup": 1 },
"14": { "Dialog": 7 },
@@ -66669,53 +66806,54 @@ var meta = {
"21": { "EditorDialog": 2 },
"22": { "EditorGUI": 3 },
"23": { "EditorInventoryItems": 1 },
- "24": { "EditorSprite": 2 },
- "25": { "EngineConfigFile": 6 },
- "26": { "EnginePluginRun-timeAPI": 10 },
- "27": { "FAQ": 2 },
- "28": { "File": 4 },
- "29": { "Game": 8 },
- "30": { "GameSavesCompatibility": 1 },
- "31": { "GeneralSettings": 12 },
- "32": { "Globalfunctions_Event": 2 },
- "33": { "Globalfunctions_General": 7 },
- "34": { "Globalfunctions_Room": 4 },
- "35": { "Globalfunctions_Wait": 1 },
- "36": { "GUI": 10 },
- "37": { "GUIControl": 4 },
- "38": { "Hotspot": 1 },
- "39": { "InventoryItem": 1 },
- "40": { "InvWindow": 2 },
- "41": { "ListBox": 5 },
- "42": { "Mouse": 3 },
- "43": { "Multimedia": 3 },
- "44": { "Object": 7 },
- "45": { "Overlay": 3 },
- "46": { "Parser": 1 },
- "47": { "Pointers": 2 },
- "48": { "Preprocessor": 2 },
- "49": { "Region": 1 },
- "50": { "RepExec": 2 },
- "51": { "Screen": 1 },
- "52": { "ScriptingTutorialPart1": 1 },
- "53": { "ScriptingTutorialPart2": 1 },
- "54": { "ScriptKeywords": 1 },
- "55": { "Set": 4 },
- "56": { "Settingupthegame": 10 },
- "57": { "Speech": 3 },
- "58": { "String": 3 },
- "59": { "System": 9 },
- "60": { "SystemRequirements": 1 },
- "61": { "TemplateVerbcoin": 1 },
- "62": { "TextBox": 1 },
- "63": { "TroubleshootingWindowsZoneID": 1 },
- "64": { "Tumbleweed": 1 },
- "65": { "Tumbleweed_extensions": 1 },
- "66": { "UpgradeTo32": 1 },
- "67": { "UpgradeTo36": 1 },
- "68": { "UpgradeTo361": 1 },
- "69": { "ViewFrame": 1 },
- "70": { "Viewport": 1 }
+ "24": { "EditorRoom": 1 },
+ "25": { "EditorSprite": 2 },
+ "26": { "EngineConfigFile": 6 },
+ "27": { "EnginePluginRun-timeAPI": 10 },
+ "28": { "FAQ": 2 },
+ "29": { "File": 4 },
+ "30": { "Game": 8 },
+ "31": { "GameSavesCompatibility": 1 },
+ "32": { "GeneralSettings": 12 },
+ "33": { "Globalfunctions_Event": 2 },
+ "34": { "Globalfunctions_General": 7 },
+ "35": { "Globalfunctions_Room": 4 },
+ "36": { "Globalfunctions_Wait": 1 },
+ "37": { "GUI": 10 },
+ "38": { "GUIControl": 4 },
+ "39": { "Hotspot": 1 },
+ "40": { "InventoryItem": 1 },
+ "41": { "InvWindow": 2 },
+ "42": { "ListBox": 5 },
+ "43": { "Mouse": 3 },
+ "44": { "Multimedia": 3 },
+ "45": { "Object": 7 },
+ "46": { "Overlay": 3 },
+ "47": { "Parser": 1 },
+ "48": { "Pointers": 2 },
+ "49": { "Preprocessor": 2 },
+ "50": { "Region": 1 },
+ "51": { "RepExec": 2 },
+ "52": { "Screen": 1 },
+ "53": { "ScriptingTutorialPart1": 1 },
+ "54": { "ScriptingTutorialPart2": 1 },
+ "55": { "ScriptKeywords": 1 },
+ "56": { "Set": 4 },
+ "57": { "Settingupthegame": 10 },
+ "58": { "Speech": 3 },
+ "59": { "String": 3 },
+ "60": { "System": 9 },
+ "61": { "SystemRequirements": 1 },
+ "62": { "TemplateVerbcoin": 1 },
+ "63": { "TextBox": 1 },
+ "64": { "TroubleshootingWindowsZoneID": 1 },
+ "65": { "Tumbleweed": 1 },
+ "66": { "Tumbleweed_extensions": 1 },
+ "67": { "UpgradeTo32": 1 },
+ "68": { "UpgradeTo36": 1 },
+ "69": { "UpgradeTo361": 1 },
+ "70": { "ViewFrame": 1 },
+ "71": { "Viewport": 1 }
},
"which": {
"0": { "acintro": 1 },
@@ -66737,7 +66875,7 @@ var meta = {
"16": { "BuildAndroid": 1 },
"17": { "Button": 25 },
"18": { "Camera": 2 },
- "19": { "Character": 111 },
+ "19": { "Character": 112 },
"20": { "ColoursEditor": 2 },
"21": { "ContactingTheDevelopers": 2 },
"22": { "Copyright": 5 },
@@ -66762,7 +66900,7 @@ var meta = {
"41": { "EditorInventoryItems": 2 },
"42": { "EditorPlugins": 3 },
"43": { "EditorPreferences": 2 },
- "44": { "EditorRoom": 6 },
+ "44": { "EditorRoom": 7 },
"45": { "EditorSprite": 4 },
"46": { "EngineConfigFile": 3 },
"47": { "EnginePluginDesign-timeAPI": 6 },
@@ -67359,7 +67497,7 @@ var meta = {
"22": { "EditorSprite": 1 },
"23": { "EngineConfigFile": 3 },
"24": { "EnginePluginRun-timeAPI": 5 },
- "25": { "FAQ": 2 },
+ "25": { "FAQ": 3 },
"26": { "File": 2 },
"27": { "Game": 2 },
"28": { "GameSavesCompatibility": 1 },
@@ -67425,30 +67563,31 @@ var meta = {
"1": { "acintro3": 1 },
"2": { "acintro5": 1 },
"3": { "acintro7": 1 },
- "4": { "Copyright": 1 },
- "5": { "CustomDialogOptions": 1 },
- "6": { "Debuggingfeatures": 1 },
- "7": { "DialogScript": 1 },
- "8": { "EnginePluginRun-timeAPI": 2 },
- "9": { "GameSavesCompatibility": 1 },
- "10": { "Globalfunctions_General": 2 },
- "11": { "Globalfunctions_Room": 1 },
- "12": { "MIDI-playback": 1 },
- "13": { "MultipleScripts": 1 },
- "14": { "ScriptingTutorialPart2": 1 },
- "15": { "System": 1 },
- "16": { "SystemLimits": 1 },
- "17": { "UpgradeTo31": 1 },
- "18": { "UpgradeTo32": 1 },
- "19": { "UpgradeTo341": 1 },
- "20": { "UpgradeTo36": 1 },
- "21": { "UpgradingTo271": 1 }
+ "4": { "AudioChannel": 1 },
+ "5": { "Copyright": 1 },
+ "6": { "CustomDialogOptions": 1 },
+ "7": { "Debuggingfeatures": 1 },
+ "8": { "DialogScript": 1 },
+ "9": { "EnginePluginRun-timeAPI": 2 },
+ "10": { "GameSavesCompatibility": 1 },
+ "11": { "Globalfunctions_General": 2 },
+ "12": { "Globalfunctions_Room": 1 },
+ "13": { "MIDI-playback": 1 },
+ "14": { "MultipleScripts": 1 },
+ "15": { "ScriptingTutorialPart2": 1 },
+ "16": { "System": 1 },
+ "17": { "SystemLimits": 1 },
+ "18": { "UpgradeTo31": 1 },
+ "19": { "UpgradeTo32": 1 },
+ "20": { "UpgradeTo341": 1 },
+ "21": { "UpgradeTo36": 1 },
+ "22": { "UpgradingTo271": 1 }
},
"works": {
"0": { "acintro6": 1 },
"1": { "acintro9": 1 },
"2": { "AdvancedRoomFeatures": 2 },
- "3": { "AudioChannel": 3 },
+ "3": { "AudioChannel": 2 },
"4": { "AudioInScript": 1 },
"5": { "BlockingScripts": 1 },
"6": { "Character": 13 },
@@ -67850,7 +67989,7 @@ var meta = {
"18": { "BuildAndroid": 16 },
"19": { "Button": 10 },
"20": { "Camera": 14 },
- "21": { "Character": 109 },
+ "21": { "Character": 110 },
"22": { "ColoursEditor": 16 },
"23": { "Constants": 6 },
"24": { "ContactingTheDevelopers": 15 },
@@ -67878,7 +68017,7 @@ var meta = {
"46": { "EditorLogPanel": 2 },
"47": { "EditorPlugins": 15 },
"48": { "EditorPreferences": 9 },
- "49": { "EditorRoom": 15 },
+ "49": { "EditorRoom": 19 },
"50": { "EditorSprite": 27 },
"51": { "EditorView": 24 },
"52": { "EnginePluginDesign-timeAPI": 22 },
@@ -67886,7 +68025,7 @@ var meta = {
"54": { "EnginePlugins": 7 },
"55": { "EventTypes": 9 },
"56": { "ExtenderFunctions": 5 },
- "57": { "FAQ": 39 },
+ "57": { "FAQ": 40 },
"58": { "File": 42 },
"59": { "Game": 46 },
"60": { "GameEventsOrder": 3 },