├── .gitignore ├── LICENSE ├── README.md ├── docs ├── area.md └── language.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── script ├── area4codes.kt ├── area4currency.kt └── mirrorCrawler.py ├── settings.gradle.kts └── src └── main ├── kotlin ├── Steamhelper.kt ├── SteamhelperCommand.kt ├── SteamhelperConfig.kt ├── data │ └── AreaMap.kt ├── messager │ ├── EpicMessage.kt │ ├── SteamMessage.kt │ └── handler │ │ ├── FormatTimeHandler.kt │ │ ├── PushHandler.kt │ │ ├── ReplaceHandler.kt │ │ └── SearchHandler.kt ├── utils │ ├── PluginWarnings.kt │ ├── SSLHelper.kt │ └── SteamThreads.kt └── worker │ ├── EpicPromotions.kt │ ├── Exchange.kt │ ├── SteamApp.kt │ ├── SteamInfo.kt │ ├── SteamUserID.kt │ └── SteamWeek.kt └── resources ├── META-INF └── services │ └── net.mamoe.mirai.console.plugin.jvm.JvmPlugin └── log4j.properties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/README.md -------------------------------------------------------------------------------- /docs/area.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/docs/area.md -------------------------------------------------------------------------------- /docs/language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/docs/language.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/gradlew.bat -------------------------------------------------------------------------------- /script/area4codes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/script/area4codes.kt -------------------------------------------------------------------------------- /script/area4currency.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/script/area4currency.kt -------------------------------------------------------------------------------- /script/mirrorCrawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/script/mirrorCrawler.py -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "steamhelper" -------------------------------------------------------------------------------- /src/main/kotlin/Steamhelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/src/main/kotlin/Steamhelper.kt -------------------------------------------------------------------------------- /src/main/kotlin/SteamhelperCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/src/main/kotlin/SteamhelperCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/SteamhelperConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/src/main/kotlin/SteamhelperConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/data/AreaMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/src/main/kotlin/data/AreaMap.kt -------------------------------------------------------------------------------- /src/main/kotlin/messager/EpicMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/src/main/kotlin/messager/EpicMessage.kt -------------------------------------------------------------------------------- /src/main/kotlin/messager/SteamMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/src/main/kotlin/messager/SteamMessage.kt -------------------------------------------------------------------------------- /src/main/kotlin/messager/handler/FormatTimeHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/src/main/kotlin/messager/handler/FormatTimeHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/messager/handler/PushHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/src/main/kotlin/messager/handler/PushHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/messager/handler/ReplaceHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/src/main/kotlin/messager/handler/ReplaceHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/messager/handler/SearchHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/src/main/kotlin/messager/handler/SearchHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/utils/PluginWarnings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/src/main/kotlin/utils/PluginWarnings.kt -------------------------------------------------------------------------------- /src/main/kotlin/utils/SSLHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/src/main/kotlin/utils/SSLHelper.kt -------------------------------------------------------------------------------- /src/main/kotlin/utils/SteamThreads.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/src/main/kotlin/utils/SteamThreads.kt -------------------------------------------------------------------------------- /src/main/kotlin/worker/EpicPromotions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/src/main/kotlin/worker/EpicPromotions.kt -------------------------------------------------------------------------------- /src/main/kotlin/worker/Exchange.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/src/main/kotlin/worker/Exchange.kt -------------------------------------------------------------------------------- /src/main/kotlin/worker/SteamApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/src/main/kotlin/worker/SteamApp.kt -------------------------------------------------------------------------------- /src/main/kotlin/worker/SteamInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/src/main/kotlin/worker/SteamInfo.kt -------------------------------------------------------------------------------- /src/main/kotlin/worker/SteamUserID.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/src/main/kotlin/worker/SteamUserID.kt -------------------------------------------------------------------------------- /src/main/kotlin/worker/SteamWeek.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/src/main/kotlin/worker/SteamWeek.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/services/net.mamoe.mirai.console.plugin.jvm.JvmPlugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolvedGhost/Steamhelper/HEAD/src/main/resources/META-INF/services/net.mamoe.mirai.console.plugin.jvm.JvmPlugin -------------------------------------------------------------------------------- /src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.logger.org.quartz=ERROR --------------------------------------------------------------------------------