├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── _scripts ├── automated │ ├── README.md │ └── configurehotkeys.py ├── clipboard.bat ├── clipboard.py ├── destructable.ini ├── devel_doodad_data.doo ├── doodad.ini ├── emergency │ ├── fixmodelpaths.py │ └── listfile.py ├── inliner │ ├── README.md │ ├── _tests │ │ ├── GOLD Parser-LICENSE.txt │ │ ├── __init__.py │ │ ├── pjass-readme.txt │ │ ├── pjass.exe │ │ ├── test-opt.j │ │ ├── test.j │ │ └── test_inliner.py │ ├── compile.py │ ├── dist │ │ ├── inliner.bat │ │ ├── inliner.exe │ │ ├── replace.bat │ │ └── test.bat │ ├── globalvars.py │ ├── inlineconstants.py │ ├── inliner.py │ └── inliner.spec ├── makedevel.py ├── manual │ ├── convert2decorations.py │ ├── createdecorations.py │ ├── defineupgrades.py │ └── nuke.py ├── myconfigparser.py ├── objecteditor.py ├── objecteditor │ ├── README.md │ ├── __init__.py │ ├── controller │ │ ├── __init__.py │ │ ├── newdecobuilder.py │ │ ├── newdecoration.py │ │ ├── newhero.py │ │ ├── newproduction.py │ │ ├── newselector.py │ │ ├── newtower.py │ │ ├── newunit.py │ │ ├── newvariation.py │ │ └── newworker.py │ ├── model │ │ ├── __init__.py │ │ ├── objectdata.py │ │ └── search.py │ └── view │ │ ├── __init__.py │ │ ├── menu.py │ │ ├── newdecobuilder.py │ │ ├── newdecoration.py │ │ ├── newhero.py │ │ ├── newproduction.py │ │ ├── newselector.py │ │ ├── newtower.py │ │ ├── newunit.py │ │ ├── newvariation.py │ │ └── newworker.py ├── one-time │ ├── convertStructureDecorations.py │ ├── forceReforgedIcons.py │ ├── makeDecosBuilderNonCampaign.py │ ├── makeDecosNonCampaign.py │ ├── readme.txt │ ├── registerremoveableabilities.py │ ├── removeDecorationPathMaps.py │ ├── removeTownHall.py │ ├── removeshadows.py │ └── zSetPaths.py ├── paste │ ├── README.md │ ├── config_upgrade_sys.py │ ├── getdecoproperties.py │ ├── searchindexer.py │ ├── searchindexernew.py │ └── unitmodels.py ├── pathingmaps │ ├── customized_pathmaps.json │ ├── customized_pathmaps.py │ ├── defaultpathmaps.py │ ├── derivatives.json │ ├── derivatives.py │ ├── excluded_decorations.txt │ ├── imagereader.py │ ├── legacy.py │ ├── legacy_structures.json │ ├── model2pathmap.json │ ├── model2pathmap.py │ └── used_pathtexs.json ├── s2id.py ├── searchcompat.py ├── terraindefinitions.py ├── test_createconfig.py ├── translator.py ├── unit.ini ├── unit_1.32.8.ini ├── utils │ ├── __init__.py │ └── configparser │ │ ├── __init__.py │ │ └── units.py ├── version │ ├── README.md │ ├── comparechanges.py │ └── merge.py ├── zLogger.py └── zTempSizeSolution.py ├── development └── scripts │ ├── Blizzard.j │ └── common.j ├── doodadConverter.js ├── package.json └── release ├── .w3x ├── map ├── Units │ └── CommandStrings.txt ├── war3map.doo ├── war3map.j ├── war3map.mmp ├── war3map.shd ├── war3map.w3c ├── war3map.w3e ├── war3map.w3r ├── war3map.w3s ├── war3map.wpm ├── war3mapExtra.txt ├── war3mapImported │ ├── Templates.toc │ ├── boxedtext.fdf │ ├── boxedtext.toc │ ├── lopupperbuttonbar.fdf │ ├── simplestatusbars.fdf │ ├── simplestatusbars.toc │ ├── terraineditor.fdf │ └── terraineditor.toc ├── war3mapUnits.doo └── war3mapskin.txt ├── table ├── ability.ini ├── buff.ini ├── destructable.ini ├── doodad.ini ├── imp.ini ├── item.ini ├── misc.ini ├── unit.ini ├── upgrade.ini └── w3i.ini ├── trigger ├── 01-Stuff │ ├── 1-IMPORTANT.txt │ ├── 2-Tutorials.txt │ ├── 3-Models.txt │ ├── 4-Plans.txt │ ├── 5-Organization.txt │ ├── 6-Hashtables.txt │ ├── 7-Ability Ideas.txt │ ├── 8-Unit Balance.txt │ └── 9-TODO.txt ├── 02-External Commands │ ├── 1-Generate Missing Doodad Globals.j │ ├── 2-External Set Tiles.j │ ├── 3-External Import All Files.j │ ├── 5-Allowed Abilities.j │ ├── 6-Enabling Inventory.j │ ├── 7-Items.j │ ├── 8-Stress Test 1.j │ └── 9-Create Water.j ├── 04-LoP Core │ ├── 01-LoPHeader.j │ ├── 02-LoPDecoBuilders.j │ ├── 03-LoPWidgets.j │ ├── 04-LoPPlayers.j │ ├── 05-LoPCommands.j │ ├── 06-LoPUtils.j │ ├── 07-LoPTip.j │ ├── 08-LoPDeprecated.j │ ├── 09-LoPStdlib.j │ ├── 10-LoPWarn.j │ ├── 11-LoPConstants.j │ └── 12-NativeRedefinitions.j ├── 05-Map Init │ ├── 02-Init Player Circles.j │ ├── 03-Init Deco Tents.j │ ├── 04-Init Quests.j │ ├── 06-Preload Deco Builders.j │ ├── 07-Preload Deco Builders View.j │ ├── 09-Init Main.lml │ ├── 10-Init 0 seconds.lml │ ├── 11-Init Create Events.lml │ ├── 11-Init Create Events.txt │ └── 13-Initialization Checker.j ├── 06-Map System │ ├── 01-System Deselect.j │ ├── 02-System Set Unit Color.j │ ├── 03-System Autoname.j │ ├── 04-System Detect Leaver.j │ ├── 05-System Player Locations.lml │ ├── 06-Cleanup.txt │ ├── 07-System Cleanup Death.j │ ├── 07-System Cleanup Death.txt │ ├── 08-System Cleanup Removal.j │ ├── 08-System Cleanup Removal.txt │ ├── 09-System Cleanup Owner Change.j │ ├── 10-System Cleanup UnitGroups.j │ ├── 10-System Cleanup UnitGroups.txt │ ├── 11-System Cleanup Items.j │ ├── 13-System Titan Palace Item Prot.j │ ├── 13-System Titan Palace Item Prot.txt │ ├── 14-System Titan Palace Prot.j │ ├── 15-System Titan GiveUnit.j │ ├── 16-System Titan Powers.j │ ├── 18-System PreventSave Catch.lml │ ├── 18-System PreventSave Catch.txt │ ├── 19-System PreventSave Clear.lml │ ├── 19-System PreventSave Clear.txt │ ├── 21-System Instant Upgrade.lml │ ├── 22-System On Upgrade Finish.j │ ├── 23-System On Upgrade Cancel.j │ ├── 25-SotDRP Chat.j │ ├── 26-Chat Message Handler.j │ └── 27-AdvChatBox LoP.j ├── 07-Player Commands │ ├── 01-Commands Fullscreen.j │ ├── 02-Commands Chatbox.j │ ├── 03-Commands Fix.j │ ├── 04-Commands Editor.j │ ├── 05-Commands Tips.j │ ├── 06-Commands Roll.j │ ├── 07-Commands Count.j │ ├── 08-Commands Set Color.j │ ├── 09-Commands Deleteme.j │ ├── 10-Commands Toggle Autoname.j │ ├── 11-Commands Hide Decos.j │ ├── 12-Commands Spawn Stuff.j │ ├── 13-Commands Spawn Decos.j │ ├── 14-Commands Camera.j │ ├── 15-Commands Freecam.j │ ├── 16-Commands Set Alliance.j │ ├── 17-Commands Set Name.j │ ├── 18-Commands Real Name.j │ ├── 20-Commands Make Hero.j │ ├── 21-Commands Ability.j │ ├── 22-Commands Patrol.j │ ├── 23-Commands Neutral.j │ ├── 24-Commands Take.j │ ├── 25-Commands Copy.j │ ├── 26-Commands Give.j │ ├── 27-Commands Collision.j │ ├── 28-Commands Remove Kill.j │ ├── 29-Commands Name Unit.j │ ├── 30-Titan Commands.txt │ ├── 31-CommandsR Time.j │ ├── 32-CommandsR Toggle Prot.j │ ├── 33-CommandsR Make Titan.j │ ├── 34-CommandsR Delete.j │ ├── 35-CommandsR Fog.j │ ├── 35-CommandsR Fog.txt │ ├── 36-CommandsR Water Color.j │ ├── 37-CommandsR Kick.j │ ├── 38-CommandsR The Creator.lml │ ├── 39-CommandsR Toggle Dmg Tags.j │ ├── 41-CommandsD Select Search.j │ ├── 42-CommandsD Control.j │ ├── 43-CommandsD Set AoE.j │ ├── 44-CommandsD Set Tree Space.j │ ├── 45-CommandsD Set Parameters.j │ ├── 46-CommandsD Set RGB.j │ ├── 47-CommandsD Unit Mods.j │ ├── 48-CommandsD Add Tag.j │ ├── 49-CommandsD Select No.j │ ├── 50-CommandsD Variation.j │ ├── 51-CommandsD Rotate.j │ ├── 52-Commands Skin.j │ ├── 54-Commands Save.j │ ├── 55-Commands Request.j │ ├── 56-Commands Usav.j │ ├── 57-Commands Dsav.j │ ├── 58-Commands Tsav.j │ ├── 59-Commands Asav.j │ ├── 60-Commands Compat.j │ ├── 62-Hotkey Move Units.j │ ├── 63-LoPHotkeys.j │ └── 65-Commands Test.j ├── 09-Deco Builders │ ├── 02-DecoBuilder Movement.j │ ├── 02-DecoBuilder Movement.txt │ ├── 03-DecoBuilder RangedBuild.j │ ├── 05-DecoBuilder Cast Ability.j │ ├── 07-TerrainSystem Cast Ability.j │ ├── 09-TreeSystem Create Trees.j │ ├── 09-TreeSystem Create Trees.txt │ ├── 10-TreeSystem Cast Ability.j │ └── 11-TreeSystem Choose Tree.j ├── 10-Decorations │ ├── 01-Deco OnEnterMap.j │ ├── 02-Deco Root Anywhere.j │ ├── 04-Deco Movement.j │ ├── 05-Deco Waygate.lml │ ├── 06-Deco Gates.lml │ ├── 06-Deco Gates.txt │ ├── 08-UpgradeSystem.j │ └── 10-UpgradeSystemInit.j ├── 12-Units │ ├── 1-CustomizableAbilityList.j │ ├── 2-MountSystem.j │ ├── 4-Hero Give Potion.lml │ └── 5-Hero Level Up.j ├── 14-Libraries │ └── 1-Import Library Standard.j ├── 17-Data Structures │ ├── 1-GMUI Main.j │ ├── 1-GMUI Main.txt │ ├── 2-Lists.j │ ├── 3-GAL Main.j │ ├── 4-GLHS Main.j │ ├── 4-GLHS Main.txt │ ├── 5-GLHS Generics.j │ └── 6-StaticLinkedSet.j ├── 18-Tables │ ├── 2-Table.j │ ├── 4-ConstTable.j │ ├── 5-HashtableWrapper.j │ ├── 7-TableStruct.j │ ├── 8-HashStruct.j │ └── 9-AgentStruct.j ├── 19-Tiles │ ├── 1-TileDefinition.j │ ├── 2-PathingTileDefinition.j │ ├── 3-StructureTileDefinition.j │ └── 4-AnyTileDefinition.j ├── 20-Rects │ ├── 1-UserDefinedRects.j │ ├── 2-RectGenerator.j │ ├── 3-RectEnvironment.j │ └── 4-AutoRectEnvironment.j ├── 21-Terrain Libraries │ ├── 1-TerrainTools.j │ ├── 2-Deformations.j │ ├── 3-DeformationTools.j │ └── 4-DeformationToolsHooks.j ├── 22-Function Interfaces │ ├── 1-FuncInterface.j │ └── 2-FuncInterfaceIntegerPlayerBoolean.j ├── 23-vJass │ ├── 02-Maths.j │ ├── 03-MathParser.j │ ├── 04-Matrices.j │ ├── 05-Rawcode2String.j │ ├── 06-StringHashEx.j │ ├── 07-WorldBounds.j │ ├── 08-DestructableLib.j │ ├── 09-GroupTools.j │ ├── 10-HeroicUnit.j │ ├── 12-PlayerUtils Lite.j │ ├── 13-Timeline Lite.j │ ├── 15-OOP.j │ ├── 16-AnyBase.j │ ├── 17-BitFlags.j │ ├── 18-CutToComma.j │ ├── 19-PlayerColorUtils.j │ ├── 20-ArgumentStack.j │ ├── 21-BoolExprEvaluator.j │ ├── 23-Debug.j │ ├── 25-Camera System.j │ ├── 26-LockableStructs.j │ ├── 27-Packets.j │ ├── 28-WorldBoundsUtils.j │ ├── 29-UnitName.j │ ├── 30-CallbackTools.j │ └── 31-RGBA.j ├── 25-Unit Event │ ├── 1-Unit Event Config.lml │ ├── 1-Unit Event Config.txt │ ├── 2-Unit Event.j │ └── 3-Unit Indexer.j ├── 26-Unit Libs │ ├── 02-UnitVisualValues.j │ ├── 03-UnitVisualMods.j │ ├── 04-UnitVisualMods Copy Module.j │ ├── 05-UnitVisualMods Upgrade Module.j │ ├── 07-MultiPatrol.j │ ├── 08-MultiPatrol Addons.j │ ├── 10-TransportUtils.j │ └── 11-InstantRootOrder.j ├── 27-Special Effect Libs │ ├── 02-SpecialEffect.j │ ├── 03-DecorationSFX.j │ ├── 05-AttachedSFX.j │ ├── 06-FuncHooks.j │ ├── 07-FuncHooks Definitions.j │ ├── 09-Unit2Effect.j │ ├── 10-StringSubanimations.j │ ├── 12-UnitTypeDefaultValues.j │ └── 13-UnitModels.j ├── 28-Pathing Maps │ ├── 1-PathingMaps.j │ ├── 2-DefaultPathingMaps.j │ ├── 4-GeneratedDecorationPathMaps.j │ └── 6-InitializePathingsMapFromFiles.j ├── 30-SaveNLoad Core │ ├── 01-SaveNLoad.j │ ├── 03-SaveIO.j │ ├── 04-SaveNLoad ProgressBars.j │ ├── 06-SaveUnit.j │ ├── 07-SaveDestructable.j │ ├── 08-SaveTerrain.j │ ├── 09-SaveMain.j │ ├── 11-SaveLoad Commands.j │ ├── 11-SaveLoad Commands.txt │ ├── 12-SaveLoad Set Center Numbers.j │ └── 12-SaveLoad Set Center Numbers.txt ├── 31-SaveNLoad LoP │ ├── 02-SaveNLoad Unit.j │ ├── 03-SaveUnitExtras.j │ ├── 04-SaveNLoadDestructable.j │ ├── 05-SaveNLoad Terrain.j │ ├── 07-RectSaveLoader.j │ ├── 08-SyncUnit.j │ ├── 09-SyncUnit Extra.j │ ├── 10-SyncDestructable.j │ └── 11-SyncTerrain.j ├── 36-Knockback 2D │ ├── 1-Knockback 2D Config.lml │ ├── 1-Knockback 2D Config.txt │ ├── 2-Knockback 2D Destroy.lml │ ├── 3-Knockback 2D.lml │ ├── 3-Knockback 2D.txt │ ├── 4-Knockback 2D System.j │ ├── 5-Knockback 2D System Copy.j │ ├── 6-K2D OnLoop Template.lml │ └── 6-K2D OnLoop Template.txt ├── 37-Damage Engine │ ├── 1-Damage Engine Config.lml │ ├── 2-Damage Engine.j │ ├── 3-Damage Tag.j │ ├── 3-Damage Tag.txt │ ├── 4-Bash.j │ └── 5-Combat Tag.j ├── 38-GUI Spell System │ ├── 1-Read Me.txt │ ├── 2-Spell System Config.lml │ └── 3-Spell System.j ├── 40-Spell Scripting Utils │ ├── 01-DummyRecycler.j │ ├── 02-UnitEvents.j │ ├── 03-GCOS Init.lml │ ├── 03-GCOS Init.txt │ ├── 04-Circle Object System.j │ ├── 06-NeoBonus.j │ ├── 07-MoveSpeedBonus.j │ ├── 08-CustomStatSystem.j │ ├── 09-MoveSpeedModification.j │ ├── 11-TimedBonus.j │ ├── 12-DummyDmg.j │ └── 14-Victim Tracker.j ├── 41-Disable System - GDS │ ├── 1-GDS Setup.lml │ ├── 1-GDS Setup.txt │ ├── 2-GDS Main Modifier.j │ ├── 2-GDS Main Modifier.txt │ ├── 3-GDS Main.j │ └── 3-GDS Main.txt ├── 43-Spell System Spells │ ├── 01-Spell System Filter Decorations.j │ ├── 02-Initialize Spells.lml │ ├── 02-Initialize Spells.txt │ ├── 03-Spell System Sample Config.lml │ ├── 05-Mimic.j │ ├── 06-ToggleAura.j │ ├── 08-Spatial Distortion Cast.j │ ├── 09-AoE Snare.lml │ ├── 10-Mass Banish.lml │ ├── 11-Tyrael Judgement.lml │ ├── 12-Tyrael WotT Cast.j │ ├── 13-Chain Slow.j │ ├── 14-Stormstrike.j │ ├── 15-Replenish.lml │ ├── 16-Disarming Blow.lml │ ├── 17-Scatter Shot.lml │ ├── 18-Imperius Light of Valor.lml │ ├── 19-War Stomp.lml │ ├── 20-Carrion Burst.j │ ├── 21-Burst of Despair.lml │ ├── 22-Greater Shockwave.j │ ├── 23-Bladespin.lml │ ├── 24-Charge Cast.lml │ ├── 25-Charge Collision.lml │ ├── 26-Charge End.lml │ ├── 27-Thunderstrike Cast.lml │ ├── 28-Thunderstrike Impact.lml │ ├── 29-Waterspout.lml │ ├── 30-Battle Jump Cast.lml │ ├── 31-Battle Jump End.lml │ ├── 32-Ethereal Jaunt.lml │ ├── 33-Power Surge.lml │ ├── 34-Comet.j │ ├── 35-Silence.lml │ ├── 36-Thunder Clap.lml │ ├── 37-Breath of Frost.j │ ├── 39-Make Unit Selectable.j │ ├── 40-Angel Judgement.lml │ ├── 41-Defend Turn On.j │ ├── 42-Defend Turn Off.j │ ├── 44-Staff of Mimic.j │ ├── 46-Cosmosis Obliterate.j │ ├── 47-Critter Wander.j │ ├── 48-Mirror Image.j │ ├── 49-Pick Up Rider.j │ ├── 50-Ditch Rider.j │ └── 51-Silver Key.lml ├── 44-No Spell System Spells │ ├── 1-FilterTransformations.j │ ├── 2-Ability Cooldown.lml │ ├── 3-Summon.j │ ├── 4-Sargeras Silence Aura.lml │ ├── 5-Aura Of Restitution.j │ ├── 7-Cosmosis Stop Time.j │ ├── 8-Cosmosis Give Item.j │ └── 9-TheCreator Invincibility.j ├── 45-Knockback Samples │ ├── 1-On Damage.lml │ ├── 1-On Damage.txt │ ├── 2-On Impact.lml │ ├── 3-On Spell Cast.lml │ ├── 4-On Spell Stop.lml │ └── 5-Test.lml ├── 50-UI │ ├── 01-Screen.j │ ├── 02-UILib.j │ ├── 03-LoP UI.j │ ├── 04-ListBox.j │ ├── 05-IsMouseOnButton.j │ ├── 06-EditBoxFix.j │ ├── 07-WidescreenUI.j │ ├── 08-IsMouseOnWorld.j │ ├── 09-System HeroicUnit InfoPanel.j │ └── 10-ButtonTools.j ├── 51-ControlState │ ├── 1-SelectionStates.j │ ├── 2-PlayerEventTools.j │ ├── 3-PlayerEvent.j │ ├── 5-ControlState.j │ ├── 6-Free Cam.j │ └── 7-OSKeyLib.j ├── 53-Screens │ ├── 1-UpperButtonBar View.j │ ├── 2-UpperButtonBar Controller.j │ ├── 3-MainMenu View.j │ ├── 4-MainMenu Controller.j │ ├── 5-ChatLog View.j │ ├── 6-ChatLog Controller.j │ ├── 7-GameTime View.j │ └── 8-GameTime Copy.j ├── 54-Decoration Browser │ ├── 2-Decoration Browser View.j │ ├── 3-Decoration Browser Controller.j │ ├── 4-Register Decoration Names.j │ ├── 5-Register Classic Decorations.j │ └── 6-Register Reforged Decorations.j ├── 55-AdvChatBox │ ├── 1-AdvChatBox View.j │ └── 2-AdvChatBox Controller.j ├── 56-TerrainEditor │ ├── 1-TerrainEditor.j │ ├── 2-TerrainEditorUI.j │ ├── 3-TerrainEditorUI View.j │ ├── 4-TerrainEditorUI Controller.j │ └── 5-TileDefs.j ├── 59-Destructable Systems │ ├── 1-Untitled Trigger 002.j │ └── 2-Create Destructable.lml ├── 60-Memory │ ├── 1-TimerMemory.j │ ├── 2-TriggerMemory.j │ └── 3-RegionMemory.j ├── catalog.lml └── variable.lml └── w3x2lni ├── locale ├── lml.lng └── w3i.lng └── version └── lml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/README.md -------------------------------------------------------------------------------- /_scripts/automated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/automated/README.md -------------------------------------------------------------------------------- /_scripts/automated/configurehotkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/automated/configurehotkeys.py -------------------------------------------------------------------------------- /_scripts/clipboard.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/clipboard.bat -------------------------------------------------------------------------------- /_scripts/clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/clipboard.py -------------------------------------------------------------------------------- /_scripts/destructable.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/destructable.ini -------------------------------------------------------------------------------- /_scripts/devel_doodad_data.doo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/devel_doodad_data.doo -------------------------------------------------------------------------------- /_scripts/doodad.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/doodad.ini -------------------------------------------------------------------------------- /_scripts/emergency/fixmodelpaths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/emergency/fixmodelpaths.py -------------------------------------------------------------------------------- /_scripts/emergency/listfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/emergency/listfile.py -------------------------------------------------------------------------------- /_scripts/inliner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/inliner/README.md -------------------------------------------------------------------------------- /_scripts/inliner/_tests/GOLD Parser-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/inliner/_tests/GOLD Parser-LICENSE.txt -------------------------------------------------------------------------------- /_scripts/inliner/_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_scripts/inliner/_tests/pjass-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/inliner/_tests/pjass-readme.txt -------------------------------------------------------------------------------- /_scripts/inliner/_tests/pjass.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/inliner/_tests/pjass.exe -------------------------------------------------------------------------------- /_scripts/inliner/_tests/test-opt.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/inliner/_tests/test-opt.j -------------------------------------------------------------------------------- /_scripts/inliner/_tests/test.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/inliner/_tests/test.j -------------------------------------------------------------------------------- /_scripts/inliner/_tests/test_inliner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/inliner/_tests/test_inliner.py -------------------------------------------------------------------------------- /_scripts/inliner/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/inliner/compile.py -------------------------------------------------------------------------------- /_scripts/inliner/dist/inliner.bat: -------------------------------------------------------------------------------- 1 | "%~dp0inliner.exe" %* 2 | pause -------------------------------------------------------------------------------- /_scripts/inliner/dist/inliner.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/inliner/dist/inliner.exe -------------------------------------------------------------------------------- /_scripts/inliner/dist/replace.bat: -------------------------------------------------------------------------------- 1 | "%~dp0inliner.exe" %* -replace -------------------------------------------------------------------------------- /_scripts/inliner/dist/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/inliner/dist/test.bat -------------------------------------------------------------------------------- /_scripts/inliner/globalvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/inliner/globalvars.py -------------------------------------------------------------------------------- /_scripts/inliner/inlineconstants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/inliner/inlineconstants.py -------------------------------------------------------------------------------- /_scripts/inliner/inliner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/inliner/inliner.py -------------------------------------------------------------------------------- /_scripts/inliner/inliner.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/inliner/inliner.spec -------------------------------------------------------------------------------- /_scripts/makedevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/makedevel.py -------------------------------------------------------------------------------- /_scripts/manual/convert2decorations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/manual/convert2decorations.py -------------------------------------------------------------------------------- /_scripts/manual/createdecorations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/manual/createdecorations.py -------------------------------------------------------------------------------- /_scripts/manual/defineupgrades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/manual/defineupgrades.py -------------------------------------------------------------------------------- /_scripts/manual/nuke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/manual/nuke.py -------------------------------------------------------------------------------- /_scripts/myconfigparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/myconfigparser.py -------------------------------------------------------------------------------- /_scripts/objecteditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor.py -------------------------------------------------------------------------------- /_scripts/objecteditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/README.md -------------------------------------------------------------------------------- /_scripts/objecteditor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_scripts/objecteditor/controller/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/controller/__init__.py -------------------------------------------------------------------------------- /_scripts/objecteditor/controller/newdecobuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/controller/newdecobuilder.py -------------------------------------------------------------------------------- /_scripts/objecteditor/controller/newdecoration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/controller/newdecoration.py -------------------------------------------------------------------------------- /_scripts/objecteditor/controller/newhero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/controller/newhero.py -------------------------------------------------------------------------------- /_scripts/objecteditor/controller/newproduction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/controller/newproduction.py -------------------------------------------------------------------------------- /_scripts/objecteditor/controller/newselector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/controller/newselector.py -------------------------------------------------------------------------------- /_scripts/objecteditor/controller/newtower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/controller/newtower.py -------------------------------------------------------------------------------- /_scripts/objecteditor/controller/newunit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/controller/newunit.py -------------------------------------------------------------------------------- /_scripts/objecteditor/controller/newvariation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/controller/newvariation.py -------------------------------------------------------------------------------- /_scripts/objecteditor/controller/newworker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/controller/newworker.py -------------------------------------------------------------------------------- /_scripts/objecteditor/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/model/__init__.py -------------------------------------------------------------------------------- /_scripts/objecteditor/model/objectdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/model/objectdata.py -------------------------------------------------------------------------------- /_scripts/objecteditor/model/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/model/search.py -------------------------------------------------------------------------------- /_scripts/objecteditor/view/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/view/__init__.py -------------------------------------------------------------------------------- /_scripts/objecteditor/view/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/view/menu.py -------------------------------------------------------------------------------- /_scripts/objecteditor/view/newdecobuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/view/newdecobuilder.py -------------------------------------------------------------------------------- /_scripts/objecteditor/view/newdecoration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/view/newdecoration.py -------------------------------------------------------------------------------- /_scripts/objecteditor/view/newhero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/view/newhero.py -------------------------------------------------------------------------------- /_scripts/objecteditor/view/newproduction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/view/newproduction.py -------------------------------------------------------------------------------- /_scripts/objecteditor/view/newselector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/view/newselector.py -------------------------------------------------------------------------------- /_scripts/objecteditor/view/newtower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/view/newtower.py -------------------------------------------------------------------------------- /_scripts/objecteditor/view/newunit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/view/newunit.py -------------------------------------------------------------------------------- /_scripts/objecteditor/view/newvariation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/view/newvariation.py -------------------------------------------------------------------------------- /_scripts/objecteditor/view/newworker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/objecteditor/view/newworker.py -------------------------------------------------------------------------------- /_scripts/one-time/convertStructureDecorations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/one-time/convertStructureDecorations.py -------------------------------------------------------------------------------- /_scripts/one-time/forceReforgedIcons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/one-time/forceReforgedIcons.py -------------------------------------------------------------------------------- /_scripts/one-time/makeDecosBuilderNonCampaign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/one-time/makeDecosBuilderNonCampaign.py -------------------------------------------------------------------------------- /_scripts/one-time/makeDecosNonCampaign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/one-time/makeDecosNonCampaign.py -------------------------------------------------------------------------------- /_scripts/one-time/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/one-time/readme.txt -------------------------------------------------------------------------------- /_scripts/one-time/registerremoveableabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/one-time/registerremoveableabilities.py -------------------------------------------------------------------------------- /_scripts/one-time/removeDecorationPathMaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/one-time/removeDecorationPathMaps.py -------------------------------------------------------------------------------- /_scripts/one-time/removeTownHall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/one-time/removeTownHall.py -------------------------------------------------------------------------------- /_scripts/one-time/removeshadows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/one-time/removeshadows.py -------------------------------------------------------------------------------- /_scripts/one-time/zSetPaths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/one-time/zSetPaths.py -------------------------------------------------------------------------------- /_scripts/paste/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/paste/README.md -------------------------------------------------------------------------------- /_scripts/paste/config_upgrade_sys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/paste/config_upgrade_sys.py -------------------------------------------------------------------------------- /_scripts/paste/getdecoproperties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/paste/getdecoproperties.py -------------------------------------------------------------------------------- /_scripts/paste/searchindexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/paste/searchindexer.py -------------------------------------------------------------------------------- /_scripts/paste/searchindexernew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/paste/searchindexernew.py -------------------------------------------------------------------------------- /_scripts/paste/unitmodels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/paste/unitmodels.py -------------------------------------------------------------------------------- /_scripts/pathingmaps/customized_pathmaps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/pathingmaps/customized_pathmaps.json -------------------------------------------------------------------------------- /_scripts/pathingmaps/customized_pathmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/pathingmaps/customized_pathmaps.py -------------------------------------------------------------------------------- /_scripts/pathingmaps/defaultpathmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/pathingmaps/defaultpathmaps.py -------------------------------------------------------------------------------- /_scripts/pathingmaps/derivatives.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/pathingmaps/derivatives.json -------------------------------------------------------------------------------- /_scripts/pathingmaps/derivatives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/pathingmaps/derivatives.py -------------------------------------------------------------------------------- /_scripts/pathingmaps/excluded_decorations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/pathingmaps/excluded_decorations.txt -------------------------------------------------------------------------------- /_scripts/pathingmaps/imagereader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/pathingmaps/imagereader.py -------------------------------------------------------------------------------- /_scripts/pathingmaps/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/pathingmaps/legacy.py -------------------------------------------------------------------------------- /_scripts/pathingmaps/legacy_structures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/pathingmaps/legacy_structures.json -------------------------------------------------------------------------------- /_scripts/pathingmaps/model2pathmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/pathingmaps/model2pathmap.json -------------------------------------------------------------------------------- /_scripts/pathingmaps/model2pathmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/pathingmaps/model2pathmap.py -------------------------------------------------------------------------------- /_scripts/pathingmaps/used_pathtexs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/pathingmaps/used_pathtexs.json -------------------------------------------------------------------------------- /_scripts/s2id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/s2id.py -------------------------------------------------------------------------------- /_scripts/searchcompat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/searchcompat.py -------------------------------------------------------------------------------- /_scripts/terraindefinitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/terraindefinitions.py -------------------------------------------------------------------------------- /_scripts/test_createconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/test_createconfig.py -------------------------------------------------------------------------------- /_scripts/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/translator.py -------------------------------------------------------------------------------- /_scripts/unit.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/unit.ini -------------------------------------------------------------------------------- /_scripts/unit_1.32.8.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/unit_1.32.8.ini -------------------------------------------------------------------------------- /_scripts/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_scripts/utils/configparser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/utils/configparser/__init__.py -------------------------------------------------------------------------------- /_scripts/utils/configparser/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/utils/configparser/units.py -------------------------------------------------------------------------------- /_scripts/version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/version/README.md -------------------------------------------------------------------------------- /_scripts/version/comparechanges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/version/comparechanges.py -------------------------------------------------------------------------------- /_scripts/version/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/version/merge.py -------------------------------------------------------------------------------- /_scripts/zLogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/zLogger.py -------------------------------------------------------------------------------- /_scripts/zTempSizeSolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/_scripts/zTempSizeSolution.py -------------------------------------------------------------------------------- /development/scripts/Blizzard.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/development/scripts/Blizzard.j -------------------------------------------------------------------------------- /development/scripts/common.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/development/scripts/common.j -------------------------------------------------------------------------------- /doodadConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/doodadConverter.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/package.json -------------------------------------------------------------------------------- /release/.w3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/.w3x -------------------------------------------------------------------------------- /release/map/Units/CommandStrings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/map/Units/CommandStrings.txt -------------------------------------------------------------------------------- /release/map/war3map.doo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/map/war3map.doo -------------------------------------------------------------------------------- /release/map/war3map.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/map/war3map.j -------------------------------------------------------------------------------- /release/map/war3map.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/map/war3map.mmp -------------------------------------------------------------------------------- /release/map/war3map.shd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/map/war3map.shd -------------------------------------------------------------------------------- /release/map/war3map.w3c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/map/war3map.w3c -------------------------------------------------------------------------------- /release/map/war3map.w3e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/map/war3map.w3e -------------------------------------------------------------------------------- /release/map/war3map.w3r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/map/war3map.w3r -------------------------------------------------------------------------------- /release/map/war3map.w3s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/map/war3map.w3s -------------------------------------------------------------------------------- /release/map/war3map.wpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/map/war3map.wpm -------------------------------------------------------------------------------- /release/map/war3mapExtra.txt: -------------------------------------------------------------------------------- 1 | [MapExtraInfo] 2 | TimeOfDay=0 3 | 4 | -------------------------------------------------------------------------------- /release/map/war3mapImported/Templates.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/map/war3mapImported/Templates.toc -------------------------------------------------------------------------------- /release/map/war3mapImported/boxedtext.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/map/war3mapImported/boxedtext.fdf -------------------------------------------------------------------------------- /release/map/war3mapImported/boxedtext.toc: -------------------------------------------------------------------------------- 1 | war3mapImported\boxedtext.fdf 2 | -------------------------------------------------------------------------------- /release/map/war3mapImported/lopupperbuttonbar.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/map/war3mapImported/lopupperbuttonbar.fdf -------------------------------------------------------------------------------- /release/map/war3mapImported/simplestatusbars.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/map/war3mapImported/simplestatusbars.fdf -------------------------------------------------------------------------------- /release/map/war3mapImported/simplestatusbars.toc: -------------------------------------------------------------------------------- 1 | war3mapImported\simplestatusbars.fdf 2 | -------------------------------------------------------------------------------- /release/map/war3mapImported/terraineditor.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/map/war3mapImported/terraineditor.fdf -------------------------------------------------------------------------------- /release/map/war3mapImported/terraineditor.toc: -------------------------------------------------------------------------------- 1 | war3mapImported\terraineditor.fdf 2 | 3 | -------------------------------------------------------------------------------- /release/map/war3mapUnits.doo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/map/war3mapUnits.doo -------------------------------------------------------------------------------- /release/map/war3mapskin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/map/war3mapskin.txt -------------------------------------------------------------------------------- /release/table/ability.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/table/ability.ini -------------------------------------------------------------------------------- /release/table/buff.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/table/buff.ini -------------------------------------------------------------------------------- /release/table/destructable.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/table/destructable.ini -------------------------------------------------------------------------------- /release/table/doodad.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/table/doodad.ini -------------------------------------------------------------------------------- /release/table/imp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/table/imp.ini -------------------------------------------------------------------------------- /release/table/item.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/table/item.ini -------------------------------------------------------------------------------- /release/table/misc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/table/misc.ini -------------------------------------------------------------------------------- /release/table/unit.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/table/unit.ini -------------------------------------------------------------------------------- /release/table/upgrade.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/table/upgrade.ini -------------------------------------------------------------------------------- /release/table/w3i.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/table/w3i.ini -------------------------------------------------------------------------------- /release/trigger/01-Stuff/1-IMPORTANT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/01-Stuff/1-IMPORTANT.txt -------------------------------------------------------------------------------- /release/trigger/01-Stuff/2-Tutorials.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/01-Stuff/2-Tutorials.txt -------------------------------------------------------------------------------- /release/trigger/01-Stuff/3-Models.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/01-Stuff/3-Models.txt -------------------------------------------------------------------------------- /release/trigger/01-Stuff/4-Plans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/01-Stuff/4-Plans.txt -------------------------------------------------------------------------------- /release/trigger/01-Stuff/5-Organization.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/01-Stuff/5-Organization.txt -------------------------------------------------------------------------------- /release/trigger/01-Stuff/6-Hashtables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/01-Stuff/6-Hashtables.txt -------------------------------------------------------------------------------- /release/trigger/01-Stuff/7-Ability Ideas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/01-Stuff/7-Ability Ideas.txt -------------------------------------------------------------------------------- /release/trigger/01-Stuff/8-Unit Balance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/01-Stuff/8-Unit Balance.txt -------------------------------------------------------------------------------- /release/trigger/01-Stuff/9-TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/01-Stuff/9-TODO.txt -------------------------------------------------------------------------------- /release/trigger/02-External Commands/1-Generate Missing Doodad Globals.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/02-External Commands/1-Generate Missing Doodad Globals.j -------------------------------------------------------------------------------- /release/trigger/02-External Commands/2-External Set Tiles.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/02-External Commands/2-External Set Tiles.j -------------------------------------------------------------------------------- /release/trigger/02-External Commands/3-External Import All Files.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/02-External Commands/3-External Import All Files.j -------------------------------------------------------------------------------- /release/trigger/02-External Commands/5-Allowed Abilities.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/02-External Commands/5-Allowed Abilities.j -------------------------------------------------------------------------------- /release/trigger/02-External Commands/6-Enabling Inventory.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/02-External Commands/6-Enabling Inventory.j -------------------------------------------------------------------------------- /release/trigger/02-External Commands/7-Items.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/02-External Commands/7-Items.j -------------------------------------------------------------------------------- /release/trigger/02-External Commands/8-Stress Test 1.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/02-External Commands/8-Stress Test 1.j -------------------------------------------------------------------------------- /release/trigger/02-External Commands/9-Create Water.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/02-External Commands/9-Create Water.j -------------------------------------------------------------------------------- /release/trigger/04-LoP Core/01-LoPHeader.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/04-LoP Core/01-LoPHeader.j -------------------------------------------------------------------------------- /release/trigger/04-LoP Core/02-LoPDecoBuilders.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/04-LoP Core/02-LoPDecoBuilders.j -------------------------------------------------------------------------------- /release/trigger/04-LoP Core/03-LoPWidgets.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/04-LoP Core/03-LoPWidgets.j -------------------------------------------------------------------------------- /release/trigger/04-LoP Core/04-LoPPlayers.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/04-LoP Core/04-LoPPlayers.j -------------------------------------------------------------------------------- /release/trigger/04-LoP Core/05-LoPCommands.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/04-LoP Core/05-LoPCommands.j -------------------------------------------------------------------------------- /release/trigger/04-LoP Core/06-LoPUtils.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/04-LoP Core/06-LoPUtils.j -------------------------------------------------------------------------------- /release/trigger/04-LoP Core/07-LoPTip.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/04-LoP Core/07-LoPTip.j -------------------------------------------------------------------------------- /release/trigger/04-LoP Core/08-LoPDeprecated.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/04-LoP Core/08-LoPDeprecated.j -------------------------------------------------------------------------------- /release/trigger/04-LoP Core/09-LoPStdlib.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/04-LoP Core/09-LoPStdlib.j -------------------------------------------------------------------------------- /release/trigger/04-LoP Core/10-LoPWarn.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/04-LoP Core/10-LoPWarn.j -------------------------------------------------------------------------------- /release/trigger/04-LoP Core/11-LoPConstants.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/04-LoP Core/11-LoPConstants.j -------------------------------------------------------------------------------- /release/trigger/04-LoP Core/12-NativeRedefinitions.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/04-LoP Core/12-NativeRedefinitions.j -------------------------------------------------------------------------------- /release/trigger/05-Map Init/02-Init Player Circles.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/05-Map Init/02-Init Player Circles.j -------------------------------------------------------------------------------- /release/trigger/05-Map Init/03-Init Deco Tents.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/05-Map Init/03-Init Deco Tents.j -------------------------------------------------------------------------------- /release/trigger/05-Map Init/04-Init Quests.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/05-Map Init/04-Init Quests.j -------------------------------------------------------------------------------- /release/trigger/05-Map Init/06-Preload Deco Builders.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/05-Map Init/06-Preload Deco Builders.j -------------------------------------------------------------------------------- /release/trigger/05-Map Init/07-Preload Deco Builders View.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/05-Map Init/07-Preload Deco Builders View.j -------------------------------------------------------------------------------- /release/trigger/05-Map Init/09-Init Main.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/05-Map Init/09-Init Main.lml -------------------------------------------------------------------------------- /release/trigger/05-Map Init/10-Init 0 seconds.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/05-Map Init/10-Init 0 seconds.lml -------------------------------------------------------------------------------- /release/trigger/05-Map Init/11-Init Create Events.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/05-Map Init/11-Init Create Events.lml -------------------------------------------------------------------------------- /release/trigger/05-Map Init/11-Init Create Events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/05-Map Init/11-Init Create Events.txt -------------------------------------------------------------------------------- /release/trigger/05-Map Init/13-Initialization Checker.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/05-Map Init/13-Initialization Checker.j -------------------------------------------------------------------------------- /release/trigger/06-Map System/01-System Deselect.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/01-System Deselect.j -------------------------------------------------------------------------------- /release/trigger/06-Map System/02-System Set Unit Color.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/02-System Set Unit Color.j -------------------------------------------------------------------------------- /release/trigger/06-Map System/03-System Autoname.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/03-System Autoname.j -------------------------------------------------------------------------------- /release/trigger/06-Map System/04-System Detect Leaver.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/04-System Detect Leaver.j -------------------------------------------------------------------------------- /release/trigger/06-Map System/05-System Player Locations.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/05-System Player Locations.lml -------------------------------------------------------------------------------- /release/trigger/06-Map System/06-Cleanup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/06-Cleanup.txt -------------------------------------------------------------------------------- /release/trigger/06-Map System/07-System Cleanup Death.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/07-System Cleanup Death.j -------------------------------------------------------------------------------- /release/trigger/06-Map System/07-System Cleanup Death.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/07-System Cleanup Death.txt -------------------------------------------------------------------------------- /release/trigger/06-Map System/08-System Cleanup Removal.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/08-System Cleanup Removal.j -------------------------------------------------------------------------------- /release/trigger/06-Map System/08-System Cleanup Removal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/08-System Cleanup Removal.txt -------------------------------------------------------------------------------- /release/trigger/06-Map System/09-System Cleanup Owner Change.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/09-System Cleanup Owner Change.j -------------------------------------------------------------------------------- /release/trigger/06-Map System/10-System Cleanup UnitGroups.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/10-System Cleanup UnitGroups.j -------------------------------------------------------------------------------- /release/trigger/06-Map System/10-System Cleanup UnitGroups.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/10-System Cleanup UnitGroups.txt -------------------------------------------------------------------------------- /release/trigger/06-Map System/11-System Cleanup Items.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/11-System Cleanup Items.j -------------------------------------------------------------------------------- /release/trigger/06-Map System/13-System Titan Palace Item Prot.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/13-System Titan Palace Item Prot.j -------------------------------------------------------------------------------- /release/trigger/06-Map System/13-System Titan Palace Item Prot.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /release/trigger/06-Map System/14-System Titan Palace Prot.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/14-System Titan Palace Prot.j -------------------------------------------------------------------------------- /release/trigger/06-Map System/15-System Titan GiveUnit.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/15-System Titan GiveUnit.j -------------------------------------------------------------------------------- /release/trigger/06-Map System/16-System Titan Powers.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/16-System Titan Powers.j -------------------------------------------------------------------------------- /release/trigger/06-Map System/18-System PreventSave Catch.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/18-System PreventSave Catch.lml -------------------------------------------------------------------------------- /release/trigger/06-Map System/18-System PreventSave Catch.txt: -------------------------------------------------------------------------------- 1 | Thanks to TriggerHappy for this code -------------------------------------------------------------------------------- /release/trigger/06-Map System/19-System PreventSave Clear.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/19-System PreventSave Clear.lml -------------------------------------------------------------------------------- /release/trigger/06-Map System/19-System PreventSave Clear.txt: -------------------------------------------------------------------------------- 1 | Thanks to TriggerHappy for this code -------------------------------------------------------------------------------- /release/trigger/06-Map System/21-System Instant Upgrade.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/21-System Instant Upgrade.lml -------------------------------------------------------------------------------- /release/trigger/06-Map System/22-System On Upgrade Finish.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/22-System On Upgrade Finish.j -------------------------------------------------------------------------------- /release/trigger/06-Map System/23-System On Upgrade Cancel.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/23-System On Upgrade Cancel.j -------------------------------------------------------------------------------- /release/trigger/06-Map System/25-SotDRP Chat.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/25-SotDRP Chat.j -------------------------------------------------------------------------------- /release/trigger/06-Map System/26-Chat Message Handler.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/26-Chat Message Handler.j -------------------------------------------------------------------------------- /release/trigger/06-Map System/27-AdvChatBox LoP.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/06-Map System/27-AdvChatBox LoP.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/01-Commands Fullscreen.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/01-Commands Fullscreen.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/02-Commands Chatbox.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/02-Commands Chatbox.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/03-Commands Fix.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/03-Commands Fix.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/04-Commands Editor.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/04-Commands Editor.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/05-Commands Tips.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/05-Commands Tips.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/06-Commands Roll.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/06-Commands Roll.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/07-Commands Count.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/07-Commands Count.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/08-Commands Set Color.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/08-Commands Set Color.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/09-Commands Deleteme.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/09-Commands Deleteme.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/10-Commands Toggle Autoname.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/10-Commands Toggle Autoname.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/11-Commands Hide Decos.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/11-Commands Hide Decos.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/12-Commands Spawn Stuff.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/12-Commands Spawn Stuff.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/13-Commands Spawn Decos.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/13-Commands Spawn Decos.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/14-Commands Camera.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/14-Commands Camera.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/15-Commands Freecam.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/15-Commands Freecam.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/16-Commands Set Alliance.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/16-Commands Set Alliance.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/17-Commands Set Name.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/17-Commands Set Name.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/18-Commands Real Name.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/18-Commands Real Name.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/20-Commands Make Hero.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/20-Commands Make Hero.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/21-Commands Ability.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/21-Commands Ability.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/22-Commands Patrol.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/22-Commands Patrol.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/23-Commands Neutral.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/23-Commands Neutral.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/24-Commands Take.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/24-Commands Take.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/25-Commands Copy.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/25-Commands Copy.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/26-Commands Give.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/26-Commands Give.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/27-Commands Collision.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/27-Commands Collision.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/28-Commands Remove Kill.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/28-Commands Remove Kill.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/29-Commands Name Unit.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/29-Commands Name Unit.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/30-Titan Commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/30-Titan Commands.txt -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/31-CommandsR Time.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/31-CommandsR Time.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/32-CommandsR Toggle Prot.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/32-CommandsR Toggle Prot.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/33-CommandsR Make Titan.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/33-CommandsR Make Titan.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/34-CommandsR Delete.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/34-CommandsR Delete.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/35-CommandsR Fog.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/35-CommandsR Fog.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/35-CommandsR Fog.txt: -------------------------------------------------------------------------------- 1 | -fog -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/36-CommandsR Water Color.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/36-CommandsR Water Color.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/37-CommandsR Kick.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/37-CommandsR Kick.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/38-CommandsR The Creator.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/38-CommandsR The Creator.lml -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/39-CommandsR Toggle Dmg Tags.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/39-CommandsR Toggle Dmg Tags.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/41-CommandsD Select Search.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/41-CommandsD Select Search.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/42-CommandsD Control.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/42-CommandsD Control.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/43-CommandsD Set AoE.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/43-CommandsD Set AoE.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/44-CommandsD Set Tree Space.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/44-CommandsD Set Tree Space.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/45-CommandsD Set Parameters.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/45-CommandsD Set Parameters.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/46-CommandsD Set RGB.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/46-CommandsD Set RGB.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/47-CommandsD Unit Mods.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/47-CommandsD Unit Mods.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/48-CommandsD Add Tag.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/48-CommandsD Add Tag.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/49-CommandsD Select No.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/49-CommandsD Select No.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/50-CommandsD Variation.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/50-CommandsD Variation.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/51-CommandsD Rotate.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/51-CommandsD Rotate.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/52-Commands Skin.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/52-Commands Skin.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/54-Commands Save.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/54-Commands Save.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/55-Commands Request.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/55-Commands Request.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/56-Commands Usav.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/56-Commands Usav.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/57-Commands Dsav.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/57-Commands Dsav.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/58-Commands Tsav.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/58-Commands Tsav.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/59-Commands Asav.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/59-Commands Asav.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/60-Commands Compat.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/60-Commands Compat.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/62-Hotkey Move Units.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/62-Hotkey Move Units.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/63-LoPHotkeys.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/63-LoPHotkeys.j -------------------------------------------------------------------------------- /release/trigger/07-Player Commands/65-Commands Test.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/07-Player Commands/65-Commands Test.j -------------------------------------------------------------------------------- /release/trigger/09-Deco Builders/02-DecoBuilder Movement.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/09-Deco Builders/02-DecoBuilder Movement.j -------------------------------------------------------------------------------- /release/trigger/09-Deco Builders/02-DecoBuilder Movement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/09-Deco Builders/02-DecoBuilder Movement.txt -------------------------------------------------------------------------------- /release/trigger/09-Deco Builders/03-DecoBuilder RangedBuild.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/09-Deco Builders/03-DecoBuilder RangedBuild.j -------------------------------------------------------------------------------- /release/trigger/09-Deco Builders/05-DecoBuilder Cast Ability.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/09-Deco Builders/05-DecoBuilder Cast Ability.j -------------------------------------------------------------------------------- /release/trigger/09-Deco Builders/07-TerrainSystem Cast Ability.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/09-Deco Builders/07-TerrainSystem Cast Ability.j -------------------------------------------------------------------------------- /release/trigger/09-Deco Builders/09-TreeSystem Create Trees.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/09-Deco Builders/09-TreeSystem Create Trees.j -------------------------------------------------------------------------------- /release/trigger/09-Deco Builders/09-TreeSystem Create Trees.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/09-Deco Builders/09-TreeSystem Create Trees.txt -------------------------------------------------------------------------------- /release/trigger/09-Deco Builders/10-TreeSystem Cast Ability.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/09-Deco Builders/10-TreeSystem Cast Ability.j -------------------------------------------------------------------------------- /release/trigger/09-Deco Builders/11-TreeSystem Choose Tree.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/09-Deco Builders/11-TreeSystem Choose Tree.j -------------------------------------------------------------------------------- /release/trigger/10-Decorations/01-Deco OnEnterMap.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/10-Decorations/01-Deco OnEnterMap.j -------------------------------------------------------------------------------- /release/trigger/10-Decorations/02-Deco Root Anywhere.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/10-Decorations/02-Deco Root Anywhere.j -------------------------------------------------------------------------------- /release/trigger/10-Decorations/04-Deco Movement.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/10-Decorations/04-Deco Movement.j -------------------------------------------------------------------------------- /release/trigger/10-Decorations/05-Deco Waygate.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/10-Decorations/05-Deco Waygate.lml -------------------------------------------------------------------------------- /release/trigger/10-Decorations/06-Deco Gates.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/10-Decorations/06-Deco Gates.lml -------------------------------------------------------------------------------- /release/trigger/10-Decorations/06-Deco Gates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/10-Decorations/06-Deco Gates.txt -------------------------------------------------------------------------------- /release/trigger/10-Decorations/08-UpgradeSystem.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/10-Decorations/08-UpgradeSystem.j -------------------------------------------------------------------------------- /release/trigger/10-Decorations/10-UpgradeSystemInit.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/10-Decorations/10-UpgradeSystemInit.j -------------------------------------------------------------------------------- /release/trigger/12-Units/1-CustomizableAbilityList.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/12-Units/1-CustomizableAbilityList.j -------------------------------------------------------------------------------- /release/trigger/12-Units/2-MountSystem.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/12-Units/2-MountSystem.j -------------------------------------------------------------------------------- /release/trigger/12-Units/4-Hero Give Potion.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/12-Units/4-Hero Give Potion.lml -------------------------------------------------------------------------------- /release/trigger/12-Units/5-Hero Level Up.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/12-Units/5-Hero Level Up.j -------------------------------------------------------------------------------- /release/trigger/14-Libraries/1-Import Library Standard.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/14-Libraries/1-Import Library Standard.j -------------------------------------------------------------------------------- /release/trigger/17-Data Structures/1-GMUI Main.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/17-Data Structures/1-GMUI Main.j -------------------------------------------------------------------------------- /release/trigger/17-Data Structures/1-GMUI Main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/17-Data Structures/1-GMUI Main.txt -------------------------------------------------------------------------------- /release/trigger/17-Data Structures/2-Lists.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/17-Data Structures/2-Lists.j -------------------------------------------------------------------------------- /release/trigger/17-Data Structures/3-GAL Main.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/17-Data Structures/3-GAL Main.j -------------------------------------------------------------------------------- /release/trigger/17-Data Structures/4-GLHS Main.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/17-Data Structures/4-GLHS Main.j -------------------------------------------------------------------------------- /release/trigger/17-Data Structures/4-GLHS Main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/17-Data Structures/4-GLHS Main.txt -------------------------------------------------------------------------------- /release/trigger/17-Data Structures/5-GLHS Generics.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/17-Data Structures/5-GLHS Generics.j -------------------------------------------------------------------------------- /release/trigger/17-Data Structures/6-StaticLinkedSet.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/17-Data Structures/6-StaticLinkedSet.j -------------------------------------------------------------------------------- /release/trigger/18-Tables/2-Table.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/18-Tables/2-Table.j -------------------------------------------------------------------------------- /release/trigger/18-Tables/4-ConstTable.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/18-Tables/4-ConstTable.j -------------------------------------------------------------------------------- /release/trigger/18-Tables/5-HashtableWrapper.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/18-Tables/5-HashtableWrapper.j -------------------------------------------------------------------------------- /release/trigger/18-Tables/7-TableStruct.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/18-Tables/7-TableStruct.j -------------------------------------------------------------------------------- /release/trigger/18-Tables/8-HashStruct.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/18-Tables/8-HashStruct.j -------------------------------------------------------------------------------- /release/trigger/18-Tables/9-AgentStruct.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/18-Tables/9-AgentStruct.j -------------------------------------------------------------------------------- /release/trigger/19-Tiles/1-TileDefinition.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/19-Tiles/1-TileDefinition.j -------------------------------------------------------------------------------- /release/trigger/19-Tiles/2-PathingTileDefinition.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/19-Tiles/2-PathingTileDefinition.j -------------------------------------------------------------------------------- /release/trigger/19-Tiles/3-StructureTileDefinition.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/19-Tiles/3-StructureTileDefinition.j -------------------------------------------------------------------------------- /release/trigger/19-Tiles/4-AnyTileDefinition.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/19-Tiles/4-AnyTileDefinition.j -------------------------------------------------------------------------------- /release/trigger/20-Rects/1-UserDefinedRects.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/20-Rects/1-UserDefinedRects.j -------------------------------------------------------------------------------- /release/trigger/20-Rects/2-RectGenerator.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/20-Rects/2-RectGenerator.j -------------------------------------------------------------------------------- /release/trigger/20-Rects/3-RectEnvironment.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/20-Rects/3-RectEnvironment.j -------------------------------------------------------------------------------- /release/trigger/20-Rects/4-AutoRectEnvironment.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/20-Rects/4-AutoRectEnvironment.j -------------------------------------------------------------------------------- /release/trigger/21-Terrain Libraries/1-TerrainTools.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/21-Terrain Libraries/1-TerrainTools.j -------------------------------------------------------------------------------- /release/trigger/21-Terrain Libraries/2-Deformations.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/21-Terrain Libraries/2-Deformations.j -------------------------------------------------------------------------------- /release/trigger/21-Terrain Libraries/3-DeformationTools.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/21-Terrain Libraries/3-DeformationTools.j -------------------------------------------------------------------------------- /release/trigger/21-Terrain Libraries/4-DeformationToolsHooks.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/21-Terrain Libraries/4-DeformationToolsHooks.j -------------------------------------------------------------------------------- /release/trigger/22-Function Interfaces/1-FuncInterface.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/22-Function Interfaces/1-FuncInterface.j -------------------------------------------------------------------------------- /release/trigger/22-Function Interfaces/2-FuncInterfaceIntegerPlayerBoolean.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/22-Function Interfaces/2-FuncInterfaceIntegerPlayerBoolean.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/02-Maths.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/02-Maths.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/03-MathParser.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/03-MathParser.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/04-Matrices.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/04-Matrices.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/05-Rawcode2String.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/05-Rawcode2String.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/06-StringHashEx.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/06-StringHashEx.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/07-WorldBounds.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/07-WorldBounds.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/08-DestructableLib.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/08-DestructableLib.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/09-GroupTools.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/09-GroupTools.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/10-HeroicUnit.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/10-HeroicUnit.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/12-PlayerUtils Lite.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/12-PlayerUtils Lite.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/13-Timeline Lite.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/13-Timeline Lite.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/15-OOP.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/15-OOP.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/16-AnyBase.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/16-AnyBase.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/17-BitFlags.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/17-BitFlags.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/18-CutToComma.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/18-CutToComma.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/19-PlayerColorUtils.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/19-PlayerColorUtils.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/20-ArgumentStack.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/20-ArgumentStack.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/21-BoolExprEvaluator.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/21-BoolExprEvaluator.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/23-Debug.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/23-Debug.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/25-Camera System.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/25-Camera System.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/26-LockableStructs.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/26-LockableStructs.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/27-Packets.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/27-Packets.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/28-WorldBoundsUtils.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/28-WorldBoundsUtils.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/29-UnitName.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/29-UnitName.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/30-CallbackTools.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/30-CallbackTools.j -------------------------------------------------------------------------------- /release/trigger/23-vJass/31-RGBA.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/23-vJass/31-RGBA.j -------------------------------------------------------------------------------- /release/trigger/25-Unit Event/1-Unit Event Config.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/25-Unit Event/1-Unit Event Config.lml -------------------------------------------------------------------------------- /release/trigger/25-Unit Event/1-Unit Event Config.txt: -------------------------------------------------------------------------------- 1 | GUI Unit Event by Bribe, version 2.5.0.0 -------------------------------------------------------------------------------- /release/trigger/25-Unit Event/2-Unit Event.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/25-Unit Event/2-Unit Event.j -------------------------------------------------------------------------------- /release/trigger/25-Unit Event/3-Unit Indexer.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/25-Unit Event/3-Unit Indexer.j -------------------------------------------------------------------------------- /release/trigger/26-Unit Libs/02-UnitVisualValues.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/26-Unit Libs/02-UnitVisualValues.j -------------------------------------------------------------------------------- /release/trigger/26-Unit Libs/03-UnitVisualMods.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/26-Unit Libs/03-UnitVisualMods.j -------------------------------------------------------------------------------- /release/trigger/26-Unit Libs/04-UnitVisualMods Copy Module.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/26-Unit Libs/04-UnitVisualMods Copy Module.j -------------------------------------------------------------------------------- /release/trigger/26-Unit Libs/05-UnitVisualMods Upgrade Module.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/26-Unit Libs/05-UnitVisualMods Upgrade Module.j -------------------------------------------------------------------------------- /release/trigger/26-Unit Libs/07-MultiPatrol.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/26-Unit Libs/07-MultiPatrol.j -------------------------------------------------------------------------------- /release/trigger/26-Unit Libs/08-MultiPatrol Addons.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/26-Unit Libs/08-MultiPatrol Addons.j -------------------------------------------------------------------------------- /release/trigger/26-Unit Libs/10-TransportUtils.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/26-Unit Libs/10-TransportUtils.j -------------------------------------------------------------------------------- /release/trigger/26-Unit Libs/11-InstantRootOrder.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/26-Unit Libs/11-InstantRootOrder.j -------------------------------------------------------------------------------- /release/trigger/27-Special Effect Libs/02-SpecialEffect.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/27-Special Effect Libs/02-SpecialEffect.j -------------------------------------------------------------------------------- /release/trigger/27-Special Effect Libs/03-DecorationSFX.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/27-Special Effect Libs/03-DecorationSFX.j -------------------------------------------------------------------------------- /release/trigger/27-Special Effect Libs/05-AttachedSFX.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/27-Special Effect Libs/05-AttachedSFX.j -------------------------------------------------------------------------------- /release/trigger/27-Special Effect Libs/06-FuncHooks.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/27-Special Effect Libs/06-FuncHooks.j -------------------------------------------------------------------------------- /release/trigger/27-Special Effect Libs/07-FuncHooks Definitions.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/27-Special Effect Libs/07-FuncHooks Definitions.j -------------------------------------------------------------------------------- /release/trigger/27-Special Effect Libs/09-Unit2Effect.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/27-Special Effect Libs/09-Unit2Effect.j -------------------------------------------------------------------------------- /release/trigger/27-Special Effect Libs/10-StringSubanimations.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/27-Special Effect Libs/10-StringSubanimations.j -------------------------------------------------------------------------------- /release/trigger/27-Special Effect Libs/12-UnitTypeDefaultValues.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/27-Special Effect Libs/12-UnitTypeDefaultValues.j -------------------------------------------------------------------------------- /release/trigger/27-Special Effect Libs/13-UnitModels.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/27-Special Effect Libs/13-UnitModels.j -------------------------------------------------------------------------------- /release/trigger/28-Pathing Maps/1-PathingMaps.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/28-Pathing Maps/1-PathingMaps.j -------------------------------------------------------------------------------- /release/trigger/28-Pathing Maps/2-DefaultPathingMaps.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/28-Pathing Maps/2-DefaultPathingMaps.j -------------------------------------------------------------------------------- /release/trigger/28-Pathing Maps/4-GeneratedDecorationPathMaps.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/28-Pathing Maps/4-GeneratedDecorationPathMaps.j -------------------------------------------------------------------------------- /release/trigger/28-Pathing Maps/6-InitializePathingsMapFromFiles.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/28-Pathing Maps/6-InitializePathingsMapFromFiles.j -------------------------------------------------------------------------------- /release/trigger/30-SaveNLoad Core/01-SaveNLoad.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/30-SaveNLoad Core/01-SaveNLoad.j -------------------------------------------------------------------------------- /release/trigger/30-SaveNLoad Core/03-SaveIO.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/30-SaveNLoad Core/03-SaveIO.j -------------------------------------------------------------------------------- /release/trigger/30-SaveNLoad Core/04-SaveNLoad ProgressBars.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/30-SaveNLoad Core/04-SaveNLoad ProgressBars.j -------------------------------------------------------------------------------- /release/trigger/30-SaveNLoad Core/06-SaveUnit.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/30-SaveNLoad Core/06-SaveUnit.j -------------------------------------------------------------------------------- /release/trigger/30-SaveNLoad Core/07-SaveDestructable.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/30-SaveNLoad Core/07-SaveDestructable.j -------------------------------------------------------------------------------- /release/trigger/30-SaveNLoad Core/08-SaveTerrain.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/30-SaveNLoad Core/08-SaveTerrain.j -------------------------------------------------------------------------------- /release/trigger/30-SaveNLoad Core/09-SaveMain.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/30-SaveNLoad Core/09-SaveMain.j -------------------------------------------------------------------------------- /release/trigger/30-SaveNLoad Core/11-SaveLoad Commands.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/30-SaveNLoad Core/11-SaveLoad Commands.j -------------------------------------------------------------------------------- /release/trigger/30-SaveNLoad Core/11-SaveLoad Commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/30-SaveNLoad Core/11-SaveLoad Commands.txt -------------------------------------------------------------------------------- /release/trigger/30-SaveNLoad Core/12-SaveLoad Set Center Numbers.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/30-SaveNLoad Core/12-SaveLoad Set Center Numbers.j -------------------------------------------------------------------------------- /release/trigger/30-SaveNLoad Core/12-SaveLoad Set Center Numbers.txt: -------------------------------------------------------------------------------- 1 | -load center 1,2 -------------------------------------------------------------------------------- /release/trigger/31-SaveNLoad LoP/02-SaveNLoad Unit.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/31-SaveNLoad LoP/02-SaveNLoad Unit.j -------------------------------------------------------------------------------- /release/trigger/31-SaveNLoad LoP/03-SaveUnitExtras.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/31-SaveNLoad LoP/03-SaveUnitExtras.j -------------------------------------------------------------------------------- /release/trigger/31-SaveNLoad LoP/04-SaveNLoadDestructable.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/31-SaveNLoad LoP/04-SaveNLoadDestructable.j -------------------------------------------------------------------------------- /release/trigger/31-SaveNLoad LoP/05-SaveNLoad Terrain.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/31-SaveNLoad LoP/05-SaveNLoad Terrain.j -------------------------------------------------------------------------------- /release/trigger/31-SaveNLoad LoP/07-RectSaveLoader.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/31-SaveNLoad LoP/07-RectSaveLoader.j -------------------------------------------------------------------------------- /release/trigger/31-SaveNLoad LoP/08-SyncUnit.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/31-SaveNLoad LoP/08-SyncUnit.j -------------------------------------------------------------------------------- /release/trigger/31-SaveNLoad LoP/09-SyncUnit Extra.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/31-SaveNLoad LoP/09-SyncUnit Extra.j -------------------------------------------------------------------------------- /release/trigger/31-SaveNLoad LoP/10-SyncDestructable.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/31-SaveNLoad LoP/10-SyncDestructable.j -------------------------------------------------------------------------------- /release/trigger/31-SaveNLoad LoP/11-SyncTerrain.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/31-SaveNLoad LoP/11-SyncTerrain.j -------------------------------------------------------------------------------- /release/trigger/36-Knockback 2D/1-Knockback 2D Config.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/36-Knockback 2D/1-Knockback 2D Config.lml -------------------------------------------------------------------------------- /release/trigger/36-Knockback 2D/1-Knockback 2D Config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/36-Knockback 2D/1-Knockback 2D Config.txt -------------------------------------------------------------------------------- /release/trigger/36-Knockback 2D/2-Knockback 2D Destroy.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/36-Knockback 2D/2-Knockback 2D Destroy.lml -------------------------------------------------------------------------------- /release/trigger/36-Knockback 2D/3-Knockback 2D.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/36-Knockback 2D/3-Knockback 2D.lml -------------------------------------------------------------------------------- /release/trigger/36-Knockback 2D/3-Knockback 2D.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/36-Knockback 2D/3-Knockback 2D.txt -------------------------------------------------------------------------------- /release/trigger/36-Knockback 2D/4-Knockback 2D System.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/36-Knockback 2D/4-Knockback 2D System.j -------------------------------------------------------------------------------- /release/trigger/36-Knockback 2D/5-Knockback 2D System Copy.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/36-Knockback 2D/5-Knockback 2D System Copy.j -------------------------------------------------------------------------------- /release/trigger/36-Knockback 2D/6-K2D OnLoop Template.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/36-Knockback 2D/6-K2D OnLoop Template.lml -------------------------------------------------------------------------------- /release/trigger/36-Knockback 2D/6-K2D OnLoop Template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/36-Knockback 2D/6-K2D OnLoop Template.txt -------------------------------------------------------------------------------- /release/trigger/37-Damage Engine/1-Damage Engine Config.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/37-Damage Engine/1-Damage Engine Config.lml -------------------------------------------------------------------------------- /release/trigger/37-Damage Engine/2-Damage Engine.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/37-Damage Engine/2-Damage Engine.j -------------------------------------------------------------------------------- /release/trigger/37-Damage Engine/3-Damage Tag.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/37-Damage Engine/3-Damage Tag.j -------------------------------------------------------------------------------- /release/trigger/37-Damage Engine/3-Damage Tag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/37-Damage Engine/3-Damage Tag.txt -------------------------------------------------------------------------------- /release/trigger/37-Damage Engine/4-Bash.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/37-Damage Engine/4-Bash.j -------------------------------------------------------------------------------- /release/trigger/37-Damage Engine/5-Combat Tag.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/37-Damage Engine/5-Combat Tag.j -------------------------------------------------------------------------------- /release/trigger/38-GUI Spell System/1-Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/38-GUI Spell System/1-Read Me.txt -------------------------------------------------------------------------------- /release/trigger/38-GUI Spell System/2-Spell System Config.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/38-GUI Spell System/2-Spell System Config.lml -------------------------------------------------------------------------------- /release/trigger/38-GUI Spell System/3-Spell System.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/38-GUI Spell System/3-Spell System.j -------------------------------------------------------------------------------- /release/trigger/40-Spell Scripting Utils/01-DummyRecycler.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/40-Spell Scripting Utils/01-DummyRecycler.j -------------------------------------------------------------------------------- /release/trigger/40-Spell Scripting Utils/02-UnitEvents.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/40-Spell Scripting Utils/02-UnitEvents.j -------------------------------------------------------------------------------- /release/trigger/40-Spell Scripting Utils/03-GCOS Init.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/40-Spell Scripting Utils/03-GCOS Init.lml -------------------------------------------------------------------------------- /release/trigger/40-Spell Scripting Utils/03-GCOS Init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/40-Spell Scripting Utils/03-GCOS Init.txt -------------------------------------------------------------------------------- /release/trigger/40-Spell Scripting Utils/04-Circle Object System.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/40-Spell Scripting Utils/04-Circle Object System.j -------------------------------------------------------------------------------- /release/trigger/40-Spell Scripting Utils/06-NeoBonus.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/40-Spell Scripting Utils/06-NeoBonus.j -------------------------------------------------------------------------------- /release/trigger/40-Spell Scripting Utils/07-MoveSpeedBonus.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/40-Spell Scripting Utils/07-MoveSpeedBonus.j -------------------------------------------------------------------------------- /release/trigger/40-Spell Scripting Utils/08-CustomStatSystem.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/40-Spell Scripting Utils/08-CustomStatSystem.j -------------------------------------------------------------------------------- /release/trigger/40-Spell Scripting Utils/09-MoveSpeedModification.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/40-Spell Scripting Utils/09-MoveSpeedModification.j -------------------------------------------------------------------------------- /release/trigger/40-Spell Scripting Utils/11-TimedBonus.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/40-Spell Scripting Utils/11-TimedBonus.j -------------------------------------------------------------------------------- /release/trigger/40-Spell Scripting Utils/12-DummyDmg.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/40-Spell Scripting Utils/12-DummyDmg.j -------------------------------------------------------------------------------- /release/trigger/40-Spell Scripting Utils/14-Victim Tracker.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/40-Spell Scripting Utils/14-Victim Tracker.j -------------------------------------------------------------------------------- /release/trigger/41-Disable System - GDS/1-GDS Setup.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/41-Disable System - GDS/1-GDS Setup.lml -------------------------------------------------------------------------------- /release/trigger/41-Disable System - GDS/1-GDS Setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/41-Disable System - GDS/1-GDS Setup.txt -------------------------------------------------------------------------------- /release/trigger/41-Disable System - GDS/2-GDS Main Modifier.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/41-Disable System - GDS/2-GDS Main Modifier.j -------------------------------------------------------------------------------- /release/trigger/41-Disable System - GDS/2-GDS Main Modifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/41-Disable System - GDS/2-GDS Main Modifier.txt -------------------------------------------------------------------------------- /release/trigger/41-Disable System - GDS/3-GDS Main.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/41-Disable System - GDS/3-GDS Main.j -------------------------------------------------------------------------------- /release/trigger/41-Disable System - GDS/3-GDS Main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/41-Disable System - GDS/3-GDS Main.txt -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/01-Spell System Filter Decorations.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/01-Spell System Filter Decorations.j -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/02-Initialize Spells.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/02-Initialize Spells.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/02-Initialize Spells.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/02-Initialize Spells.txt -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/03-Spell System Sample Config.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/03-Spell System Sample Config.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/05-Mimic.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/05-Mimic.j -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/06-ToggleAura.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/06-ToggleAura.j -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/08-Spatial Distortion Cast.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/08-Spatial Distortion Cast.j -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/09-AoE Snare.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/09-AoE Snare.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/10-Mass Banish.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/10-Mass Banish.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/11-Tyrael Judgement.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/11-Tyrael Judgement.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/12-Tyrael WotT Cast.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/12-Tyrael WotT Cast.j -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/13-Chain Slow.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/13-Chain Slow.j -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/14-Stormstrike.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/14-Stormstrike.j -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/15-Replenish.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/15-Replenish.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/16-Disarming Blow.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/16-Disarming Blow.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/17-Scatter Shot.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/17-Scatter Shot.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/18-Imperius Light of Valor.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/18-Imperius Light of Valor.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/19-War Stomp.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/19-War Stomp.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/20-Carrion Burst.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/20-Carrion Burst.j -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/21-Burst of Despair.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/21-Burst of Despair.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/22-Greater Shockwave.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/22-Greater Shockwave.j -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/23-Bladespin.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/23-Bladespin.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/24-Charge Cast.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/24-Charge Cast.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/25-Charge Collision.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/25-Charge Collision.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/26-Charge End.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/26-Charge End.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/27-Thunderstrike Cast.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/27-Thunderstrike Cast.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/28-Thunderstrike Impact.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/28-Thunderstrike Impact.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/29-Waterspout.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/29-Waterspout.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/30-Battle Jump Cast.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/30-Battle Jump Cast.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/31-Battle Jump End.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/31-Battle Jump End.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/32-Ethereal Jaunt.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/32-Ethereal Jaunt.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/33-Power Surge.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/33-Power Surge.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/34-Comet.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/34-Comet.j -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/35-Silence.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/35-Silence.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/36-Thunder Clap.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/36-Thunder Clap.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/37-Breath of Frost.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/37-Breath of Frost.j -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/39-Make Unit Selectable.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/39-Make Unit Selectable.j -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/40-Angel Judgement.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/40-Angel Judgement.lml -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/41-Defend Turn On.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/41-Defend Turn On.j -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/42-Defend Turn Off.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/42-Defend Turn Off.j -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/44-Staff of Mimic.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/44-Staff of Mimic.j -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/46-Cosmosis Obliterate.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/46-Cosmosis Obliterate.j -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/47-Critter Wander.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/47-Critter Wander.j -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/48-Mirror Image.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/48-Mirror Image.j -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/49-Pick Up Rider.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/49-Pick Up Rider.j -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/50-Ditch Rider.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/50-Ditch Rider.j -------------------------------------------------------------------------------- /release/trigger/43-Spell System Spells/51-Silver Key.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/43-Spell System Spells/51-Silver Key.lml -------------------------------------------------------------------------------- /release/trigger/44-No Spell System Spells/1-FilterTransformations.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/44-No Spell System Spells/1-FilterTransformations.j -------------------------------------------------------------------------------- /release/trigger/44-No Spell System Spells/2-Ability Cooldown.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/44-No Spell System Spells/2-Ability Cooldown.lml -------------------------------------------------------------------------------- /release/trigger/44-No Spell System Spells/3-Summon.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/44-No Spell System Spells/3-Summon.j -------------------------------------------------------------------------------- /release/trigger/44-No Spell System Spells/4-Sargeras Silence Aura.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/44-No Spell System Spells/4-Sargeras Silence Aura.lml -------------------------------------------------------------------------------- /release/trigger/44-No Spell System Spells/5-Aura Of Restitution.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/44-No Spell System Spells/5-Aura Of Restitution.j -------------------------------------------------------------------------------- /release/trigger/44-No Spell System Spells/7-Cosmosis Stop Time.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/44-No Spell System Spells/7-Cosmosis Stop Time.j -------------------------------------------------------------------------------- /release/trigger/44-No Spell System Spells/8-Cosmosis Give Item.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/44-No Spell System Spells/8-Cosmosis Give Item.j -------------------------------------------------------------------------------- /release/trigger/44-No Spell System Spells/9-TheCreator Invincibility.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/44-No Spell System Spells/9-TheCreator Invincibility.j -------------------------------------------------------------------------------- /release/trigger/45-Knockback Samples/1-On Damage.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/45-Knockback Samples/1-On Damage.lml -------------------------------------------------------------------------------- /release/trigger/45-Knockback Samples/1-On Damage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/45-Knockback Samples/1-On Damage.txt -------------------------------------------------------------------------------- /release/trigger/45-Knockback Samples/2-On Impact.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/45-Knockback Samples/2-On Impact.lml -------------------------------------------------------------------------------- /release/trigger/45-Knockback Samples/3-On Spell Cast.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/45-Knockback Samples/3-On Spell Cast.lml -------------------------------------------------------------------------------- /release/trigger/45-Knockback Samples/4-On Spell Stop.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/45-Knockback Samples/4-On Spell Stop.lml -------------------------------------------------------------------------------- /release/trigger/45-Knockback Samples/5-Test.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/45-Knockback Samples/5-Test.lml -------------------------------------------------------------------------------- /release/trigger/50-UI/01-Screen.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/50-UI/01-Screen.j -------------------------------------------------------------------------------- /release/trigger/50-UI/02-UILib.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/50-UI/02-UILib.j -------------------------------------------------------------------------------- /release/trigger/50-UI/03-LoP UI.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/50-UI/03-LoP UI.j -------------------------------------------------------------------------------- /release/trigger/50-UI/04-ListBox.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/50-UI/04-ListBox.j -------------------------------------------------------------------------------- /release/trigger/50-UI/05-IsMouseOnButton.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/50-UI/05-IsMouseOnButton.j -------------------------------------------------------------------------------- /release/trigger/50-UI/06-EditBoxFix.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/50-UI/06-EditBoxFix.j -------------------------------------------------------------------------------- /release/trigger/50-UI/07-WidescreenUI.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/50-UI/07-WidescreenUI.j -------------------------------------------------------------------------------- /release/trigger/50-UI/08-IsMouseOnWorld.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/50-UI/08-IsMouseOnWorld.j -------------------------------------------------------------------------------- /release/trigger/50-UI/09-System HeroicUnit InfoPanel.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/50-UI/09-System HeroicUnit InfoPanel.j -------------------------------------------------------------------------------- /release/trigger/50-UI/10-ButtonTools.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/50-UI/10-ButtonTools.j -------------------------------------------------------------------------------- /release/trigger/51-ControlState/1-SelectionStates.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/51-ControlState/1-SelectionStates.j -------------------------------------------------------------------------------- /release/trigger/51-ControlState/2-PlayerEventTools.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/51-ControlState/2-PlayerEventTools.j -------------------------------------------------------------------------------- /release/trigger/51-ControlState/3-PlayerEvent.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/51-ControlState/3-PlayerEvent.j -------------------------------------------------------------------------------- /release/trigger/51-ControlState/5-ControlState.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/51-ControlState/5-ControlState.j -------------------------------------------------------------------------------- /release/trigger/51-ControlState/6-Free Cam.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/51-ControlState/6-Free Cam.j -------------------------------------------------------------------------------- /release/trigger/51-ControlState/7-OSKeyLib.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/51-ControlState/7-OSKeyLib.j -------------------------------------------------------------------------------- /release/trigger/53-Screens/1-UpperButtonBar View.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/53-Screens/1-UpperButtonBar View.j -------------------------------------------------------------------------------- /release/trigger/53-Screens/2-UpperButtonBar Controller.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/53-Screens/2-UpperButtonBar Controller.j -------------------------------------------------------------------------------- /release/trigger/53-Screens/3-MainMenu View.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/53-Screens/3-MainMenu View.j -------------------------------------------------------------------------------- /release/trigger/53-Screens/4-MainMenu Controller.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/53-Screens/4-MainMenu Controller.j -------------------------------------------------------------------------------- /release/trigger/53-Screens/5-ChatLog View.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/53-Screens/5-ChatLog View.j -------------------------------------------------------------------------------- /release/trigger/53-Screens/6-ChatLog Controller.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/53-Screens/6-ChatLog Controller.j -------------------------------------------------------------------------------- /release/trigger/53-Screens/7-GameTime View.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/53-Screens/7-GameTime View.j -------------------------------------------------------------------------------- /release/trigger/53-Screens/8-GameTime Copy.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/53-Screens/8-GameTime Copy.j -------------------------------------------------------------------------------- /release/trigger/54-Decoration Browser/2-Decoration Browser View.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/54-Decoration Browser/2-Decoration Browser View.j -------------------------------------------------------------------------------- /release/trigger/54-Decoration Browser/3-Decoration Browser Controller.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/54-Decoration Browser/3-Decoration Browser Controller.j -------------------------------------------------------------------------------- /release/trigger/54-Decoration Browser/4-Register Decoration Names.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/54-Decoration Browser/4-Register Decoration Names.j -------------------------------------------------------------------------------- /release/trigger/54-Decoration Browser/5-Register Classic Decorations.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/54-Decoration Browser/5-Register Classic Decorations.j -------------------------------------------------------------------------------- /release/trigger/54-Decoration Browser/6-Register Reforged Decorations.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/54-Decoration Browser/6-Register Reforged Decorations.j -------------------------------------------------------------------------------- /release/trigger/55-AdvChatBox/1-AdvChatBox View.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/55-AdvChatBox/1-AdvChatBox View.j -------------------------------------------------------------------------------- /release/trigger/55-AdvChatBox/2-AdvChatBox Controller.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/55-AdvChatBox/2-AdvChatBox Controller.j -------------------------------------------------------------------------------- /release/trigger/56-TerrainEditor/1-TerrainEditor.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/56-TerrainEditor/1-TerrainEditor.j -------------------------------------------------------------------------------- /release/trigger/56-TerrainEditor/2-TerrainEditorUI.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/56-TerrainEditor/2-TerrainEditorUI.j -------------------------------------------------------------------------------- /release/trigger/56-TerrainEditor/3-TerrainEditorUI View.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/56-TerrainEditor/3-TerrainEditorUI View.j -------------------------------------------------------------------------------- /release/trigger/56-TerrainEditor/4-TerrainEditorUI Controller.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/56-TerrainEditor/4-TerrainEditorUI Controller.j -------------------------------------------------------------------------------- /release/trigger/56-TerrainEditor/5-TileDefs.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/56-TerrainEditor/5-TileDefs.j -------------------------------------------------------------------------------- /release/trigger/59-Destructable Systems/1-Untitled Trigger 002.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/59-Destructable Systems/1-Untitled Trigger 002.j -------------------------------------------------------------------------------- /release/trigger/59-Destructable Systems/2-Create Destructable.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/59-Destructable Systems/2-Create Destructable.lml -------------------------------------------------------------------------------- /release/trigger/60-Memory/1-TimerMemory.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/60-Memory/1-TimerMemory.j -------------------------------------------------------------------------------- /release/trigger/60-Memory/2-TriggerMemory.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/60-Memory/2-TriggerMemory.j -------------------------------------------------------------------------------- /release/trigger/60-Memory/3-RegionMemory.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/60-Memory/3-RegionMemory.j -------------------------------------------------------------------------------- /release/trigger/catalog.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/catalog.lml -------------------------------------------------------------------------------- /release/trigger/variable.lml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/trigger/variable.lml -------------------------------------------------------------------------------- /release/w3x2lni/locale/lml.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/w3x2lni/locale/lml.lng -------------------------------------------------------------------------------- /release/w3x2lni/locale/w3i.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Son-Guhun/Titan-Land-Lands-of-Plenty/HEAD/release/w3x2lni/locale/w3i.lng -------------------------------------------------------------------------------- /release/w3x2lni/version/lml: -------------------------------------------------------------------------------- 1 | 2 --------------------------------------------------------------------------------