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
def toCamelCase(String string) { | |
String result = "" | |
string.findAll("[^\\W]+") { String word -> | |
result += word.capitalize() | |
} | |
return result | |
} | |
afterEvaluate { project -> | |
Configuration runtimeConfiguration = project.configurations.getByName('compile') |
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
126.com | |
150ml.com - fastmail.com | |
163.com | |
1mail.net | |
1me.net | |
1mum.com | |
1musicrow.com | |
1netdrive.com | |
1nsyncfan.com | |
1under.com |
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
// Важно! Вам нужно изменить под себя следующие строки, начинающиеся на set | |
// set userVarScriptMode - укажите 0, если запускаете первый раз, изменено окно игры или устройство | |
// set userVarPlanet - укажите номер планеты (1...5), на которой скрипт должен находиться | |
// set userVarHeroeLevel - укажите уровень вашего персонажа (1-13) | |
// set userVarNoBattle - укажите 1, если хотите быть на экране уровней планеты без боя, иначе 0 | |
set SAliensBotMode 0 // укажите 0, если запускаете первый раз | |