This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
NAME: Tribal Wars Scripts Library | |
VERSION: 1.1.6 (beta version) | |
LAST UPDATED AT: 2024-03-24 | |
AUTHOR: RedAlert (redalert_tw) | |
AUTHOR URL: https://twscripts.dev/ | |
CONTRIBUTORS: Shinko to Kuma; Sass, SaveBankDev | |
HELP: https://github.com/RedAlertTW/Tribal-Wars-Scripts-SDK | |
STATUS: Work in progress. Not finished 100%. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Script Name: Barbs Finder | |
* Version: v2.0.1 | |
* Last Updated: 2023-05-11 | |
* Author: RedAlert | |
* Author Contact: redalert_tw (Discord) | |
* Approved: t13981993 | |
* Approved Date: 2020-05-27 | |
* Mod: JawJaw | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Script Name: Clear Barbarian Walls | |
* Version: v1.5.1 | |
* Last Updated: 2023-10-25 | |
* Author: RedAlert | |
* Author URL: https://twscripts.dev/ | |
* Author Contact: redalert_tw (Discord) | |
* Approved: N/A | |
* Approved Date: 2021-04-21 | |
* Mod: JawJaw |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Code here |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: | |
//barbarian finder by Sophie "Shinko to Kuma" | |
if (window.location.href.indexOf('map') < 0) { | |
window.location.assign(game_data.link_base_pure + "map"); | |
} | |
else { | |
var currentVillX = game_data.village.x; | |
var currentVillY = game_data.village.y; | |
var barbarianVillages = []; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
adb help // List all comands | |
== Adb Server | |
adb kill-server | |
adb start-server | |
== Adb Reboot | |
adb reboot | |
adb reboot recovery | |
adb reboot-bootloader |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gradle.projectsEvaluated { | |
tasks.withType(JavaCompile) { // For Java tests | |
options.compilerArgs << "-parameters" | |
} | |
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {// For Kotlin tests | |
kotlinOptions.freeCompilerArgs += ['-java-parameters'] | |
} | |
} |