Skip to content

SkEditorTeam/SkAnalyzer

Repository files navigation

skanalyzer logo

SkAnalyzer

SkAnalyzer is a simple Skript parser created for SkEditor

Usage

Note

If you want to use SkAnalyzer in your project, please credit us

As app

Simply run SkAnalyzer in your command prompt and enter paths to your scripts

You might need to see the wiki for additional features

As api

Simply create SkAnalyzer instance using SkAnalyzerBuilder, for example:

SkAnalyzer.builder()
    .flags(AnalyzerFlag.FORCE_VAULT_HOOK, AnalyzerFlag.FORCE_REGIONS_HOOK)
    .build();

Compiling

To clone the repository with all the submodules, open command prompt and run

git clone https://github.com/SkEditorTeam/SkAnalyzer.git --recurse-submodules

and after that, run this command in SkAnalyzer folder

./gradlew bootstrap:jar