├── README.md ├── ScriptEditor.sln └── ScriptEditor ├── App.config ├── CreatureEvent.cs ├── CreatureSpellsInfo.cs ├── DataFinderForms ├── FormAreaFinder.Designer.cs ├── FormAreaFinder.cs ├── FormAreaFinder.resx ├── FormConditionFinder.Designer.cs ├── FormConditionFinder.cs ├── FormConditionFinder.resx ├── FormCreatureFinder.Designer.cs ├── FormCreatureFinder.cs ├── FormCreatureFinder.resx ├── FormDataFinder.Designer.cs ├── FormDataFinder.cs ├── FormDataFinder.resx ├── FormEventFinder.Designer.cs ├── FormEventFinder.cs ├── FormEventFinder.resx ├── FormFactionFinder.Designer.cs ├── FormFactionFinder.cs ├── FormFactionFinder.resx ├── FormFactionTemplateFinder.Designer.cs ├── FormFactionTemplateFinder.cs ├── FormFactionTemplateFinder.resx ├── FormGameObjectFinder.Designer.cs ├── FormGameObjectFinder.cs ├── FormGameObjectFinder.resx ├── FormItemFinder.Designer.cs ├── FormItemFinder.cs ├── FormItemFinder.resx ├── FormQuestFinder.Designer.cs ├── FormQuestFinder.cs ├── FormQuestFinder.resx ├── FormSoundFinder.Designer.cs ├── FormSoundFinder.cs ├── FormSoundFinder.resx ├── FormSpellFinder.Designer.cs ├── FormSpellFinder.cs ├── FormSpellFinder.resx ├── FormTaxiFinder.Designer.cs ├── FormTaxiFinder.cs ├── FormTaxiFinder.resx ├── FormTextFinder.Designer.cs ├── FormTextFinder.cs ├── FormTextFinder.resx ├── FormWeaponFinder.Designer.cs ├── FormWeaponFinder.cs └── FormWeaponFinder.resx ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── FormCastFlags.Designer.cs ├── FormCastFlags.cs ├── FormCastFlags.resx ├── FormCastsEditor.Designer.cs ├── FormCastsEditor.cs ├── FormCastsEditor.resx ├── FormClassMask.Designer.cs ├── FormClassMask.cs ├── FormClassMask.resx ├── FormEventEditor.Designer.cs ├── FormEventEditor.cs ├── FormEventEditor.resx ├── FormMaskCalculator.Designer.cs ├── FormMaskCalculator.cs ├── FormMaskCalculator.resx ├── FormRaceMask.Designer.cs ├── FormRaceMask.cs ├── FormRaceMask.resx ├── FormScriptEditor.Designer.cs ├── FormScriptEditor.cs ├── FormScriptEditor.resx ├── FormTargetSelectFlags.Designer.cs ├── FormTargetSelectFlags.cs ├── FormTargetSelectFlags.resx ├── GameData.cs ├── Helpers.cs ├── MixedListSorter.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Resources ├── MouseOver.wav ├── background.png ├── cast editor button black.png ├── cast editor button.png ├── condition_editor_button.png ├── condition_editor_button_black.png ├── conditions.ico ├── event editor button black.png ├── event editor button.png ├── gitlink1.png ├── gitlink2.png ├── gnome.ico ├── mage.ico ├── main.ico ├── orc.ico ├── script editor button black.png └── script editor button.png ├── ScriptAction.cs ├── ScriptEditor.csproj └── bin └── Release └── MySql.Data.dll /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/README.md -------------------------------------------------------------------------------- /ScriptEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor.sln -------------------------------------------------------------------------------- /ScriptEditor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/App.config -------------------------------------------------------------------------------- /ScriptEditor/CreatureEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/CreatureEvent.cs -------------------------------------------------------------------------------- /ScriptEditor/CreatureSpellsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/CreatureSpellsInfo.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormAreaFinder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormAreaFinder.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormAreaFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormAreaFinder.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormAreaFinder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormAreaFinder.resx -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormConditionFinder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormConditionFinder.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormConditionFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormConditionFinder.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormConditionFinder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormConditionFinder.resx -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormCreatureFinder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormCreatureFinder.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormCreatureFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormCreatureFinder.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormCreatureFinder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormCreatureFinder.resx -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormDataFinder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormDataFinder.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormDataFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormDataFinder.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormDataFinder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormDataFinder.resx -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormEventFinder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormEventFinder.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormEventFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormEventFinder.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormEventFinder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormEventFinder.resx -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormFactionFinder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormFactionFinder.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormFactionFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormFactionFinder.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormFactionFinder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormFactionFinder.resx -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormFactionTemplateFinder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormFactionTemplateFinder.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormFactionTemplateFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormFactionTemplateFinder.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormFactionTemplateFinder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormFactionTemplateFinder.resx -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormGameObjectFinder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormGameObjectFinder.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormGameObjectFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormGameObjectFinder.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormGameObjectFinder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormGameObjectFinder.resx -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormItemFinder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormItemFinder.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormItemFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormItemFinder.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormItemFinder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormItemFinder.resx -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormQuestFinder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormQuestFinder.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormQuestFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormQuestFinder.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormQuestFinder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormQuestFinder.resx -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormSoundFinder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormSoundFinder.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormSoundFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormSoundFinder.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormSoundFinder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormSoundFinder.resx -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormSpellFinder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormSpellFinder.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormSpellFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormSpellFinder.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormSpellFinder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormSpellFinder.resx -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormTaxiFinder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormTaxiFinder.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormTaxiFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormTaxiFinder.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormTaxiFinder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormTaxiFinder.resx -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormTextFinder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormTextFinder.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormTextFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormTextFinder.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormTextFinder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormTextFinder.resx -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormWeaponFinder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormWeaponFinder.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormWeaponFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormWeaponFinder.cs -------------------------------------------------------------------------------- /ScriptEditor/DataFinderForms/FormWeaponFinder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/DataFinderForms/FormWeaponFinder.resx -------------------------------------------------------------------------------- /ScriptEditor/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Form1.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Form1.cs -------------------------------------------------------------------------------- /ScriptEditor/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Form1.resx -------------------------------------------------------------------------------- /ScriptEditor/FormCastFlags.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormCastFlags.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/FormCastFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormCastFlags.cs -------------------------------------------------------------------------------- /ScriptEditor/FormCastFlags.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormCastFlags.resx -------------------------------------------------------------------------------- /ScriptEditor/FormCastsEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormCastsEditor.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/FormCastsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormCastsEditor.cs -------------------------------------------------------------------------------- /ScriptEditor/FormCastsEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormCastsEditor.resx -------------------------------------------------------------------------------- /ScriptEditor/FormClassMask.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormClassMask.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/FormClassMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormClassMask.cs -------------------------------------------------------------------------------- /ScriptEditor/FormClassMask.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormClassMask.resx -------------------------------------------------------------------------------- /ScriptEditor/FormEventEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormEventEditor.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/FormEventEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormEventEditor.cs -------------------------------------------------------------------------------- /ScriptEditor/FormEventEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormEventEditor.resx -------------------------------------------------------------------------------- /ScriptEditor/FormMaskCalculator.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormMaskCalculator.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/FormMaskCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormMaskCalculator.cs -------------------------------------------------------------------------------- /ScriptEditor/FormMaskCalculator.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormMaskCalculator.resx -------------------------------------------------------------------------------- /ScriptEditor/FormRaceMask.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormRaceMask.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/FormRaceMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormRaceMask.cs -------------------------------------------------------------------------------- /ScriptEditor/FormRaceMask.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormRaceMask.resx -------------------------------------------------------------------------------- /ScriptEditor/FormScriptEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormScriptEditor.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/FormScriptEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormScriptEditor.cs -------------------------------------------------------------------------------- /ScriptEditor/FormScriptEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormScriptEditor.resx -------------------------------------------------------------------------------- /ScriptEditor/FormTargetSelectFlags.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormTargetSelectFlags.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/FormTargetSelectFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormTargetSelectFlags.cs -------------------------------------------------------------------------------- /ScriptEditor/FormTargetSelectFlags.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/FormTargetSelectFlags.resx -------------------------------------------------------------------------------- /ScriptEditor/GameData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/GameData.cs -------------------------------------------------------------------------------- /ScriptEditor/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Helpers.cs -------------------------------------------------------------------------------- /ScriptEditor/MixedListSorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/MixedListSorter.cs -------------------------------------------------------------------------------- /ScriptEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Program.cs -------------------------------------------------------------------------------- /ScriptEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScriptEditor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /ScriptEditor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ScriptEditor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Properties/Settings.settings -------------------------------------------------------------------------------- /ScriptEditor/Resources/MouseOver.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Resources/MouseOver.wav -------------------------------------------------------------------------------- /ScriptEditor/Resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Resources/background.png -------------------------------------------------------------------------------- /ScriptEditor/Resources/cast editor button black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Resources/cast editor button black.png -------------------------------------------------------------------------------- /ScriptEditor/Resources/cast editor button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Resources/cast editor button.png -------------------------------------------------------------------------------- /ScriptEditor/Resources/condition_editor_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Resources/condition_editor_button.png -------------------------------------------------------------------------------- /ScriptEditor/Resources/condition_editor_button_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Resources/condition_editor_button_black.png -------------------------------------------------------------------------------- /ScriptEditor/Resources/conditions.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Resources/conditions.ico -------------------------------------------------------------------------------- /ScriptEditor/Resources/event editor button black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Resources/event editor button black.png -------------------------------------------------------------------------------- /ScriptEditor/Resources/event editor button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Resources/event editor button.png -------------------------------------------------------------------------------- /ScriptEditor/Resources/gitlink1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Resources/gitlink1.png -------------------------------------------------------------------------------- /ScriptEditor/Resources/gitlink2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Resources/gitlink2.png -------------------------------------------------------------------------------- /ScriptEditor/Resources/gnome.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Resources/gnome.ico -------------------------------------------------------------------------------- /ScriptEditor/Resources/mage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Resources/mage.ico -------------------------------------------------------------------------------- /ScriptEditor/Resources/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Resources/main.ico -------------------------------------------------------------------------------- /ScriptEditor/Resources/orc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Resources/orc.ico -------------------------------------------------------------------------------- /ScriptEditor/Resources/script editor button black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Resources/script editor button black.png -------------------------------------------------------------------------------- /ScriptEditor/Resources/script editor button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/Resources/script editor button.png -------------------------------------------------------------------------------- /ScriptEditor/ScriptAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/ScriptAction.cs -------------------------------------------------------------------------------- /ScriptEditor/ScriptEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/ScriptEditor.csproj -------------------------------------------------------------------------------- /ScriptEditor/bin/Release/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotalnia/ScriptEditor/HEAD/ScriptEditor/bin/Release/MySql.Data.dll --------------------------------------------------------------------------------