- Huge design change in Inventory Trigger (Sorry about the people who already made Inventory Trigger; you should rewrite them somewhat :/)
- Check out Wiki's Trigger section's Inventory Link for details
- Also will upload example in More Examples
- Added capability to insert space in the in-game Script Editor. Use $ sign to indicate space. Read usage
- Fixed(but not sure) where the syntax error fails the plugin to load
- Added few functions to BungeeHelper
- Added few functions to CommonFunctions
1.0.0
Not sure if all the bugs are fixed, but it seems most of them are functioning well. I will upload it as Release starting from now.
- Two new Executors are added: #SPAWN and #GIVE
- Fixed(?) where random NPE occur via PlayerLocationManager. Please report to me if you see this happen
- Added MCMMO support. Similar usage as 'vault.' Will look forward to add support for popular plugins like Factions, etc.
- CustomTrigger now can hook third party plugins' events. Use full class name for eventName, so TriggerReactor can look for the event.
- For example, if you want to hook JobsJoinEvent of Jobs Reborn Plugin, then event name should be com.gamingmesh.jobs.api.JobsJoinEvent.
- Added the Event object itself to the local variable with name 'event.' So using the JobsJoinEvent as example again, you have access to JobsJoinEvent event.
- Few new functions in CommonFunctions.
1.0.1
- Few new functions to CommonFunctions. See the Variable section of Trigger in Wiki
- Fixed where using integer value for 'vault' related functions didn't work
- #SOUND and #SOUNDALL executor fix (you need to manually delete them before starting server, so it can be copied from the jar)
- Argument merge function no longer add extra space at the end of String.
- Fixed where /trg reload might can duplicates Listeners for CustomTrigger.
- Fixed parser where list of logics didn't parse properly
- Added boolean negation operator. See wiki's Logic for more info
- Added custom event PlayerPermissionCheckEvent. You can see more info in the Wiki's CustomEvents under Misc