Alpine Level Design: Difference between revisions

From Red Faction Wiki
No edit summary
No edit summary
Line 39: Line 39:
|description    = Identical to the normal Delay event, but cannot be retriggered. Will forward a message to all links after the specified delay. Messages sent to this event while a message is queued are ignored.
|description    = Identical to the normal Delay event, but cannot be retriggered. Will forward a message to all links after the specified delay. Messages sent to this event while a message is queued are ignored.
|on            = Queue a message to be forwarded after the configured delay.
|on            = Queue a message to be forwarded after the configured delay.
}}
{{Infobox RF1Event
|eventname      = Goal_Gate
|category      = AF_Utility
|description    = Performs a test on a specified goal (integer variable). Forwards message to links only if test passes.
|on            = Perform test and forward message if passed.
|params        = * '''value:''' (int, first "Texture Num") Specify the value to use for the test.
* '''goal:''' (string, first "Filename") Specify the goal name to test.
* '''value2:''' (int, second "Texture Num") Specify the second value to use for the test, if a second value is needed (currently only applies to between).
* '''test_type:''' (string, second "Filename") Specify the test to run. Must be one of the below, specified exactly.
** '''equal''' - Goal count equals value.
** '''nequal''' - Goal count does not equal value.
** '''gt''' - Goal count is greater than value.
** '''lt''' - Goal count is less than value.
** '''geq''' - Goal count is greater than or equal to value.
** '''leq''' - Goal count is less than or equal to value.
** '''between''' - Goal count is between value and value2 (inclusive).
** '''odd''' - Goal count is an odd number.
** '''even''' - Goal count is an even number.
** '''divisible''' - Goal count is divisible by value.
** '''ltinit''' - Goal count is less than its initial value.
** '''gtinit''' - Goal count is greater than its initial value.
** '''leinit''' - Goal count is less than or equal to its initial value.
** '''geinit''' - Goal count is greater than or equal to its initial value.
** '''eqinit''' - Goal count is equal to its initial value.
}}
}}
</div><div style="clear: both;"></div>
</div><div style="clear: both;"></div>

Revision as of 05:58, 25 November 2024



This page lists all new event scripting objects available in Alpine Faction.

AF_Flow

Icon Event E.png

Sequence

Each activation of this event routes the message to the next link in sequential order. After the last link, the cycle resets and the first link is called. Note the order of links is determined by the order in which you add them.
Icon Event E.png

Difficulty_Gate

Tests if the game is set to the specified difficulty and forwards messages only if true.
Icon Event E.png

Valid_Gate

Tests if the specified UID is a valid object and forwards messages only if true. In the case of objects that have life values (ie. clutter and entities), "valid" means alive.
Icon Event E.png

Switch_Random

Randomly select one of this event's links and send an on signal to it.
Icon Event E.png

Fixed_Delay

Identical to the normal Delay event, but cannot be retriggered. Will forward a message to all links after the specified delay. Messages sent to this event while a message is queued are ignored.
Icon Event E.png

Goal_Gate

Performs a test on a specified goal (integer variable). Forwards message to links only if test passes.

AF_General

Icon Event E.png

Clone_Entity

Creates a clone of the linked entity with the same properties and settings as its source.
Icon Event E.png

Set_Player_World_Collide

Control whether the player collides with level geometry.
Icon Event E.png

Set_Level_Hardness

Set the hardness for the loaded level (size of geo craters).
Icon Event E.png

HUD_Message

Display a green HUD message in the bottom middle of the screen (like the helper text when you pick up items).
Icon Event E.png

Play_Video

Play a .bik format video.

AF_Utility

Icon Event E.png

SetVar

Reconfigure a variable on linked events. Only supports new Alpine Faction events. Supports "delay" (float) as a variable name to set event delay. Other variable names are as indicated on this page. Specify the name of the variable to be set in the script name for SetVar using this scripe name format: "SetVar_VARNAME" where "VARNAME" is the variable name.
Icon Event E.png

Remove_Link

Used to remove links. If "remove_all" is turned off (default), removes links between objects this event is linked to. If "remove_all" is turned on, remove all links between every object this event is linked to and any other objects.
Icon Event E.png

Goal_Math

Used to perform math operations on goals (integer variables). Applies the operation to any level (non-persistent) goals, as well as any persistent goals that are loaded.
Icon Event E.png

Clear_Queued

Clears queued message (if any) on all linked events. Queued messages are messages that are queued per a configured delay value on that event.
Icon Event E.png

Add_Link

Adds links from the first link in the link array to each other link in the array. Link array is ordered based on the order in which you linked this event to other objects.