-
Notifications
You must be signed in to change notification settings - Fork 0
Triggers
A simplified vanilla camera offset trigger, you are offered with the options to change only offset X or offset Y.
Basically it's vanilla camera offset trigger with the option of "X Only" and "Y Only" mode.
The trigger will give the player a new ability : To narrow their hitbox when in fastfall state.
Setting up a flag array and activate them one-by-one when entering the trigger, kind of working as an easy version of trigger trigger chain
If position mode is enabled, then this could also be working as a ... flag fade trigger
Once the player touches the trigger, the trigger will start cycling the flags set in the parameters, each step will have a certain delay.
To adjust new flags according to the flags you have or don't have, works like multiple flag-if-flags.
Given format is {[if flags]: [add flags]}, ...
For example {a1: b1}, {a2: b2}, {a3: c1, c2}, {a4, a5: d1}
Similar to Flag Choose Trigger, but supports global flags and more complicated logic gates.
Given syntax is flag1, !flag2 >> *flag3, !flag4, !*flag5
>> is the symbol that differentiate the requirements and effects
Flags begin with ! mean inverted flag (must be disabled to meet the requirements)
Flags begin with * mean global flag that will be kept across maps or in the save file, this symbol can only be used in effect flags (the flags on the right of >>)
Yes, it wipes out all flags in-game.
This trigger is a trigger that interacts with IRL time, it will activate a flag when certain time conditions are met.
The time conditions look like this:
minute,30,60;hour,3;day,,25
minute,30,60 means the IRL minute should be greater than or equals to 30 while lower than 60
hour,3 means that the IRL hour should be greater than or equals to 3
day,,25 means that the IRL day should be lower than 25
It works similar to Flag Carousel, but this trigger only cycle the flags set for one step when people touches the trigger.
Each time you interact with the trigger, a flag will be chosen to activate randomly from the flags you set up.
Setting up a flag serial list and activate them by inserting numbers as signals when entering the trigger, kind of working as an easy version of trigger trigger chain
If position mode is enabled, then this could also be working as a ... flag fade trigger
The flags will be activated whenever the player step into the room you placed this trigger.
(No interaction needed)
A trigger that operates flags, working similarly as Flag Replace, but on string-based operations.
Currently it supports: Adding Prefixes or Suffixes to the flags, Removing First or Last or All keywords in the flags, Replacing First or Last or All keywords in flags, and Deleting (from the beginning) or Backspacing (from the end) in flags
When player interact with the trigger, it will switch between flag A and flag B.
Allows mapper to setup multiple timed flags available across a room, within a map, or within the save file.
When player enters the trigger, a random slider or counter value is set.
A solution to those mappers who always find their camera not smooth enough, this trigger will read your current camera offset and smoothly change the offset as player move in the trigger.
In vanilla smooth offset trigger, you need to insert two sets of offset, one as start-point offset, one as end-point offset. And this trigger will use your current offset as the start-point offset, so what you set will be the end-point offset.
Create or modify a stopclock for time counting
Changes the player subpixel value. Can be set to trigger once when entered, or trigger once per frame when player's inside.
So, this trigger is aimed for such situation:
Take Flag Trigger as example, there are sometimes, where you need to place the same flag triggers like C-Shape or S-Shape, of course, you can cover the whole area with a big trigger but that could also cover certain unnecessary areas. And if you place 3 triggers to form the C-Shape or 5 triggers to form the S-Shape, then something confusing may happen: When Players cross over the borderline, the trigger would be triggered again as if the player re-entered it.
Then this could be your solution, Trigger Extension will work in groups judging by its Extension Tag or target Trigger ID, and when the player cross over its borderline, it will detect if the player is colliding with other trigger members in the same group, avoiding the re-trigger situation.