Skip to content

Instantly share code, notes, and snippets.

View AlexHuicu's full-sized avatar

Alex Huiculescu AlexHuicu

  • Romania
View GitHub Profile
@AlexHuicu
AlexHuicu / all_of_it.js
Last active April 4, 2024 07:45
all of it
/*
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%.
@AlexHuicu
AlexHuicu / barb_by_points.js
Last active April 4, 2024 07:47
barb_by_points.js
/*
* 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
*/
@AlexHuicu
AlexHuicu / clear_barb_walls.js
Created April 3, 2024 17:31
clear_barb_walls.js
/*
* 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
@AlexHuicu
AlexHuicu / nume.js
Created March 20, 2024 13:35
Descriere
//Code here
@AlexHuicu
AlexHuicu / tw_auto_tag_l100.js
Last active April 3, 2024 13:09
TW AutoTag L100
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 = [];
@AlexHuicu
AlexHuicu / AdbCommands
Created January 13, 2022 18:38 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
@AlexHuicu
AlexHuicu / testParameterInjector.setup.gradle
Last active June 7, 2021 12:28
Gradle setup for TestParameterInjector
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']
}
}