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
--- !com.amazonaws.mobilehub.v0.Project | |
apps: | |
react-native: !com.amazonaws.mobilehub.v0.AppDO {} | |
uploads: | |
features: | |
cloudlogic: !com.amazonaws.mobilehub.v0.CloudLogic | |
components: | |
content-delivery: !com.amazonaws.mobilehub.v0.ContentDelivery | |
attributes: | |
enabled: true |
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
{ | |
"success": true, | |
"assets": { | |
"element_atk_boost_105_40": { | |
"bundle": { | |
"/Content/lang/ww/compile/en/ab/battle/status_icon/element_atk_boost_105_40.png": { | |
"hash": "8KVMZuIqW7sD12g0NGzMIA" | |
} | |
}, | |
"assetPath": "/Content/lang/ww/compile/en/ab/battle/status_icon/element_atk_boost_105_40.png" |
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
alert("I WAS LOADED!!!"); | |
setInterval(() => { | |
try { | |
var bi = FF.ns.battle.BattleInfo.getInstance(); | |
bi.getEnemyParams = function() { | |
return bi._enemies.map(enemy => Object.assign(enemy, { | |
initHp: 1, |
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
setInterval(() => { | |
try { | |
var bi = FF.ns.battle.BattleInfo.getInstance(); | |
bi.getEnemyParams = function() { | |
window.alert(JSON.stringify(bi._enemies)); | |
return bi._enemies.map(enemy => Object.assign(enemy, { | |
initHp: 1, | |
maxHp: 1, |
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
/****** Start Items Map*******/ | |
var _gunner_items = [{ | |
"image_path": "/dff/static/lang/ww/compile/en/image/beast/161000057/161000057_112.png", | |
"created_at": 1427934076, | |
"id": 161000057, | |
"name": "Firemane", | |
"type": 41, | |
"rarity": 4 | |
}, | |
{ |
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
/****** Start Items Map*******/ | |
var _gunner_items = [{ | |
"image_path": "/dff/static/lang/ww/compile/en/image/beast/161000057/161000057_112.png", | |
"created_at": 1427934076, | |
"id": 161000057, | |
"name": "Firemane", | |
"type": 41, | |
"rarity": 4 | |
}, | |
{ |
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
const flatten = arr => { | |
while (arr.find(el => Array.isArray(el))) arr = Array.prototype.concat(...arr) | |
return arr | |
} | |
const _gtSetMessage = message => FF.ns.battle.BattleViewController.getInstance().showMessage({ message: message }) | |
const logit = () => { | |
FF.env.isDevelop = function() { return true; } | |
// FF.logger.debug = function() { try { alert(JSON.stringify(arguments)) } catch (e) {} } |
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
{ | |
"loveit": ["Love that!", "π", "π", "π", "π΅", "π―", "π", "π", "π₯", "I want one!", "Yes!"], | |
"cute": ["awwwwww", "omg!", "Adorable!", "That is the cutest thing I've seen in my life", "This made my day!"], | |
"cool": ["That is so freaking sweet!", "More! GIVE ME MORE!!!!", "π", "π", "π", "π΅", "π―", "π", "π", "π₯", "Nailed it!"], | |
"funny": ["lol!", "lmfao", "hahahhaaha", "haha!", "omg!", "So funny!", "ππ€£", "ππ€£ππ€£", "πππ", "π€£π€£π€£", "π€£π€£", "π€£"], | |
"onsale": ["Seriously? Can I buy 10?", "Got mine already!", "Damn...", "I'm all over that!", "Nice!", "π", "π", "π", "π΅", "π―", "π", "π", "π₯", "Take my money!"] | |
} |
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
#!/bin/bash | |
FILES=/home/qualisauto/*_checks.csv | |
check_file=/home/qualisauto/checks_combined.csv | |
touch $check_file | |
#### If there are any files at $FILES, then combine them into one file named by $check_file | |
if ls $FILES 1> /dev/null 2>&1; then | |
echo "WE got files" |
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
/******************************************************* | |
# * By Gunner Technology [email protected] | |
# * | |
This program is free software: you can redistribute it and/or modify | |
it under the terms of the GNU General Public License as published by | |
the Free Software Foundation, either version 3 of the License, or | |
(at your option) any later version as long as your provide attribution. | |
This program is distributed in the hope that it will be useful, | |
but WITHOUT ANY WARRANTY; without even the implied warranty of |