diff --git a/build.py b/build.py index 136805e..2692aac 100644 --- a/build.py +++ b/build.py @@ -1,57 +1,75 @@ -import urllib.request -import os -import json -from html.parser import HTMLParser - -class MLStripper(HTMLParser): - def __init__(self): - super().__init__() - self.reset() - self.fed = [] - def handle_data(self, d): - self.fed.append(d) - def get_data(self): - return ''.join(self.fed) - -def strip_tags(html): - s = MLStripper() - s.feed(html) - return s.get_data() - -# Download all module.json files from the list -lines = open('modulelist.txt').readlines() -result = [] -names = set() -for url in lines: - try: - myreq = urllib.request.urlopen(url) - mydata = myreq.read() - - module = json.loads(mydata.decode('utf-8')) - if 'name' not in module: - print('No name specified:', url) - elif module['name'].lower() in names: - print('Duplicate module name:', url) - else: - names.add(module['name'].lower()) - result.append(module) - except: - print(url) - -# Sort by name -def guiname(x): - if 'options' in x: - if 'guiName' in x['options']: - return strip_tags(x['options']['guiName']) - if 'niceName' in x['options']: - return strip_tags(x['options']['niceName']) - return x['name'] - -result = sorted(result, key = lambda x: guiname(x).lower()) - -with open('modulelist.json', 'w') as fh: - json.dump(result, fh) - -print(len(result), 'mods listed!') -print(sum(1 for x in result if 'category' not in x or x['category'] != 'client'), 'network mods listed!') -print(sum(1 for x in result if 'category' in x and x['category'] == 'client'), 'client mods listed!') +import urllib.request +import os +import json +from html.parser import HTMLParser + +class MLStripper(HTMLParser): + def __init__(self): + super().__init__() + self.reset() + self.fed = [] + def handle_data(self, d): + self.fed.append(d) + def get_data(self): + return ''.join(self.fed) + +def strip_tags(html): + s = MLStripper() + s.feed(html) + return s.get_data() + +# Download all module.json files from the list +lines = open('modulelist.txt').readlines() +result = [] +names = set() +for url in lines: + try: + myreq = urllib.request.urlopen(url) + mydata = myreq.read() + + module = json.loads(mydata.decode('utf-8')) + if 'name' not in module: + print('No name specified:', url) + else: + if module['name'].lower() in names: + print('WARNING: Duplicate module name:', url) + + names.add(module['name'].lower()) + + # Upgrade legacy fields + if 'options' in module: + if 'niceName' in module['options']: + module['options']['cliName'] = module['options']['niceName'] + del module['options']['niceName'] + + if 'category' in module: + if 'keywords' not in module: + module['keywords'] = [module['category']] + else: + module['keywords'].append(module['category']) + del module['category'] + else: + if 'keywords' not in module: + module['keywords'] = ['network'] + + result.append(module) + except: + print(url) + +# Sort by name +def guiname(x): + if 'options' in x: + if 'guiName' in x['options']: + return strip_tags(x['options']['guiName']) + if 'cliName' in x['options']: + return strip_tags(x['options']['cliName']) + return x['name'] + +result = sorted(result, key = lambda x: guiname(x).lower()) + +with open('modulelist.json', 'w') as fh: + json.dump(result, fh) + +print(len(result), 'mods listed!') +print(sum(1 for x in result if 'network' in x['keywords']), 'network mods listed!') +print(sum(1 for x in result if 'client' in x['keywords']), 'client mods listed!') diff --git a/modulelist.json b/modulelist.json index 083f239..bb58e59 100644 --- a/modulelist.json +++ b/modulelist.json @@ -1 +1 @@ -[{"disableAutoUpdate": false, "name": "AA-Guide", "author": "Owyn", "description": "Antaroth\u2019s Abyss guide for 3rd boss", "options": {"niceName": "AA-Guide"}, "servers": ["https://raw.githubusercontent.com/Owyn/aaguide/master/"], "supportUrl": "https://github.com/Owyn/aaguide/issues"}, {"disableAutoUpdate": false, "name": "Achievements-Master", "author": "Owyn", "description": "Tracks achievements progress", "options": {"niceName": "A", "guiName": "Achievements Master"}, "servers": ["https://raw.githubusercontent.com/Owyn/Achievements/master/"], "supportUrl": "https://github.com/Owyn/Achievements/issues"}, {"disableAutoUpdate": false, "name": "AFKer", "author": "Owyn", "description": "AFK check will not kick you out of the game after 1h", "options": {"niceName": "AFKer", "guiName": "AFKer", "reloadable": true, "settingsVersion": 81.3, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/Owyn/AFKer/master/"], "supportUrl": "https://github.com/Owyn/AFKer/issues", "packets": {"C_PLAYER_LOCATION": 5, "C_RETURN_TO_LOBBY": "raw"}}, {"disableAutoUpdate": false, "disabled": false, "name": "anti-bodyblock", "author": "Fruit", "description": "Removes allies bodyblock in dungeons.", "version": "1.0", "servers": ["https://raw.githubusercontent.com/soler91/Anti-Bodyblock/master/"], "options": {"niceName": "Anti Bodyblock", "guiName": "Anti Bodyblock"}}, {"disableAutoUpdate": false, "servers": ["https://raw.githubusercontent.com/Mister-Kay/arun-breath-fix/master/"], "supportUrl": "https://github.com/Mister-Kay/arun-breath-fix/issues", "name": "arun-breath-fix", "author": "Mister-Kay", "description": "Show heal from Arun's Breath (Titanic Favor or Boomerang Pulse inside Warding Totem range) when playing mystic."}, {"disableAutoUpdate": false, "servers": ["https://raw.githubusercontent.com/Mister-Kay/aura-range/master/"], "supportUrl": "https://github.com/Mister-Kay/aura-range/issues", "name": "aura-range", "author": "Mister-Kay", "description": "Apply a visual effect on party members that have mystic auras when playing as mystic or manually enabled."}, {"author": "seraphinush . teralove", "description": "tera-toolbox module to unlock maximum viewing distance", "disableAutoUpdate": false, "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=B7QQJZV9L5P2J&source=url", "name": "auto-camera", "options": {"reloadable": false, "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "settings.js"}, "servers": ["https://raw.githubusercontent.com/ylennia-archives/auto-camera/master/"], "supportUrl": "https://github.com/ylennia-archives/auto-camera/blob/master/README.md", "version": "2.01.00"}, {"disableAutoUpdate": false, "name": "auto-cutscene", "author": "Tsunpot/Baldera-Mods", "description": "Automatically cancels all cutscene movies", "supportUrl": "https://github.com/tsunpot/auto-cutscene-skip", "servers": ["https://raw.githubusercontent.com/tsunpot/auto-cutscene-skip/master/"]}, {"author": "seraphinush . Saegusae", "conflict": ["loot", "reserve-loot"], "description": "tera-toolbox module to loot items automatically", "disableAutoUpdate": false, "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=B7QQJZV9L5P2J&source=url", "name": "auto-loot-old", "options": {"niceName": "auto-loot", "reloadable": true, "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "settings.js"}, "servers": ["https://raw.githubusercontent.com/ylennia-archives/auto-loot-old/master/"], "supportUrl": "https://github.com/ylennia-archives/auto-loot-old/blob/master/README.md", "version": "1.45.07"}, {"author": "seraphinush . baldera-mods", "conflicts": ["vanguardian"], "description": "tera-toolbox module to automatically turn in Vanguard Requests upon completion", "disableAutoUpdate": false, "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=B7QQJZV9L5P2J&source=url", "name": "auto-vanguard", "options": {"reloadable": true, "settingsVersion": 3, "settingsFile": "config.json", "settingsMigrator": "settings.js"}, "servers": ["https://raw.githubusercontent.com/seraphinush-gaming/auto-vanguard/master/"], "supportUrl": "https://github.com/seraphinush-gaming/auto-vanguard/blob/master/README.md", "version": "3.00.0b"}, {"disableAutoUpdate": false, "name": "Baharr-Guide", "author": "ZC", "description": "Bahaar's Sanctum - Guide", "options": {"niceName": "Baharr", "guiName": "Baharr-Guide"}, "servers": ["https://raw.githubusercontent.com/Owyn/Bahaar-Guide/master/"], "supportUrl": "https://github.com/Owyn/Bahaar-Guide/issues"}, {"disableAutoUpdate": false, "name": "Bathysmal-rise-guide", "author": "Yang", "description": "BR guide for all bosses", "options": {"niceName": "Bathysmal-Guide"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/bathysmal-guide/master/"], "supportUrl": "https://github.com/DeathDefying/bathysmal-guide/issues"}, {"disableAutoUpdate": false, "name": "battle-notify", "author": "Caali / wuaw", "description": "Shows text notifications on configurable in-game events", "version": "1.0", "servers": ["https://raw.githubusercontent.com/tera-toolbox-mods/battle-notify/master/"], "options": {"niceName": "BattleNotify"}}, {"disableAutoUpdate": false, "name": "block-level-1-whispers", "author": "Owyn", "description": "Hides whispers from level 1 characters ", "options": {"niceName": "block-level-1-whispers", "guiName": "block-level-1-whispers"}, "servers": ["https://raw.githubusercontent.com/Owyn/block-level-1-whispers/master/"], "supportUrl": "https://github.com/Owyn/block-level-1-whispers/issues"}, {"author": "seraphinush", "description": "tera-proxy module to globalize block list across a server", "disableAutoUpdate": false, "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=B7QQJZV9L5P2J&source=url", "name": "block-list", "options": {"reloadable": true}, "servers": ["https://raw.githubusercontent.com/seraphinush-gaming/block-list/master/"], "supportUrl": "https://github.com/seraphinush-gaming/block-list/blob/master/README.md", "version": "1.07.00"}, {"disableAutoUpdate": false, "servers": ["https://raw.githubusercontent.com/Mister-Kay/boss-ping-remover/master/"], "supportUrl": "https://github.com/Mister-Kay/boss-ping-remover/issues", "name": "boss-ping-remover", "author": "Mister-Kay", "description": "Makes the bosses attacks match up with servers."}, {"name": "bugfix", "author": "Caali / Pinkie Pie", "description": "Collection of mods that fix some of the most severe client bugs in TERA.", "version": "1.0", "options": {"niceName": "Bugfix"}, "servers": ["https://raw.githubusercontent.com/tera-toolbox-mods/bugfix/master/"], "conflicts": ["swim-fix", "chat-sanitizer"]}, {"name": "CaaliLogger", "author": "Caali", "description": "Collect and upload anonymized data while playing in order to support my development projects.", "version": "38.0", "servers": ["https://raw.githubusercontent.com/caali-hackerman/data-logger/master/update/CaaliLogger/"], "dependencies": {"CaaliStateTracker": "https://raw.githubusercontent.com/caali-hackerman/data-logger/master/update/CaaliStateTracker/module.json"}}, {"name": "CaaliStateTracker", "author": "Caali", "description": "Helper module for CaaliLogger", "version": "37.0", "servers": ["https://raw.githubusercontent.com/caali-hackerman/data-logger/master/update/CaaliStateTracker/"]}, {"disableAutoUpdate": false, "name": "Clean character bar", "category": "client", "author": "SaltyMonkey", "options": {"guiName": "Clean character bar", "niceName": "Clean character bar"}, "servers": ["https://raw.githubusercontent.com/SaltyMonkey/tera-online-clean-character-bar/master/"]}, {"disableAutoUpdate": false, "name": "Clear onscreen messages", "category": "client", "author": "SaltyMonkey", "options": {"guiName": "Clear screen", "niceName": "Clear screen"}, "servers": ["https://raw.githubusercontent.com/SaltyMonkey/tera-online-clean-onscreen-messages/master/"]}, {"disableAutoUpdate": false, "name": "Generic-GPK-Loader", "category": "client", "description": "Loads any GPK(s) through Tera-Toolbox.\nStart Toolbox, then place GPK files in [toolbox]\\mods\\Generic-GPK-Loader\\Put-GPKs-Here", "author": "HakuryuuDom", "options": {"guiName": "Client: Generic GPK Loader", "niceName": "GPK Loader"}, "servers": ["https://raw.githubusercontent.com/HakuryuuDom/generic-gpk-loader/master/"]}, {"disableAutoUpdate": false, "name": "Timestamps", "category": "client", "conflicts": ["FPS-Pack"], "description": "Timestamps in chat, if you want to disable timestamping in some particular tab - add \"!\" to it's name.", "author": "Gl0", "options": {"guiName": "Client: Timestamps", "niceName": "Timestamps"}, "servers": ["https://raw.githubusercontent.com/Gl0/TeraTimeStamps/master/"]}, {"disableAutoUpdate": false, "name": "chat-mememizer", "author": "SaltyMonkey", "description": "Bored? Global chat useless again? This module for you!", "options": {"niceName": "CM"}, "servers": ["https://raw.githubusercontent.com/SaltyMonkey/chat-mememizer/master/"], "supportUrl": "https://github.com/SaltyMonkey/chat-mememizer/issues"}, {"disableAutoUpdate": false, "disabled": false, "name": "colorful-whispers", "author": "Leyki, TerableCoder", "version": 1.1, "description": "Customize the color of whispers to your own desire based on context.", "options": {"niceName": "Colorful Whispers", "guiName": "Colorful Whispers", "settingsVersion": 1, "settingsFile": "settings.json", "settingsMigrator": "lib/settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/Leyki/tera-colorful-whispers/master/"]}, {"name": "Nier-Automata-2B-Mod-for-Elin", "category": "client", "description": "Complete Nier: Automata 2B outfit for Elin. Required costume: Dyeable Chambermaid, head accessory: Lil\u2019 Devil Horns, face: Tortoise-Shell Brow Glasses.", "author": "Raven", "options": {"guiName": "Costume pack: Nier Automata 2B Mod for Elin", "niceName": "Nier: Automata 2B Mod for Elin"}, "servers": ["https://raw.githubusercontent.com/RavenMods/Nier-Automata-2B-Mod-for-Elin/master/"]}, {"disableAutoUpdate": false, "name": "Better-Dyeable-Flight-Suit", "category": "client", "description": "Changes the yellow bits into dyeable bits. Females only", "author": "Panty", "options": {"guiName": "Costume: Better Dyeable Flight Suit", "niceName": "Better Dyeable Flight Suit"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Better%20Dyeable%20Flight%20Suit/"]}, {"name": "Full-Black-Parthian-Scarf", "category": "client", "description": "This mod removes the white writing on the right side of the mask making it full black.", "author": "Raven", "options": {"guiName": "Costume: Black Parthian Scarf", "niceName": "Black Parthian Scarf"}, "servers": ["https://raw.githubusercontent.com/RavenMods/Full-Black-Parthian-Scarf/master/"]}, {"name": "Black-PUBG-Costume-for-males", "category": "client", "description": "This mod will change the appearance of the PUBG event costume, making it full black with red accents.", "author": "Raven", "options": {"guiName": "Costume: Black PUGB Costume", "niceName": "Black PUGB Costume"}, "servers": ["https://raw.githubusercontent.com/RavenMods/Black-PUBG-Costume-for-males/master/"]}, {"disableAutoUpdate": false, "name": "Castanic-Sleepy-Running-Togs", "category": "client", "description": "Makes the Red Running Togs for Castanics be pale pink have some mish-mashed cutesie designs on it", "author": "Panty", "options": {"guiName": "Costume: Castanic Sleepy Running Togs", "niceName": "Castanic Sleepy Running Togs"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Castanic%20Sleepy%20Running%20Togs/"]}, {"disableAutoUpdate": false, "name": "Charcoal-Eldritch-No-Skirt", "category": "client", "description": "Removes skirt on Elin Charcoal/Ivory Uniform", "author": "Panty", "options": {"guiName": "Costume: Charcoal Eldritch No Skirt", "niceName": "Charcoal Eldritch No Skirt"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Charcoal%20Eldritch%20No%20Skirt/"]}, {"disableAutoUpdate": false, "name": "Cheerleader-Shorts", "category": "client", "description": "Dyeable Cheerleader skirt turns into shorts", "author": "Panty", "options": {"guiName": "Costume: Cheerleader Shorts", "niceName": "Cheerleader Shorts"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Cheerleader%20Shorts/"]}, {"disableAutoUpdate": false, "name": "Dyeable-Housekeeper-Fix", "category": "client", "description": "Dyeable Housekeeper changed to have dyeable bows, and shoe soles; also makes panties white instead of black.", "author": "Panty", "options": {"guiName": "Costume: Dyeable Housekeeper Fix", "niceName": "Dyeable Housekeeper Fix"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Dyeable%20Housekeeper%20Fix/"]}, {"disableAutoUpdate": false, "name": "Elin-Black-Business-Suit", "category": "client", "description": "Makes the sleeves on the Elin Business Suit black to match", "author": "Panty", "options": {"guiName": "Costume: Elin Black Business Suit", "niceName": "Elin Black Business Suit"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Elin%20Black%20Business%20Suit/"]}, {"disableAutoUpdate": false, "name": "Elin-Dyeable-Raincoat-Match", "category": "client", "description": "Dyeable Elin Raincoat changes to be fully dyeable and not have green-plaid; whites are also lightened to not be dark gray.", "author": "Panty", "options": {"guiName": "Costume: Elin Dyeable Raincoat Match", "niceName": "Elin Dyeable Raincoat Match"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Elin%20Dyeable%20Raincoat%20Match/"]}, {"disableAutoUpdate": false, "name": "Elin-English-Lavender-Raincoat", "category": "client", "description": "Makes the Elin Raincoat be a soft lavender with black accents", "author": "Panty", "options": {"guiName": "Costume: Elin English Lavender Raincoat", "niceName": "Elin English Lavender Raincoat"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Elin%20English%20Lavender%20Raincoat/"]}, {"disableAutoUpdate": false, "name": "Elin-Pale-Writer-Shoes-and-Socks-Fix", "category": "client", "description": "Makes socks white and lets the shoes be dyeable on Pale Writer", "author": "Panty", "options": {"guiName": "Costume: Elin Pale Writer Shoes and Socks Fix", "niceName": "Elin Pale Writer Shoes and Socks Fix"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Elin%20Pale%20Writer%20Shoes%20and%20Socks%20Fix/"]}, {"disableAutoUpdate": false, "name": "Elin-Pink-Social-Dress", "category": "client", "description": "Changes the green Ice Cream Social dress to be pink", "author": "Panty", "options": {"guiName": "Costume: Elin Pink Social Dress", "niceName": "Elin Pink Social Dress"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Elin%20Pink%20Social%20Dress/"]}, {"disableAutoUpdate": false, "name": "Elin-Rose-Gold-Raincoat", "category": "client", "description": "Makes the Elin Raincoat a rose gold with black accents", "author": "Panty", "options": {"guiName": "Costume: Elin Rose Gold Raincoat", "niceName": "Elin Rose Gold Raincoat"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Elin%20Rose%20Gold%20Raincoat/"]}, {"disableAutoUpdate": false, "name": "Elin-Strawberry-Maid", "category": "client", "description": "Turns the brown Elin 2017 Maid Costume into pink with a cute plaid heart pattern on the stockings and dress.", "author": "Panty", "options": {"guiName": "Costume: Elin Strawberry Maid", "niceName": "Elin Strawberry Maid"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Elin%20Strawberry%20Maid/"]}, {"disableAutoUpdate": false, "name": "Elin-Sugar-Alice", "category": "client", "description": "Turns the St. Patrick's Day Clover Costume into a pastel pink dress with pink accents and a heart on the apron", "author": "Panty", "options": {"guiName": "Costume: Elin Sugar Alice", "niceName": "Elin Sugar Alice"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Elin%20Sugar%20Alice/"]}, {"disableAutoUpdate": false, "name": "Elin-Whiter-Dyeable-Ice-Cream-Social", "category": "client", "description": "Makes the outfit much brighter and less gray", "author": "Panty", "options": {"guiName": "Costume: Elin Whiter Dyeable Ice Cream Social", "niceName": "Elin Whiter Dyeable Ice Cream Social"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Elin%20Whiter%20Dyeable%20Ice%20Cream%20Social/"]}, {"disableAutoUpdate": false, "name": "Elin-Whiter-Dyeable-Raincoat-Accents", "category": "client", "description": "Makes the accents on the Elin Dyeable Raincoat more bright white", "author": "Panty", "options": {"guiName": "Costume: Elin Whiter Dyeable Raincoat Accents", "niceName": "Elin Whiter Dyeable Raincoat Accents"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Elin%20Whiter%20Dyeable%20Raincoat%20Accents/"]}, {"name": "Full-Black-PUBG-Costume", "category": "client", "description": "This mod will change the appearance of the PUBG event costume, making it full black.", "author": "Raven", "options": {"guiName": "Costume: Full Black PUBG Costume", "niceName": "Full Black PUBG Costume"}, "servers": ["https://raw.githubusercontent.com/RavenMods/Full-Black-PUBG-Costume/master/"]}, {"disableAutoUpdate": false, "name": "Ice-Cream-Social-Dyeable-Shoes-and-Black-Pantyhose", "category": "client", "description": "Ice Cream Social dress changed to have Dyeable Shoes", "author": "Panty", "options": {"guiName": "Costume: Ice Cream Social Dyeable Shoes and Black Pantyhose", "niceName": "Ice Cream Social Dyeable Shoes and Black Pantyhose"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Ice%20Cream%20Social%20Dyeable%20Shoes%20and%20Black%20Pantyhose/"]}, {"disableAutoUpdate": false, "name": "Ice-Cream-Social-Dyeable-Shoes-and-White-Pantyhose", "category": "client", "description": "Ice Cream Social dress changed to have Dyeable Shoes and white pantyhose instead of black", "author": "Panty", "options": {"guiName": "Costume: Ice Cream Social Dyeable Shoes and White Pantyhose", "niceName": "Ice Cream Social Dyeable Shoes and White Pantyhose"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Ice%20Cream%20Social%20Dyeable%20Shoes%20and%20White%20Pantyhose/"]}, {"disableAutoUpdate": false, "name": "Ice-Cream-Social-White-Pantyhose", "category": "client", "description": "Ice Cream Social dress changed to have white pantyhose", "author": "Panty", "options": {"guiName": "Costume: Ice Cream Social White Pantyhose", "niceName": "Ice Cream Social White Pantyhose"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Ice%20Cream%20Social%20White%20Pantyhose/"]}, {"disableAutoUpdate": false, "name": "More Dyable Business Suits", "category": "client", "description": "Makes dyable business suits more, well, dyable", "author": "Snug", "options": {"guiName": "Costume: More Dyable Business Suits", "niceName": "More Dyable Business Suits"}, "servers": ["https://raw.githubusercontent.com/Snugglez/more-dyable-business-suit-client-mod/master/"]}, {"disableAutoUpdate": false, "name": "Pastel-Pora-Elinu-Uniform", "category": "client", "description": "Makes the Pora Elinu Uniform have a pastel blue tie, pastel pink skirt, pastel blue shoes.", "author": "Panty", "options": {"guiName": "Costume: Pastel Pora Elinu Uniform", "niceName": "Pastel Pora Elinu Uniform"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Pastel%20Pora%20Elinu%20Uniform/"]}, {"disableAutoUpdate": false, "name": "Pink-Picnic-Dress", "category": "client", "description": "Makes the Picnic Dress have pink instead of black and makes the socks white", "author": "Panty", "options": {"guiName": "Costume: Pink Picnic Dress", "niceName": "Pink Picnic Dress"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Pink%20Picnic%20Dress/"]}, {"disableAutoUpdate": false, "name": "Red-Miko-Costume", "category": "client", "description": "Snowsilk is changed to be white and red instead of rainbow to mimic a miko costume", "author": "Panty", "options": {"guiName": "Costume: Red Miko Costume", "niceName": "Red Miko Costume"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Red%20Miko%20Costume/"]}, {"disableAutoUpdate": false, "name": "White-Castanica-Demon", "category": "client", "description": "Makes the leather white, the collar pink, the shoes white AND removes the studs, spikes, straps, and stars", "author": "Panty", "options": {"guiName": "Costume: White Castanica Demon", "niceName": "White Castanica Demon"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/White%20Castanica%20Demon/"]}, {"disableAutoUpdate": false, "name": "White-Pixie", "category": "client", "description": "Turns all the gold accents to be a white, also whitens other aspects of the costume to not be dark gray", "author": "Panty", "options": {"guiName": "Costume: White Pixie", "niceName": "White Pixie"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/White%20Pixie/"]}, {"disableAutoUpdate": false, "name": "Whiter-Dyeable-Jeans-and-Jacket", "category": "client", "description": "The jean shorts are now white and all the white accents are lightened to fit more coherently together", "author": "Panty", "options": {"guiName": "Costume: Whiter Dyeable Jeans and Jacket", "niceName": "Whiter Dyeable Jeans and Jacket"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Whiter%20Dyeable%20Jeans%20and%20Jacket/"]}, {"disableAutoUpdate": false, "name": "crafting-calculator", "author": "Yang", "description": "Calculate plates/gems mats and more", "version": "6/26/2019", "options": {"niceName": "Crafting Info"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/crafting-calculator/master/"], "supportUrl": "DM Yang#0966"}, {"disableAutoUpdate": false, "name": "party_death_marker_pointers", "author": "Owyn", "description": "Spawns colored pointy arrows on top of dead party members", "options": {"niceName": "Death Markers"}, "servers": ["https://raw.githubusercontent.com/Owyn/party_death_marker_pointers/master/"], "supportUrl": "https://github.com/Owyn/party_death_marker_pointers/issues"}, {"name": "dw-guide", "author": "Caali / YunfeiG", "description": "Guide module for Demon's Wheel", "version": "1.0", "options": {"niceName": "Demon's Wheel Guide", "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/tera-toolbox-mods/dw-guide/master/"]}, {"disableAutoUpdate": false, "name": "dynamic-day", "options": {"niceName": "DD", "guiName": "Dynamic Day", "settingsVersion": 1, "settingsFile": "./settings.json", "settingsMigrator": "./data/migration.js"}, "author": "SaltyMonkey", "description": "Simple Tera Toolbox module which adds a dynamic environment to Tera Online based on the player\u2019s local or server time", "servers": ["https://raw.githubusercontent.com/SaltyMonkey/dynamic-day/master/"], "supportUrl": ["https://github.com/SaltyMonkey/dynamic-day/issues"]}, {"name": "elin-magic", "author": "Pinkie Pie (forked by Caali)", "description": "Client-sided appearance, costumes, mounts, titles and more!", "version": "1.0", "servers": ["https://raw.githubusercontent.com/tera-toolbox-mods/elin-magic/master/"], "options": {"niceName": "ElinMagic"}, "conflicts": ["cosplayer", "unicast"], "dependencies": {"ui": "https://raw.githubusercontent.com/HakuryuuDom/ui/master/module.json"}}, {"disableAutoUpdate": false, "name": "EP-Tracker", "author": "TeraProxy / Owyn / Kourinn", "description": "A tera-proxy module that shows you information about your Enhancement Points experience, including the daily softcap.", "version": "1.0.1", "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=A3KBZUCSEQ5RJ", "options": {"niceName": "EP", "guiName": "EP-Tracker"}, "servers": ["https://raw.githubusercontent.com/TeraProxy/EP-Tracker/master/"], "supportUrl": "https://github.com/TeraProxy/EP-Tracker/issues", "conflicts": ["talents_info"]}, {"disableAutoUpdate": false, "name": "Essentials", "author": "TeraProxy / Caali / Pinkie Pie", "description": "A tera-proxy module that automatically uses Nostrum/Battle Solution and Complete Crystalbind items whenever needed.", "version": "2.3.1", "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=A3KBZUCSEQ5RJ", "options": {"niceName": "Essentials", "guiName": "Essentials", "settingsVersion": 5, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/TeraProxy/Essentials/master/"], "supportUrl": "https://github.com/TeraProxy/Essentials/issues", "dependencies": {"tera-game-state": "https://raw.githubusercontent.com/caali-hackerman/tera-game-state/master/module.json"}}, {"disableAutoUpdate": false, "name": "Extended Boss Bar", "category": "client", "author": "SaltyMonkey", "options": {"guiName": "Extended Boss Bar", "niceName": "Extended Boss Bar"}, "servers": ["https://raw.githubusercontent.com/SaltyMonkey/tera-online-extended-boss-bar/master/"]}, {"name": "flasher", "author": "Caali", "description": "Flashes your client (like when receiving a negotiation request) to notify you of certain events (for example instance matching completed).", "version": "1.0", "options": {"niceName": "Flasher", "guiName": "Flasher", "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/tera-toolbox-mods/flasher/master/"]}, {"servers": ["https://raw.githubusercontent.com/Kaseaa/fps-booster-2000/master/"], "supportUrl": "https://github.com/Kaseaa/fps-booster-2000/issues", "name": "fps-booster-2000", "dependencies": {"library": "https://raw.githubusercontent.com/Kaseaa/library/master/module.json"}, "options": {"guiName": "Fps booster"}, "description": "Boosts your fps by blocking unneeded packets. WARNING: you will not be able to see purple health bars"}, {"disableAutoUpdate": false, "name": "fps-manager", "options": {"niceName": "FPM", "guiName": "FPS Manager", "settingsVersion": 1, "settingsFile": "./settings/settings.json", "settingsMigrator": "./data/migrationData.js"}, "author": "SaltyMonkey", "description": "FPS Manager is modern and extremely customizable module for Tera Toolbox which can help to solve annoyance by some ingame messages and fps drops.", "servers": ["https://raw.githubusercontent.com/SaltyMonkey/fps-manager/master/"], "supportUrl": ["https://github.com/SaltyMonkey/fps-manager/issues"], "conflicts": ["fps-utils"]}, {"disableAutoUpdate": false, "name": "fps-utils", "author": "Pentagon", "description": "Hides other players and skill effects to significantly boost your framerate", "version": "1.0.1", "donationUrl": "https://ko-fi.com/codeagon", "conflicts": ["fps-utils-lite", "hide-players"], "options": {"niceName": "FPS-UTILS", "settingsVersion": 2, "settingsFile": "config.json", "settingsMigrator": "setting_migration.js"}, "servers": ["https://raw.githubusercontent.com/codeagon/fps-utils/master/"], "dependencies": {"badgui": "https://raw.githubusercontent.com/codeagon/badGui/master/module.json"}}, {"disableAutoUpdate": false, "name": "generic-box-opener-item-user", "author": "Owyn", "description": "Mass-Opens boxes", "options": {"niceName": "Box", "guiName": "Generic Box Opener & Item user"}, "servers": ["https://raw.githubusercontent.com/Owyn/generic-box-opener-item-user/master/"], "supportUrl": "https://github.com/Owyn/generic-box-opener-item-user/issues"}, {"disableAutoUpdate": false, "name": "GG-Reset", "author": "Snug", "description": "Automaticly resets ghillie once entering Velik's Sanctuary", "version": "1.0", "servers": ["https://raw.githubusercontent.com/Snugglez/GG-Reset/master/"], "supportUrl": ""}, {"disableAutoUpdate": false, "name": "gld-guide", "author": "valkyr1e", "description": "Guide of Grotto of Lost Souls", "version": "1.0", "options": {"niceName": "GLSGuide", "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/valkyr1e-tera/gls-guide/master/"]}, {"disableAutoUpdate": false, "name": "Elin Matching Ears and Tail", "category": "client", "description": "Matches the ears and tail with the selected hair color", "author": "Snug", "options": {"guiName": "Hair: Elin Matching Ears and Tail", "niceName": "Elin Matching Ears and Tail"}, "servers": ["https://raw.githubusercontent.com/Snugglez/elin-matching-ears-and-tail-client-mod/master/"]}, {"disableAutoUpdate": false, "name": "No More Castanic Male Horns", "category": "client", "description": "Removes the horns from Castanic Male", "author": "Snug", "options": {"guiName": "Hair: No More Castanic Male Horns", "niceName": "No More Castanic Male Horns"}, "servers": ["https://raw.githubusercontent.com/Snugglez/no-more-castanic-male-horns/master/"]}, {"disableAutoUpdate": false, "name": "Healer Toolbox", "author": "Koekkruimels", "description": "Quality of life changes to increase awareness of your party members status.", "version": "1.0.0", "conflicts": ["party_death_marker_pointers", "aura-range"], "options": {"reloadable": false, "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "settings.js"}, "servers": ["https://raw.githubusercontent.com/Koekkruimels/tera-healer-toolbox/master/"], "supportUrl": "https://github.com/Koekkruimels/tera-healer-toolbox/issues"}, {"disableAutoUpdate": false, "disabled": false, "name": "hide-dmg", "author": "Fruit", "description": "Hides those annoying damage numbers.", "version": "1.0", "servers": ["https://raw.githubusercontent.com/soler91/hide-dmg/master/"], "options": {"niceName": "Hide dmg numbers", "guiName": "Hide dmg numbers"}}, {"disableAutoUpdate": false, "name": "Inspector", "author": "TeraProxy", "description": "Automatically inspects players when they apply for your group and logs details about them in your console and ingame chat. Hides the inspect window during combat so you don't get distracted while fighting.", "version": "1.5.2", "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=A3KBZUCSEQ5RJ", "options": {"niceName": "Inspect", "guiName": "Inspector", "settingsVersion": 6, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/TeraProxy/Inspector/master/"], "supportUrl": "https://github.com/TeraProxy/Inspector/issues", "dependencies": {"tera-game-state": "https://raw.githubusercontent.com/caali-hackerman/tera-game-state/master/module.json"}}, {"name": "instant-everything", "author": "Caali / Pinkie Pie / m0py / Snug / beng", "description": "Removes the annoying animation and skips the progress bar for enchanting, upgrading, soulbinding, dismantling, and merging items.", "version": "1.0", "servers": ["https://raw.githubusercontent.com/tera-toolbox-mods/instant-everything/master/"], "options": {"niceName": "InstantEverything", "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "conflicts": ["instant-enchant", "instant-upgrade", "instant-soulbind", "instant-dismantle", "instant-merge"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-WareHouseWindow", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Bank", "niceName": "Modern UI: Bank"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_WareHouseWindow/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_ServantStorageWindow/module.json"}, "name": "modern-ServantStorageWindow", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Companion list", "niceName": "Modern UI: Companion list"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_ServantStorageWindow/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-MiniMap", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Compass", "niceName": "Modern UI: Compass"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_MiniMap/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-ProductionList", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Crafting", "niceName": "Modern UI: Crafting"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_ProductionList/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-ProductionCreatePopUp", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Crafting popup", "niceName": "Modern UI: Crafting popup"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_ProductionCreatePopUp/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-EquipmentCombine", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Equipment infusion", "niceName": "Modern UI: Equipment infusion"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_EquipmentCombine/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-EquipmentUpgrade", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Forge", "niceName": "Modern UI: Forge"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_EquipmentUpgrade/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-CommunityWindow", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Friend list", "niceName": "Modern UI: Friend list"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_CommunityWindow/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-GuildWindow", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Guild", "niceName": "Modern UI: Guild"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_GuildWindow/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "conflicts": ["modern-PaperDoll", "modern-InventoryWindow"], "name": "modern-JewelsFix", "description": "Shows different sets of jewels with different icons (blue-ish for power, red-ish for crit). Not compatible with 'Modern UI: Profile' and 'Modern UI: Inventory'", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Jewels fix", "niceName": "Modern UI: Jewels fix"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_JewelsFix/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-StoreWindow", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Merchant", "niceName": "Modern UI: Merchant"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_StoreWindow/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-SystemOption", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Options", "niceName": "Modern UI: Options"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_SystemOption/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-ParcelPostLog", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Parcel post", "niceName": "Modern UI: Parcel post"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_ParcelPostLog/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-InteractionPopup", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Popups", "niceName": "Modern UI: Popups"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_InteractionPopup/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-SkillWindow_AutoHide", "category": "client", "author": "Foglio", "description": "This mod automatically hides skill bar when skill window is closed.", "options": {"guiName": "Modern UI: Skill window (hides skill bar)", "niceName": "Modern UI: Skill window (hides skill bar)"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_SkillWindow_AutoHide/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-EpWindow", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Talents", "niceName": "Modern UI: Talents"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_EpWindow/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-TradePopup", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Trade popup", "niceName": "Modern UI: Trade popup"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_TradePopup/"]}, {"disableAutoUpdate": false, "disabled": false, "name": "mongord", "author": "Fruit", "description": "Searchs on moongourd for the inspected character.", "version": "1.0", "servers": ["https://raw.githubusercontent.com/soler91/mongord/master/"], "options": {"niceName": "Mongord", "guiName": "Mongord"}}, {"disableAutoUpdate": false, "options": {"niceName": "MP", "guiName": "Mount-Prediction"}, "name": "Mount-Prediction", "author": "Snug", "description": "Removes ping tax related to mounts", "version": "1.1", "servers": ["https://raw.githubusercontent.com/Snugglez/mount-prediction/master/"], "supportUrl": "https://github.com/Snugglez/mount-prediction/blob/master/README.md"}, {"author": "seraphinush . TeraProxy", "description": "tera-toolbox module to notify enrage information of bosses", "disableAutoUpdate": false, "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=B7QQJZV9L5P2J&source=url", "name": "msg-enrage", "options": {"reloadable": true, "settingsVersion": 2, "settingsFile": "config.json", "settingsMigrator": "settings.js"}, "servers": ["https://raw.githubusercontent.com/seraphinush-gaming/msg-enrage/master/"], "supportUrl": "https://github.com/seraphinush-gaming/msg-enrage/blob/master/README.md", "version": "1.19.04"}, {"disableAutoUpdate": false, "name": "Nest-Guide", "author": "Owyn", "description": "Parquina's Nest guide for last boss", "options": {"niceName": "Nest-Guide"}, "servers": ["https://raw.githubusercontent.com/Owyn/nest-guide/master/"], "supportUrl": "https://github.com/Owyn/nest-guide/issues"}, {"disableAutoUpdate": false, "name": "No Drunk Screen", "author": "Pentagon", "description": "Hides vomit inducing effects", "version": "1.0", "donationUrl": "https://ko-fi.com/codeagon", "servers": ["https://raw.githubusercontent.com/codeagon/no-drunk-screen/master/"], "supportUrl": "https://discord.gg/maqBmJV"}, {"disableAutoUpdate": false, "name": "no_more_guardian", "author": "Owyn", "description": "Disables guardian auto-optimization along with its UI", "options": {"niceName": "no more Guardian", "guiName": "no more Guardian"}, "servers": ["https://raw.githubusercontent.com/Owyn/no_more_guardian/master/"], "supportUrl": "https://github.com/Owyn/no_more_guardian/issues"}, {"disableAutoUpdate": false, "name": "no-more-intro-videos", "author": "Snug", "description": "Renames intro videos to bypass ever seeing them", "category": "client", "options": {"guiName": "No More Intro Videos"}, "servers": ["https://raw.githubusercontent.com/snugglez/no-more-intro-videos/master/"]}, {"disableAutoUpdate": false, "name": "no-more-trash-lootbeams", "author": "Owyn", "description": "Disables lootbeams over outdated useless trash items", "options": {"niceName": "Trash Lootbeams", "guiName": "No more Trash Lootbeams"}, "servers": ["https://raw.githubusercontent.com/Owyn/no-more-trash-lootbeams/master/"], "supportUrl": "https://github.com/Owyn/no-more-trash-lootbeams/issues"}, {"name": "no-custom-loadingscreens", "description": "Disable custom loading screens supplied by the game's publishers and instead show only default ones.", "author": "Caali", "version": "1.0", "servers": ["https://raw.githubusercontent.com/tera-toolbox-mods/no-custom-loadingscreens/master/"]}, {"disableAutoUpdate": false, "servers": ["https://raw.githubusercontent.com/Mister-Kay/no-more-crazy-capes/master/"], "supportUrl": "https://github.com/Mister-Kay/no-more-crazy-capes/issues", "name": "no-more-crazy-capes", "author": "Mister-Kay", "description": "Fixes cape exploding physics glitch by re-equipping back items of other players 3 seconds after they load/change equipment."}, {"disableAutoUpdate": false, "name": "No-More-Motes", "author": "Snug", "description": "Disables the spawning of motes to help on fps when mass farming iod", "options": {"guiName": "No-More-Motes", "niceName": "nmm", "settingsVersion": 1, "settingsFile": "settings.json", "settingsMigrator": "settings_generator.js"}, "version": "1.0", "servers": ["https://raw.githubusercontent.com/Snugglez/No-More-Motes/master/"], "supportUrl": "https://github.com/Snugglez/No-More-Motes/issues"}, {"disableAutoUpdate": false, "servers": ["https://raw.githubusercontent.com/Mister-Kay/no-more-noctenium-lag/master/"], "supportUrl": "https://github.com/Mister-Kay/no-more-noctenium-lag/issues", "name": "no-more-noctenium-lag", "author": "Mister-Kay", "description": "Blocks packets which caused client lag when using Noctenium."}, {"disableAutoUpdate": false, "servers": ["https://raw.githubusercontent.com/Mister-Kay/no-more-wasted-backstabs/master/"], "supportUrl": "https://github.com/Mister-Kay/no-more-wasted-backstabs/issues", "name": "no-more-wasted-backstabs", "author": "Mister-Kay", "description": "Blocks targeted teleport skills without a target."}, {"disableAutoUpdate": false, "name": "no-more-annoying-titles", "author": "SaltyMonkey", "description": "Removing shiny titles from another players", "options": {"niceName": "NoMoreTitles"}, "servers": ["https://raw.githubusercontent.com/SaltyMonkey/NoMoreAnnoyingTitles/master/"], "supportUrl": "https://github.com/SaltyMonkey/NoMoreAnnoyingTitles/issues"}, {"disableAutoUpdate": false, "name": "Normalifier", "author": "TeraProxy / spaacecats", "description": "Blocks specific abnormals in order to not trigger annoying screen effects on your client (e.g. Lein's Dark Root Beer).", "version": "1.0.1", "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=A3KBZUCSEQ5RJ", "options": {"niceName": "Norm", "guiName": "Normalifier"}, "servers": ["https://raw.githubusercontent.com/TeraProxy/Normalifier/master/"], "supportUrl": "https://github.com/TeraProxy/Normalifier/issues"}, {"disableAutoUpdate": false, "servers": ["https://raw.githubusercontent.com/Snugglez/old-inspect/master/"], "supportUrl": "https://github.com/Snugglez/old-inspect/issues", "author": "Snug", "name": "old-inspect", "options": {"guiName": "Old Inspect"}, "description": "Reverts /inspect and /look to move the camera to the target like it was prior to patch 85"}, {"disableAutoUpdate": false, "name": "GageBar_TopScreen", "category": "client", "description": "Moves charging/gathering bar right below system messages location.", "author": "Foglio", "options": {"niceName": "Progress bar: top screen", "guiName": "Progress bar: top screen"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/toolbox-client-mods/master/GageBar_TopScreen/"]}, {"disableAutoUpdate": false, "name": "quick-load", "author": "HakuryuuDom / Pinkie Pie", "description": "Bypasses loadscreens when switching channels or teleporting within the same zone.", "version": "2.0", "options": {"niceName": "QuickLoad", "settingsVersion": 4, "settingsFile": "config.json", "settingsMigrator": "setting_migration.js"}, "servers": ["https://raw.githubusercontent.com/HakuryuuDom/quick-load/master/"]}, {"disableAutoUpdate": false, "name": "Rainbow", "author": "Pentagon", "description": "Makes ur char go rainbow", "donationUrl": "https://ko-fi.com/codeagon", "version": "1.0", "servers": ["https://raw.githubusercontent.com/codeagon/rainbow/master/"], "supportUrl": "https://discord.gg/uhDAXWQ"}, {"name": "rk9guide", "author": "Owyn", "description": "Guide for RK9 dungeon", "options": {"niceName": "rk9guide"}, "servers": ["https://raw.githubusercontent.com/Owyn/rk9guide/master/"], "supportUrl": "https://github.com/Owyn/rk9guide/issues", "disableAutoUpdate": false}, {"disableAutoUpdate": false, "name": "rootbeer", "author": "HakuryuuDom / Pinkie Pie", "description": "Automatically opens Bamarama boxes and discards trash.", "version": "2.0", "options": {"reloadable": true, "niceName": "Rootbeer", "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "setting_migration.js"}, "servers": ["https://raw.githubusercontent.com/HakuryuuDom/rootbeer/master/"]}, {"disableAutoUpdate": false, "name": "Salt-Remover", "author": "SaltyMonkey", "description": "Removing useless messages from your screen caused by salt-events", "options": {"niceName": "Salt Remover"}, "servers": ["https://raw.githubusercontent.com/SaltyMonkey/Salt-remover/master/"], "supportUrl": "https://github.com/SaltyMonkey/Salt-remover/issues"}, {"disableAutoUpdate": false, "name": "server-exposer", "author": "SaltyMonkey", "description": "Placing server name near guild name in dungeons/everywhere based on settings.", "options": {"niceName": "ServerExposer", "settingsVersion": 1, "settingsFile": "./settings.json", "settingsMigrator": "./migration.js"}, "servers": ["https://raw.githubusercontent.com/SaltyMonkey/server-exposer/master/"], "supportUrl": "https://github.com/SaltyMonkey/server-exposer/issues"}, {"disableAutoUpdate": false, "servers": ["https://raw.githubusercontent.com/Kaseaa/Tera-Settings-Saver/master/"], "supportUrl": "https://github.com/Kaseaa/Tera-Settings-Saver/issues", "author": "Kasea", "name": "tera-settings-saver", "options": {"guiName": "Setting saver"}, "description": "Saves your settings"}, {"name": "shaker", "author": "Caali", "description": "Modify or completely disable camera shaking effects. You can configure it in the window that opens when typing `/proxy shaker` in chat.", "version": "1.0", "options": {"niceName": "Shaker", "guiName": "Shaker", "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/tera-toolbox-mods/shaker/master/"]}, {"disableAutoUpdate": false, "name": "show_hp_etchings", "author": "Owyn", "description": "Makes you able to discern etching which also give +HP stat", "options": {"niceName": "Show HP etchings", "guiName": "Show HP etchings"}, "servers": ["https://raw.githubusercontent.com/Owyn/show_hp_etchings/master/"], "supportUrl": "https://github.com/Owyn/show_hp_etchings/issues"}, {"disableAutoUpdate": false, "name": "skill-prediction", "author": "Pinkie Pie / many others", "description": "Simulates skills client-side, eliminating ping-based delays and animation lock.", "options": {"niceName": "PSP", "guiName": "Skill Prediction", "settingsVersion": 4, "settingsFile": "settings.json", "settingsMigrator": "migration.js"}, "servers": ["https://raw.githubusercontent.com/SaltyMonkey/skill-prediction/master/"], "supportUrl": "https://github.com/tera-mods/skill-prediction/issues", "conflicts": ["aa-zsync", "cooldowns", "cooldowns-master", "fastfire", "fastfire-master", "fast-fire", "fast-fire-master", "lockons", "lockons-master", "lockons-light", "lockons-light-master", "ping-compensation", "ping-remover", "skill-prediction-master", "skill-prediction-plus"]}, {"name": "skill-resets", "author": "Caali / eemj", "description": "Pops up an on-screen message whenever a skill's cooldown is reset.", "version": "1.1", "options": {"niceName": "SkillResets", "settingsVersion": 2, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/tera-toolbox-mods/skill-resets/master/"]}, {"disableAutoUpdate": false, "name": "sc-guide", "author": "Yang", "description": "SC guide for all bosses", "options": {"niceName": "SkyCruiser-Guide"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/sc-guide/master/"], "supportUrl": "https://github.com/DeathDefying/sc-guide/issues"}, {"disableAutoUpdate": false, "disabled": false, "name": "Socialize", "author": "Leyki", "version": 1.1, "donationUrl": "https://Leyki_VK_NA", "description": "A general usage emote script and some more stuff.", "servers": ["https://raw.githubusercontent.com/Leyki/Socialize/master/"], "options": {"niceName": "Socialize", "settingsVersion": 1, "settingsFile": "settings.json", "settingsMigrator": "lib/settings_migrator.js"}}, {"disableAutoUpdate": false, "name": "Shut Up Anya", "category": "client", "description": "Ever want anya on stepstone island to just, shut up? without muting sounds completely, well here you go.", "author": "Snug", "options": {"guiName": "Sound: Shut Up Anya", "niceName": "Shut Up Anya"}, "servers": ["https://raw.githubusercontent.com/Snugglez/shut-up-anya-client-mod/master/"]}, {"disableAutoUpdate": false, "name": "Awakened-Battle-Bunny-Gunner-Mech", "category": "client", "description": "Makes the Gunner awakened mecha companion into a pale pink with stars, bunnies, and strawberries all over", "author": "Panty", "options": {"guiName": "Special: Awakened Battle Bunny Gunner Mech", "niceName": "Awakened Battle Bunny Gunner Mech"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-special-mods/master/Awakened%20Battle%20Bunny%20Gunner%20Mech/"]}, {"disableAutoUpdate": false, "name": "Castanic-Female-Hair-3-Pink-Horns", "category": "client", "description": "Makes the horns pink", "author": "Panty", "options": {"guiName": "Special: Castanic Female Hair 3 Pink Horns", "niceName": "Castanic Female Hair 3 Pink Horns"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-special-mods/master/Castanic%20Female%20Hair%203%20Pink%20Horns/"]}, {"name": "Castanic-Male-White-Hair", "category": "client", "description": "This mod will alter the color of your hair making it brighter/improving pastels.", "author": "Raven", "options": {"guiName": "Special: Castanic Male White Hair 8", "niceName": "Castanic Male White Hair 8"}, "servers": ["https://raw.githubusercontent.com/RavenMods/Castanic-Male-White-Hair/master/"]}, {"disableAutoUpdate": false, "name": "Elin-Brighter-New-Hairstyles", "category": "client", "description": "Makes the new Elin hairstyles appear whiter, and brighter. Perfect for those who want light colored hairs", "author": "Panty", "options": {"guiName": "Special: Elin Brighter New Hairstyles", "niceName": "Elin Brighter New Hairstyles"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-special-mods/master/Elin%20Brighter%20New%20Hairstyles/"]}, {"disableAutoUpdate": false, "name": "Elin-Matching-Ears-and-Tails-Remaster", "category": "client", "description": "Elin's ears and tails now match the color of the selected hair ! Remastered edits for better visuals", "author": "Panty", "options": {"guiName": "Special: Elin Matching Ears and Tails Remaster", "niceName": "Elin Matching Ears and Tails Remaster"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-special-mods/master/Elin%20Matching%20Ears%20and%20Tails%20Remaster/"]}, {"disableAutoUpdate": false, "name": "Elin-Prettier-Skin", "category": "client", "description": "Smoothes the skin of Elins, removing that dirty rustic look on knees and elbows. Adds white painted fingernails", "author": "Panty", "options": {"guiName": "Special: Elin Prettier Skin", "niceName": "Elin Prettier Skin"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-special-mods/master/Elin%20Prettier%20Skin/"]}, {"disableAutoUpdate": false, "name": "Fairy-Stump-Mount", "category": "client", "description": "Erases the black beetle from the mount, allowing the player to float mid-air on a cute tree stump", "author": "Panty", "options": {"guiName": "Special: Fairy Stump Mount", "niceName": "Fairy Stump Mount"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-special-mods/master/Fairy%20Stump%20Mount/"]}, {"disableAutoUpdate": false, "name": "Flying-Pink-Cushion-Mount", "category": "client", "description": "Removes the magic carpet from the Flying Carpet mount and leaves you with a simple pink cushion flying mid-air", "author": "Panty", "options": {"guiName": "Special: Flying Pink Cushion Mount", "niceName": "Flying Pink Cushion Mount"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-special-mods/master/Flying%20Pink%20Cushion%20Mount/"]}, {"disableAutoUpdate": false, "name": "Pink-Fishie-Set", "category": "client", "description": "Makes all the fishing poles and fishing floats into a pale pink", "author": "Panty", "options": {"guiName": "Special: Pink Fishie Set", "niceName": "Pink Fishie Set"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-special-mods/master/Pink%20Fishie%20Set/"]}, {"disableAutoUpdate": false, "name": "Pink-Royal-Diamond-Dragon-Mount", "category": "client", "description": "Makes the Royal Diamond dragon have pink armor and pink accents to its diamond scales", "author": "Panty", "options": {"guiName": "Special: Pink Royal Diamond Dragon Mount", "niceName": "Pink Royal Diamond Dragon Mount"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-special-mods/master/Pink%20Royal%20Diamond%20Dragon%20Mount/"]}, {"disableAutoUpdate": false, "name": "Talents-Info", "author": "Owyn", "description": "Shows EP EXP gains and your daily cap (89% of it)", "options": {"niceName": "Talents", "guiName": "Talents Info"}, "servers": ["https://raw.githubusercontent.com/Owyn/talents_info/master/"], "supportUrl": "https://github.com/Owyn/talents_info/issues"}, {"servers": ["https://raw.githubusercontent.com/Foglio1024/tcc-toolbox-release/master/"], "supportUrl": "https://github.com/Foglio1024/Tera-Custom-Cooldowns/issues", "name": "TCC", "author": "Foglio", "description": "UI replacement with some extra features.", "disableAutoUpdate": false, "category": "client", "options": {"niceName": "TCC", "guiName": "TCC (TERA Custom Cooldowns)"}, "dependencies": {"ttb-interface-control": "https://raw.githubusercontent.com/Foglio1024/ttb-interface/master/ttb-interface-control/module.json", "ttb-interface-data": "https://raw.githubusercontent.com/Foglio1024/ttb-interface/master/ttb-interface-data/module.json", "tcc-stub": "https://raw.githubusercontent.com/Foglio1024/tcc-stub/master/module.json"}}, {"disableAutoUpdate": false, "name": "Teabagger", "author": "TeraProxy", "description": "A tera-proxy module that lets you teabag people. Why bm?", "version": "1.2.5", "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=A3KBZUCSEQ5RJ", "options": {"niceName": "Tbag", "guiName": "Teabagger"}, "servers": ["https://raw.githubusercontent.com/TeraProxy/Teabagger/master/"], "supportUrl": "https://github.com/TeraProxy/Teabagger/issues", "dependencies": {"tera-game-state": "https://raw.githubusercontent.com/caali-hackerman/tera-game-state/master/module.json"}}, {"servers": ["https://raw.githubusercontent.com/Kaseaa/tera-guide/master/"], "supportUrl": "https://github.com/Kaseaa/tera-guide/issues", "name": "tera-guide", "author": "Kasea", "dependencies": {"library": "https://raw.githubusercontent.com/Kaseaa/library/master/module.json"}, "options": {"guiName": "Tera Guide"}, "description": "Guides you in Tera"}, {"disableAutoUpdate": false, "name": "Thinkblob", "category": "client", "description": "Changes King Blob face to thinking emote.", "author": "Foglio", "servers": ["https://raw.githubusercontent.com/Foglio1024/toolbox-client-mods/master/thinkblob/"]}, {"disableAutoUpdate": false, "name": "Translate", "author": "HakuryuuDom / teralove", "version": "1.5", "description": "Translates incoming and outgoing messages to another language using Google Translate.", "options": {"niceName": "Translate", "settingsVersion": 2, "settingsFile": "config.json", "settingsMigrator": "setting_migration.js"}, "servers": ["https://raw.githubusercontent.com/Pravv/translate-chat/master/"]}, {"name": "true-everful-nostrum", "author": "Caali", "description": "Ensures that your Elite/Tera Club Everful Nostrum/Noctenium is up 100% of the time. Complete rewrite of Pinkie Pie's original mod.", "version": "2.1", "options": {"niceName": "TEN", "guiName": "True Everful Nostrum", "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/tera-toolbox-mods/true-everful-nostrum/master/"]}, {"disableAutoUpdate": false, "name": "Tuwanguide", "author": "Snug", "description": "Calls out the colors for the Tuwangi minigame/guardian mission in proxy chat to make things a lot easier", "version": "1.0", "servers": ["https://raw.githubusercontent.com/Snugglez/Tuwanguide/master/"], "supportUrl": "https://github.com/Snugglez/Tuwanguide/blob/master/README.md"}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "remove-BossWindow", "category": "client", "author": "Yang", "options": {"guiName": "UI Remover: Boss Window", "niceName": "UI Remover: Boss Window"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_BossWindow/"], "description": "Description goes here."}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "remove-Buffs", "category": "client", "author": "Yang", "options": {"guiName": "UI Remover: Buff Window", "niceName": "UI Remover: Buff Window"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_BuffsWindow/"], "description": "Description goes here."}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "remove-CharacterWindow", "category": "client", "author": "Yang", "options": {"guiName": "UI Remover: Character Window", "niceName": "UI Remover: Character Window"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_CharacterWindow/"], "description": "Description goes here."}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "remove-PartyRaidWindow", "category": "client", "author": "Yang", "options": {"guiName": "UI Remover: Chat Window", "niceName": "UI Remover: Chat Window"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_ChatWindow/"], "description": "Description goes here."}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "remove-FlightGauge", "category": "client", "author": "Yang", "options": {"guiName": "UI Remover: Flight Gauge Window", "niceName": "UI Remover: Flight Gauge Window"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_FlightGauge/"], "description": "Description goes here."}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "remove-LFG window", "category": "client", "author": "Yang", "options": {"guiName": "UI Remover: LFG Window", "niceName": "UI Remover: LFG Window"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_LfgWindow/"], "description": "Description goes here."}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "remove-PartyWindow", "category": "client", "author": "Yang", "options": {"guiName": "UI Remover: Party Window", "niceName": "UI Remover: Party Window"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_PartyWindow/"], "description": "Description goes here."}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "remove-QuestTask", "category": "client", "author": "Yang", "options": {"guiName": "UI Remover: Quest Tracker Window", "niceName": "UI Remover: Quest Tracker Window"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_QuestTracker/"], "description": "Description goes here."}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "remove-RaidWindow", "category": "client", "author": "Yang", "options": {"guiName": "UI Remover: Raid Window", "niceName": "UI Remover: Raid Window"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_RaidWindow/"], "description": "Description goes here."}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "remove-TeraRewards", "category": "client", "author": "Yang", "options": {"guiName": "UI Remover: Tera Rewards Window", "niceName": "UI Remover: Tera Rewards Window"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_TeraRewards/"], "description": "Description goes here."}, {"name": "Black-and-Red-Main-Menu", "category": "client", "description": "Turns your main menu icons black/ dark gray with a red glow and red hovering effect.", "author": "Raven", "options": {"guiName": "UI: Black and Red Main Menu", "niceName": "Black and Red Main Menu"}, "servers": ["https://raw.githubusercontent.com/RavenMods/Black-and-Red-Main-Menu/master/"]}, {"disableAutoUpdate": false, "name": "Cute-Crafter-Icons", "category": "client", "description": "Changes mastercraft icons into potted plants, cherries, hearts, cupcakes, and pink crosses", "author": "Panty", "options": {"guiName": "UI: Cute Crafter Icons", "niceName": "Cute Crafter Icons"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Cute%20Crafter%20Icons/"]}, {"disableAutoUpdate": false, "name": "Hana-Reward-Tier", "category": "client", "description": "Changes reward tier icon to a pink flower and makes the elite/founder/event symbols more minimalist", "author": "Panty", "options": {"guiName": "UI: Hana Reward Tier", "niceName": "Hana Reward Tier"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Hana%20Reward%20Tier/"]}, {"disableAutoUpdate": false, "name": "Pink-Boss-HP-Bar", "category": "client", "description": "Changes boss HP bars into varying shades of pink", "author": "Panty", "options": {"guiName": "UI: Pink Boss HP Bar", "niceName": "Pink Boss HP Bar"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Pink%20Boss%20HP%20Bar/"]}, {"disableAutoUpdate": false, "name": "Pink-Chat-Window", "category": "client", "description": "Chat window is now pastel pink", "author": "Panty", "options": {"guiName": "UI: Pink Chat Window", "niceName": "Pink Chat Window"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Pink%20Chat%20Window/"]}, {"disableAutoUpdate": false, "name": "Pink-Controller-UI", "category": "client", "description": "Removes old controller overlay; adds pink, easy to see button displays", "author": "Panty", "options": {"guiName": "UI: Pink Controller UI", "niceName": "Pink Controller UI"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Pink%20Controller%20UI/"]}, {"disableAutoUpdate": false, "name": "Pink-Exp-Bar", "category": "client", "description": "Your Exp Bar now fills up in pink", "author": "Panty", "options": {"guiName": "UI: Pink Exp Bar", "niceName": "Pink Exp Bar"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Pink%20Exp%20Bar/"]}, {"disableAutoUpdate": false, "name": "Pink-Heart-HP-MP", "category": "client", "description": "Removes HP/MP background, recolors HP to pink and MP to blue, makes laurels more simplified, changes the background of class icon to a cute magical girl pink heart", "author": "Panty", "options": {"guiName": "UI: Pink Heart HP MP", "niceName": "Pink Heart HP MP"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Pink%20Heart%20HP%20MP/"]}, {"disableAutoUpdate": false, "name": "Pink-Hearts-Crosshair", "category": "client", "description": "Adds pastel pink hearts all over your crosshair", "author": "Panty", "options": {"guiName": "UI: Pink Hearts Crosshair", "niceName": "Pink Hearts Crosshair"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Pink%20Hearts%20Crosshair/"]}, {"disableAutoUpdate": false, "name": "Pink-Main-Menu", "category": "client", "description": "Turns your menu pink ! Notifications are pastel blue", "author": "Panty", "options": {"guiName": "UI: Pink Main Menu", "niceName": "Pink Main Menu"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Pink%20Main%20Menu/"]}, {"disableAutoUpdate": false, "name": "Pink-Party-Member-HP-Bar", "category": "client", "description": "Changes the blue HP bar over your teammate's head to pink", "author": "Panty", "options": {"guiName": "UI: Pink Party Member HP Bar", "niceName": "Pink Party Member HP Bar"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Pink%20Party%20Member%20HP%20Bar/"]}, {"disableAutoUpdate": false, "name": "Pink-Skill-Slots", "category": "client", "description": "Pastel pink skill tray", "author": "Panty", "options": {"guiName": "UI: Pink Skill Slots", "niceName": "Pink Skill Slots"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Pink%20Skill%20Slots/"]}, {"name": "Red-and-Gray-HP-Bar-Persona-5-inspired", "category": "client", "description": "Custom HP/MP bar, laurel, class window, animations and red icon accents.", "author": "Raven", "options": {"guiName": "UI: Red and Gray HP Bar Persona 5", "niceName": "Red and Gray HP Bar Persona 5 inspired"}, "servers": ["https://raw.githubusercontent.com/RavenMods/Red-and-Gray-HP-Bar-Persona-5-inspired/master/"], "disableAutoUpdate": false}, {"name": "Red-and-Gray-Party-Window-Persona-5-inspired", "category": "client", "description": "Custom HP/MP bars, laurels, combat icon and stun/debuff effect. All accents are in red.", "author": "Raven", "options": {"guiName": "UI: Red and Gray Party Window Persona 5", "niceName": "Red and Gray Party Window Persona 5 inspired"}, "servers": ["https://raw.githubusercontent.com/RavenMods/Red-and-Gray-Party-Window-Persona-5-inspired/master/"]}, {"name": "Red-EXP-bar-Green-rested-EXP-bar", "category": "client", "description": "Turns the EXP bar red and rested EXP light green.", "author": "Raven", "options": {"guiName": "UI: Red EXP bar and Green rested EXP bar", "niceName": "Red EXP bar and Green rested EXP bar"}, "servers": ["https://raw.githubusercontent.com/RavenMods/Red-EXP-bar-Green-rested-EXP-bar/master/"]}, {"name": "Red-HP-Bar-for-party-members-Persona-5-inspired", "category": "client", "description": "Turns party HP bars red, light green stun/debuff effect and dark gray for enemy players.", "author": "Raven", "options": {"guiName": "UI: Red HP Bar for party members Persona 5", "niceName": "Red HP Bar for party members Persona 5 inspired"}, "servers": ["https://raw.githubusercontent.com/RavenMods/Red-HP-Bar-for-party-members-Persona-5-inspired/master/"]}, {"disableAutoUpdate": false, "name": "Simplified-Pastel-UI", "category": "client", "description": "For latest patch, pastel recolors of UI that allows stackable HP/MP. Removes backgrounds from HP/MP and class icon.", "author": "Panty", "options": {"guiName": "UI: Simplified Pastel UI", "niceName": "Simplified Pastel UI"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Simplified%20Pastel%20UI/"]}, {"disableAutoUpdate": false, "name": "Static-Heart-Crosshair", "category": "client", "description": "Changes your crosshair to a static, minimalistic pink heart crosshair", "author": "Panty", "options": {"guiName": "UI: Static Heart Crosshair", "niceName": "Static Heart Crosshair"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Static%20Heart%20Crosshair/"]}, {"disableAutoUpdate": false, "name": "Yunicorn-Defense-Pop-Up", "category": "client", "description": "Changes your evade, retribution, and block images to a cute yunicorn(LINE) sticker", "author": "Panty", "options": {"guiName": "UI: Yunicorn Defense Pop Up", "niceName": "Yunicorn Defense Pop Up"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Yunicorn%20Defense%20Pop%20Up/"]}, {"disableAutoUpdate": false, "options": {"guiName": "Unicast", "niceName": "Unicast"}, "servers": ["http://144.217.242.90:8080/unicast/"], "supportUrl": "https://discord.gg/7PfQfD8", "dependencies": {"ui": "https://raw.githubusercontent.com/HakuryuuDom/ui/master/module.json"}, "name": "unicast", "author": "FR\u00dcT & P\u00c5NT", "description": "Costume and appareance changer with in-game UI. Video: https://youtu.be/wzrTrbYx2mA Discord: https://discord.gg/7PfQfD8"}, {"disableAutoUpdate": false, "servers": ["https://raw.githubusercontent.com/Mister-Kay/unmount-fix/master/"], "supportUrl": "https://github.com/Mister-Kay/unmount-fix/issues", "name": "unmount-fix", "author": "Mister-Kay", "description": "Fix accidental dismounting immediately after mounting."}, {"disableAutoUpdate": false, "name": "Vanguardian", "author": "TeraProxy", "description": "A tera-proxy module that automatically finishes Vanguard Initiative quests on completion and gives you a report about how many quests you already finished today.", "version": "1.3.0", "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=A3KBZUCSEQ5RJ", "options": {"niceName": "VG", "guiName": "Vanguardian", "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/TeraProxy/Vanguardian/master/"], "supportUrl": "https://github.com/TeraProxy/Vanguardian/issues", "conflicts": ["auto-vanguard"], "dependencies": {"tera-game-state": "https://raw.githubusercontent.com/caali-hackerman/tera-game-state/master/module.json"}}, {"disableAutoUpdate": false, "name": "Archer-Pink-Slingshot", "category": "client", "description": "This mod makes the pink and blue Archer slingshot all pink instead", "author": "Panty", "options": {"guiName": "Weapon: Archer Pink Slingshot", "niceName": "Archer Pink Slingshot"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-weapon-mods/master/Archer%20Pink%20Slingshot/"]}, {"disableAutoUpdate": false, "name": "Berserker-Dessert-Fork", "category": "client", "description": "Turns the onigiri fork into a small cute pink dessert fork", "author": "Panty", "options": {"guiName": "Weapon: Berserker Dessert Fork", "niceName": "Berserker Dessert Fork"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-weapon-mods/master/Berserker%20Dessert%20Fork/"]}, {"disableAutoUpdate": false, "name": "MultiClass-Just-Plasma", "category": "client", "description": "Removes the metal from the chromaplasm weapon skin, leaving just the plasma. For Archer, Slayer, Ninja, Warrior, Priest", "author": "Panty", "options": {"guiName": "Weapon: MultiClass Just Plasma", "niceName": "MultiClass Just Plasma"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-weapon-mods/master/MultiClass%20Just%20Plasma/"]}, {"disableAutoUpdate": false, "name": "Mystic-Iceglow-Rod", "category": "client", "description": "Removes the gray rocks on the Icegrip(Rare) weapon skin and brightens the blues", "author": "Panty", "options": {"guiName": "Weapon: Mystic Iceglow Rod", "niceName": "Mystic Iceglow Rod"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-weapon-mods/master/Mystic%20Iceglow%20Rod/"]}, {"disableAutoUpdate": false, "name": "Mystic-Ninja-Oni-Removal", "category": "client", "description": "Removes the multi-oni face on the Mystic Nightfall(Rare) weapon skin", "author": "Panty", "options": {"guiName": "Weapon: Mystic Ninja Oni Removal", "niceName": "Mystic Ninja Oni Removal"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-weapon-mods/master/Mystic%20Ninja%20Oni%20Removal/"]}, {"disableAutoUpdate": false, "name": "Mystic-Pale-Pink-Princess-Wand", "category": "client", "description": "Makes the fuschia pink princess wand be pale pink instead", "author": "Panty", "options": {"guiName": "Weapon: Mystic Pale Pink Princess Wand", "niceName": "Mystic Pale Pink Princess Wand"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-weapon-mods/master/Mystic%20Pale%20Pink%20Princess%20Wand/"]}, {"disableAutoUpdate": false, "name": "Mystic-Strawberry-Nuthatch", "category": "client", "description": "On Mystic nuthatch weapon skin, turns the ugly acorn into an ugly strawberry", "author": "Panty", "options": {"guiName": "Weapon: Mystic Strawberry Nuthatch", "niceName": "Mystic Strawberry Nuthatch"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-weapon-mods/master/Mystic%20Strawberry%20Nuthatch/"]}, {"disableAutoUpdate": false, "name": "Ninja-Pink-Prop-Fan", "category": "client", "description": "Makes the ninja wacky weapon skin pink", "author": "Panty", "options": {"guiName": "Weapon: Ninja Pink Prop Fan", "niceName": "Ninja Pink Prop Fan"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-weapon-mods/master/Ninja%20Pink%20Prop%20Fan/"]}, {"disableAutoUpdate": false, "name": "Priest-Iceglow-Staff", "category": "client", "description": "Removes gray rocks on Icegrip(Rare) weapon skin and brightens the blues", "author": "Panty", "options": {"guiName": "Weapon: Priest Iceglow Staff", "niceName": "Priest Iceglow Staff"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-weapon-mods/master/Priest%20Iceglow%20Staff/"]}, {"disableAutoUpdate": false, "name": "Sorcerer-Gloomy-Bear-Patches", "category": "client", "description": "Turns stitched Mr Patches into a smooth and pink Gloomy Bear for Sorcerer Mister Patches weapon skin", "author": "Panty", "options": {"guiName": "Weapon: Sorcerer Gloomy Bear Patches", "niceName": "Sorcerer Gloomy Bear Patches"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-weapon-mods/master/Sorcerer%20Gloomy%20Bear%20Patches/"]}] \ No newline at end of file +[{"disableAutoUpdate": false, "name": "AA-Guide", "author": "Owyn", "description": "Antaroth\u2019s Abyss guide for 3rd boss", "options": {"niceName": "AA-Guide"}, "servers": ["https://raw.githubusercontent.com/Owyn/aaguide/master/"], "supportUrl": "https://github.com/Owyn/aaguide/issues"}, {"disableAutoUpdate": false, "name": "Achievements-Master", "author": "Owyn", "description": "Tracks achievements progress", "options": {"niceName": "A", "guiName": "Achievements Master"}, "servers": ["https://raw.githubusercontent.com/Owyn/Achievements/master/"], "supportUrl": "https://github.com/Owyn/Achievements/issues"}, {"disableAutoUpdate": false, "name": "AFKer", "author": "Owyn", "description": "AFK check will not kick you out of the game after 1h", "options": {"niceName": "AFKer", "guiName": "AFKer", "reloadable": true, "settingsVersion": 81.3, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/Owyn/AFKer/master/"], "supportUrl": "https://github.com/Owyn/AFKer/issues", "packets": {"C_PLAYER_LOCATION": 5, "C_RETURN_TO_LOBBY": "raw"}}, {"disableAutoUpdate": false, "disabled": false, "name": "anti-bodyblock", "author": "Fruit", "description": "Removes allies bodyblock in dungeons.", "version": "1.0", "servers": ["https://raw.githubusercontent.com/soler91/Anti-Bodyblock/master/"], "options": {"niceName": "Anti Bodyblock", "guiName": "Anti Bodyblock"}}, {"disableAutoUpdate": false, "servers": ["https://raw.githubusercontent.com/Mister-Kay/arun-breath-fix/master/"], "supportUrl": "https://github.com/Mister-Kay/arun-breath-fix/issues", "name": "arun-breath-fix", "author": "Mister-Kay", "description": "Show heal from Arun's Breath (Titanic Favor or Boomerang Pulse inside Warding Totem range) when playing mystic."}, {"disableAutoUpdate": false, "servers": ["https://raw.githubusercontent.com/Mister-Kay/aura-range/master/"], "supportUrl": "https://github.com/Mister-Kay/aura-range/issues", "name": "aura-range", "author": "Mister-Kay", "description": "Apply a visual effect on party members that have mystic auras when playing as mystic or manually enabled."}, {"author": "seraphinush . teralove", "description": "tera-toolbox module to unlock maximum viewing distance", "disableAutoUpdate": false, "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=B7QQJZV9L5P2J&source=url", "name": "auto-camera", "options": {"reloadable": false, "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "settings.js"}, "servers": ["https://raw.githubusercontent.com/ylennia-archives/auto-camera/master/"], "supportUrl": "https://github.com/ylennia-archives/auto-camera/blob/master/README.md", "version": "2.01.00"}, {"disableAutoUpdate": false, "name": "auto-cutscene", "author": "Tsunpot/Baldera-Mods", "description": "Automatically cancels all cutscene movies", "supportUrl": "https://github.com/tsunpot/auto-cutscene-skip", "servers": ["https://raw.githubusercontent.com/tsunpot/auto-cutscene-skip/master/"]}, {"author": "seraphinush . Saegusae", "conflict": ["loot", "reserve-loot"], "description": "tera-toolbox module to loot items automatically", "disableAutoUpdate": false, "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=B7QQJZV9L5P2J&source=url", "name": "auto-loot-old", "options": {"niceName": "auto-loot", "reloadable": true, "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "settings.js"}, "servers": ["https://raw.githubusercontent.com/ylennia-archives/auto-loot-old/master/"], "supportUrl": "https://github.com/ylennia-archives/auto-loot-old/blob/master/README.md", "version": "1.45.07"}, {"author": "seraphinush . baldera-mods", "conflicts": ["vanguardian"], "description": "tera-toolbox module to automatically turn in Vanguard Requests upon completion", "disableAutoUpdate": false, "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=B7QQJZV9L5P2J&source=url", "name": "auto-vanguard", "options": {"reloadable": true, "settingsVersion": 3, "settingsFile": "config.json", "settingsMigrator": "settings.js"}, "servers": ["https://raw.githubusercontent.com/seraphinush-gaming/auto-vanguard/master/"], "supportUrl": "https://github.com/seraphinush-gaming/auto-vanguard/blob/master/README.md", "version": "3.00.0b"}, {"disableAutoUpdate": false, "name": "Baharr-Guide", "author": "ZC", "description": "Bahaar's Sanctum - Guide", "options": {"niceName": "Baharr", "guiName": "Baharr-Guide"}, "servers": ["https://raw.githubusercontent.com/Owyn/Bahaar-Guide/master/"], "supportUrl": "https://github.com/Owyn/Bahaar-Guide/issues"}, {"disableAutoUpdate": false, "name": "Bathysmal-rise-guide", "author": "Yang", "description": "BR guide for all bosses", "options": {"niceName": "Bathysmal-Guide"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/bathysmal-guide/master/"], "supportUrl": "https://github.com/DeathDefying/bathysmal-guide/issues"}, {"disableAutoUpdate": false, "name": "battle-notify", "author": "Caali / wuaw", "description": "Shows text notifications on configurable in-game events", "version": "1.0", "servers": ["https://raw.githubusercontent.com/tera-toolbox-mods/battle-notify/master/"], "options": {"niceName": "BattleNotify"}}, {"disableAutoUpdate": false, "name": "block-level-1-whispers", "author": "Owyn", "description": "Hides whispers from level 1 characters ", "options": {"niceName": "block-level-1-whispers", "guiName": "block-level-1-whispers"}, "servers": ["https://raw.githubusercontent.com/Owyn/block-level-1-whispers/master/"], "supportUrl": "https://github.com/Owyn/block-level-1-whispers/issues"}, {"author": "seraphinush", "description": "tera-proxy module to globalize block list across a server", "disableAutoUpdate": false, "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=B7QQJZV9L5P2J&source=url", "name": "block-list", "options": {"reloadable": true}, "servers": ["https://raw.githubusercontent.com/seraphinush-gaming/block-list/master/"], "supportUrl": "https://github.com/seraphinush-gaming/block-list/blob/master/README.md", "version": "1.07.00"}, {"disableAutoUpdate": false, "servers": ["https://raw.githubusercontent.com/Mister-Kay/boss-ping-remover/master/"], "supportUrl": "https://github.com/Mister-Kay/boss-ping-remover/issues", "name": "boss-ping-remover", "author": "Mister-Kay", "description": "Makes the bosses attacks match up with servers."}, {"name": "bugfix", "author": "Caali / Pinkie Pie", "description": "Collection of mods that fix some of the most severe client bugs in TERA.", "version": "1.0", "options": {"niceName": "Bugfix"}, "servers": ["https://raw.githubusercontent.com/tera-toolbox-mods/bugfix/master/"], "conflicts": ["swim-fix", "chat-sanitizer"]}, {"name": "CaaliLogger", "author": "Caali", "description": "Collect and upload anonymized data while playing in order to support my development projects.", "version": "38.0", "servers": ["https://raw.githubusercontent.com/caali-hackerman/data-logger/master/update/CaaliLogger/"], "dependencies": {"CaaliStateTracker": "https://raw.githubusercontent.com/caali-hackerman/data-logger/master/update/CaaliStateTracker/module.json"}}, {"name": "CaaliStateTracker", "author": "Caali", "description": "Helper module for CaaliLogger", "version": "37.0", "servers": ["https://raw.githubusercontent.com/caali-hackerman/data-logger/master/update/CaaliStateTracker/"]}, {"disableAutoUpdate": false, "name": "Clean character bar", "category": "client", "author": "SaltyMonkey", "options": {"guiName": "Clean character bar", "niceName": "Clean character bar"}, "servers": ["https://raw.githubusercontent.com/SaltyMonkey/tera-online-clean-character-bar/master/"]}, {"disableAutoUpdate": false, "name": "Clear onscreen messages", "category": "client", "author": "SaltyMonkey", "options": {"guiName": "Clear screen", "niceName": "Clear screen"}, "servers": ["https://raw.githubusercontent.com/SaltyMonkey/tera-online-clean-onscreen-messages/master/"]}, {"disableAutoUpdate": false, "name": "Generic-GPK-Loader", "category": "client", "description": "Loads any GPK(s) through Tera-Toolbox.\nStart Toolbox, then place GPK files in [toolbox]\\mods\\Generic-GPK-Loader\\Put-GPKs-Here", "author": "HakuryuuDom", "options": {"guiName": "Client: Generic GPK Loader", "niceName": "GPK Loader"}, "servers": ["https://raw.githubusercontent.com/HakuryuuDom/generic-gpk-loader/master/"]}, {"disableAutoUpdate": false, "name": "Timestamps", "category": "client", "conflicts": ["FPS-Pack"], "description": "Timestamps in chat, if you want to disable timestamping in some particular tab - add \"!\" to it's name.", "author": "Gl0", "options": {"guiName": "Client: Timestamps", "niceName": "Timestamps"}, "servers": ["https://raw.githubusercontent.com/Gl0/TeraTimeStamps/master/"]}, {"disableAutoUpdate": false, "name": "chat-mememizer", "author": "SaltyMonkey", "description": "Bored? Global chat useless again? This module for you!", "options": {"niceName": "CM"}, "servers": ["https://raw.githubusercontent.com/SaltyMonkey/chat-mememizer/master/"], "supportUrl": "https://github.com/SaltyMonkey/chat-mememizer/issues"}, {"disableAutoUpdate": false, "disabled": false, "name": "colorful-whispers", "author": "Leyki, TerableCoder", "version": 1.1, "description": "Customize the color of whispers to your own desire based on context.", "options": {"niceName": "Colorful Whispers", "guiName": "Colorful Whispers", "settingsVersion": 1, "settingsFile": "settings.json", "settingsMigrator": "lib/settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/Leyki/tera-colorful-whispers/master/"]}, {"name": "Nier-Automata-2B-Mod-for-Elin", "category": "client", "description": "Complete Nier: Automata 2B outfit for Elin. Required costume: Dyeable Chambermaid, head accessory: Lil\u2019 Devil Horns, face: Tortoise-Shell Brow Glasses.", "author": "Raven", "options": {"guiName": "Costume pack: Nier Automata 2B Mod for Elin", "niceName": "Nier: Automata 2B Mod for Elin"}, "servers": ["https://raw.githubusercontent.com/RavenMods/Nier-Automata-2B-Mod-for-Elin/master/"]}, {"disableAutoUpdate": false, "name": "Better-Dyeable-Flight-Suit", "category": "client", "description": "Changes the yellow bits into dyeable bits. Females only", "author": "Panty", "options": {"guiName": "Costume: Better Dyeable Flight Suit", "niceName": "Better Dyeable Flight Suit"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Better%20Dyeable%20Flight%20Suit/"]}, {"name": "Full-Black-Parthian-Scarf", "category": "client", "description": "This mod removes the white writing on the right side of the mask making it full black.", "author": "Raven", "options": {"guiName": "Costume: Black Parthian Scarf", "niceName": "Black Parthian Scarf"}, "servers": ["https://raw.githubusercontent.com/RavenMods/Full-Black-Parthian-Scarf/master/"]}, {"name": "Black-PUBG-Costume-for-males", "category": "client", "description": "This mod will change the appearance of the PUBG event costume, making it full black with red accents.", "author": "Raven", "options": {"guiName": "Costume: Black PUGB Costume", "niceName": "Black PUGB Costume"}, "servers": ["https://raw.githubusercontent.com/RavenMods/Black-PUBG-Costume-for-males/master/"]}, {"disableAutoUpdate": false, "name": "Castanic-Sleepy-Running-Togs", "category": "client", "description": "Makes the Red Running Togs for Castanics be pale pink have some mish-mashed cutesie designs on it", "author": "Panty", "options": {"guiName": "Costume: Castanic Sleepy Running Togs", "niceName": "Castanic Sleepy Running Togs"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Castanic%20Sleepy%20Running%20Togs/"]}, {"disableAutoUpdate": false, "name": "Charcoal-Eldritch-No-Skirt", "category": "client", "description": "Removes skirt on Elin Charcoal/Ivory Uniform", "author": "Panty", "options": {"guiName": "Costume: Charcoal Eldritch No Skirt", "niceName": "Charcoal Eldritch No Skirt"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Charcoal%20Eldritch%20No%20Skirt/"]}, {"disableAutoUpdate": false, "name": "Cheerleader-Shorts", "category": "client", "description": "Dyeable Cheerleader skirt turns into shorts", "author": "Panty", "options": {"guiName": "Costume: Cheerleader Shorts", "niceName": "Cheerleader Shorts"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Cheerleader%20Shorts/"]}, {"disableAutoUpdate": false, "name": "Dyeable-Housekeeper-Fix", "category": "client", "description": "Dyeable Housekeeper changed to have dyeable bows, and shoe soles; also makes panties white instead of black.", "author": "Panty", "options": {"guiName": "Costume: Dyeable Housekeeper Fix", "niceName": "Dyeable Housekeeper Fix"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Dyeable%20Housekeeper%20Fix/"]}, {"disableAutoUpdate": false, "name": "Elin-Black-Business-Suit", "category": "client", "description": "Makes the sleeves on the Elin Business Suit black to match", "author": "Panty", "options": {"guiName": "Costume: Elin Black Business Suit", "niceName": "Elin Black Business Suit"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Elin%20Black%20Business%20Suit/"]}, {"disableAutoUpdate": false, "name": "Elin-Dyeable-Raincoat-Match", "category": "client", "description": "Dyeable Elin Raincoat changes to be fully dyeable and not have green-plaid; whites are also lightened to not be dark gray.", "author": "Panty", "options": {"guiName": "Costume: Elin Dyeable Raincoat Match", "niceName": "Elin Dyeable Raincoat Match"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Elin%20Dyeable%20Raincoat%20Match/"]}, {"disableAutoUpdate": false, "name": "Elin-English-Lavender-Raincoat", "category": "client", "description": "Makes the Elin Raincoat be a soft lavender with black accents", "author": "Panty", "options": {"guiName": "Costume: Elin English Lavender Raincoat", "niceName": "Elin English Lavender Raincoat"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Elin%20English%20Lavender%20Raincoat/"]}, {"disableAutoUpdate": false, "name": "Elin-Pale-Writer-Shoes-and-Socks-Fix", "category": "client", "description": "Makes socks white and lets the shoes be dyeable on Pale Writer", "author": "Panty", "options": {"guiName": "Costume: Elin Pale Writer Shoes and Socks Fix", "niceName": "Elin Pale Writer Shoes and Socks Fix"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Elin%20Pale%20Writer%20Shoes%20and%20Socks%20Fix/"]}, {"disableAutoUpdate": false, "name": "Elin-Pink-Social-Dress", "category": "client", "description": "Changes the green Ice Cream Social dress to be pink", "author": "Panty", "options": {"guiName": "Costume: Elin Pink Social Dress", "niceName": "Elin Pink Social Dress"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Elin%20Pink%20Social%20Dress/"]}, {"disableAutoUpdate": false, "name": "Elin-Rose-Gold-Raincoat", "category": "client", "description": "Makes the Elin Raincoat a rose gold with black accents", "author": "Panty", "options": {"guiName": "Costume: Elin Rose Gold Raincoat", "niceName": "Elin Rose Gold Raincoat"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Elin%20Rose%20Gold%20Raincoat/"]}, {"disableAutoUpdate": false, "name": "Elin-Strawberry-Maid", "category": "client", "description": "Turns the brown Elin 2017 Maid Costume into pink with a cute plaid heart pattern on the stockings and dress.", "author": "Panty", "options": {"guiName": "Costume: Elin Strawberry Maid", "niceName": "Elin Strawberry Maid"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Elin%20Strawberry%20Maid/"]}, {"disableAutoUpdate": false, "name": "Elin-Sugar-Alice", "category": "client", "description": "Turns the St. Patrick's Day Clover Costume into a pastel pink dress with pink accents and a heart on the apron", "author": "Panty", "options": {"guiName": "Costume: Elin Sugar Alice", "niceName": "Elin Sugar Alice"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Elin%20Sugar%20Alice/"]}, {"disableAutoUpdate": false, "name": "Elin-Whiter-Dyeable-Ice-Cream-Social", "category": "client", "description": "Makes the outfit much brighter and less gray", "author": "Panty", "options": {"guiName": "Costume: Elin Whiter Dyeable Ice Cream Social", "niceName": "Elin Whiter Dyeable Ice Cream Social"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Elin%20Whiter%20Dyeable%20Ice%20Cream%20Social/"]}, {"disableAutoUpdate": false, "name": "Elin-Whiter-Dyeable-Raincoat-Accents", "category": "client", "description": "Makes the accents on the Elin Dyeable Raincoat more bright white", "author": "Panty", "options": {"guiName": "Costume: Elin Whiter Dyeable Raincoat Accents", "niceName": "Elin Whiter Dyeable Raincoat Accents"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Elin%20Whiter%20Dyeable%20Raincoat%20Accents/"]}, {"name": "Full-Black-PUBG-Costume", "category": "client", "description": "This mod will change the appearance of the PUBG event costume, making it full black.", "author": "Raven", "options": {"guiName": "Costume: Full Black PUBG Costume", "niceName": "Full Black PUBG Costume"}, "servers": ["https://raw.githubusercontent.com/RavenMods/Full-Black-PUBG-Costume/master/"]}, {"disableAutoUpdate": false, "name": "Ice-Cream-Social-Dyeable-Shoes-and-Black-Pantyhose", "category": "client", "description": "Ice Cream Social dress changed to have Dyeable Shoes", "author": "Panty", "options": {"guiName": "Costume: Ice Cream Social Dyeable Shoes and Black Pantyhose", "niceName": "Ice Cream Social Dyeable Shoes and Black Pantyhose"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Ice%20Cream%20Social%20Dyeable%20Shoes%20and%20Black%20Pantyhose/"]}, {"disableAutoUpdate": false, "name": "Ice-Cream-Social-Dyeable-Shoes-and-White-Pantyhose", "category": "client", "description": "Ice Cream Social dress changed to have Dyeable Shoes and white pantyhose instead of black", "author": "Panty", "options": {"guiName": "Costume: Ice Cream Social Dyeable Shoes and White Pantyhose", "niceName": "Ice Cream Social Dyeable Shoes and White Pantyhose"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Ice%20Cream%20Social%20Dyeable%20Shoes%20and%20White%20Pantyhose/"]}, {"disableAutoUpdate": false, "name": "Ice-Cream-Social-White-Pantyhose", "category": "client", "description": "Ice Cream Social dress changed to have white pantyhose", "author": "Panty", "options": {"guiName": "Costume: Ice Cream Social White Pantyhose", "niceName": "Ice Cream Social White Pantyhose"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Ice%20Cream%20Social%20White%20Pantyhose/"]}, {"disableAutoUpdate": false, "name": "More Dyable Business Suits", "category": "client", "description": "Makes dyable business suits more, well, dyable", "author": "Snug", "options": {"guiName": "Costume: More Dyable Business Suits", "niceName": "More Dyable Business Suits"}, "servers": ["https://raw.githubusercontent.com/Snugglez/more-dyable-business-suit-client-mod/master/"]}, {"disableAutoUpdate": false, "name": "Pastel-Pora-Elinu-Uniform", "category": "client", "description": "Makes the Pora Elinu Uniform have a pastel blue tie, pastel pink skirt, pastel blue shoes.", "author": "Panty", "options": {"guiName": "Costume: Pastel Pora Elinu Uniform", "niceName": "Pastel Pora Elinu Uniform"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Pastel%20Pora%20Elinu%20Uniform/"]}, {"disableAutoUpdate": false, "name": "Pink-Picnic-Dress", "category": "client", "description": "Makes the Picnic Dress have pink instead of black and makes the socks white", "author": "Panty", "options": {"guiName": "Costume: Pink Picnic Dress", "niceName": "Pink Picnic Dress"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Pink%20Picnic%20Dress/"]}, {"disableAutoUpdate": false, "name": "Red-Miko-Costume", "category": "client", "description": "Snowsilk is changed to be white and red instead of rainbow to mimic a miko costume", "author": "Panty", "options": {"guiName": "Costume: Red Miko Costume", "niceName": "Red Miko Costume"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Red%20Miko%20Costume/"]}, {"disableAutoUpdate": false, "name": "White-Castanica-Demon", "category": "client", "description": "Makes the leather white, the collar pink, the shoes white AND removes the studs, spikes, straps, and stars", "author": "Panty", "options": {"guiName": "Costume: White Castanica Demon", "niceName": "White Castanica Demon"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/White%20Castanica%20Demon/"]}, {"disableAutoUpdate": false, "name": "White-Pixie", "category": "client", "description": "Turns all the gold accents to be a white, also whitens other aspects of the costume to not be dark gray", "author": "Panty", "options": {"guiName": "Costume: White Pixie", "niceName": "White Pixie"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/White%20Pixie/"]}, {"disableAutoUpdate": false, "name": "Whiter-Dyeable-Jeans-and-Jacket", "category": "client", "description": "The jean shorts are now white and all the white accents are lightened to fit more coherently together", "author": "Panty", "options": {"guiName": "Costume: Whiter Dyeable Jeans and Jacket", "niceName": "Whiter Dyeable Jeans and Jacket"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-mods/master/Whiter%20Dyeable%20Jeans%20and%20Jacket/"]}, {"disableAutoUpdate": false, "name": "crafting-calculator", "author": "Yang", "description": "Calculate plates/gems mats and more", "version": "6/26/2019", "options": {"niceName": "Crafting Info"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/crafting-calculator/master/"], "supportUrl": "DM Yang#0966"}, {"disableAutoUpdate": false, "name": "party_death_marker_pointers", "author": "Owyn", "description": "Spawns colored pointy arrows on top of dead party members", "options": {"niceName": "Death Markers"}, "servers": ["https://raw.githubusercontent.com/Owyn/party_death_marker_pointers/master/"], "supportUrl": "https://github.com/Owyn/party_death_marker_pointers/issues"}, {"name": "dw-guide", "author": "Caali / YunfeiG", "description": "Guide module for Demon's Wheel", "version": "1.0", "options": {"niceName": "Demon's Wheel Guide", "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/tera-toolbox-mods/dw-guide/master/"]}, {"disableAutoUpdate": false, "name": "dynamic-day", "options": {"niceName": "DD", "guiName": "Dynamic Day", "settingsVersion": 1, "settingsFile": "./settings.json", "settingsMigrator": "./data/migration.js"}, "author": "SaltyMonkey", "description": "Simple Tera Toolbox module which adds a dynamic environment to Tera Online based on the player\u2019s local or server time", "servers": ["https://raw.githubusercontent.com/SaltyMonkey/dynamic-day/master/"], "supportUrl": ["https://github.com/SaltyMonkey/dynamic-day/issues"]}, {"name": "elin-magic", "author": "Pinkie Pie (forked by Caali)", "description": "Client-sided appearance, costumes, mounts, titles and more!", "version": "1.0", "servers": ["https://raw.githubusercontent.com/tera-toolbox-mods/elin-magic/master/"], "options": {"niceName": "ElinMagic"}, "conflicts": ["cosplayer", "unicast"], "dependencies": {"ui": "https://raw.githubusercontent.com/HakuryuuDom/ui/master/module.json"}}, {"disableAutoUpdate": false, "name": "EP-Tracker", "author": "TeraProxy / Owyn / Kourinn", "description": "A tera-proxy module that shows you information about your Enhancement Points experience, including the daily softcap.", "version": "1.0.1", "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=A3KBZUCSEQ5RJ", "options": {"niceName": "EP", "guiName": "EP-Tracker"}, "servers": ["https://raw.githubusercontent.com/TeraProxy/EP-Tracker/master/"], "supportUrl": "https://github.com/TeraProxy/EP-Tracker/issues", "conflicts": ["talents_info"]}, {"disableAutoUpdate": false, "name": "Essentials", "author": "TeraProxy / Caali / Pinkie Pie", "description": "A tera-proxy module that automatically uses Nostrum/Battle Solution and Complete Crystalbind items whenever needed.", "version": "2.3.1", "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=A3KBZUCSEQ5RJ", "options": {"niceName": "Essentials", "guiName": "Essentials", "settingsVersion": 5, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/TeraProxy/Essentials/master/"], "supportUrl": "https://github.com/TeraProxy/Essentials/issues", "dependencies": {"tera-game-state": "https://raw.githubusercontent.com/caali-hackerman/tera-game-state/master/module.json"}}, {"disableAutoUpdate": false, "name": "Extended Boss Bar", "category": "client", "author": "SaltyMonkey", "options": {"guiName": "Extended Boss Bar", "niceName": "Extended Boss Bar"}, "servers": ["https://raw.githubusercontent.com/SaltyMonkey/tera-online-extended-boss-bar/master/"]}, {"name": "flasher", "author": "Caali", "description": "Flashes your client (like when receiving a negotiation request) to notify you of certain events (for example instance matching completed).", "version": "1.0", "options": {"niceName": "Flasher", "guiName": "Flasher", "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/tera-toolbox-mods/flasher/master/"]}, {"servers": ["https://raw.githubusercontent.com/Kaseaa/fps-booster-2000/master/"], "supportUrl": "https://github.com/Kaseaa/fps-booster-2000/issues", "name": "fps-booster-2000", "dependencies": {"library": "https://raw.githubusercontent.com/Kaseaa/library/master/module.json"}, "options": {"guiName": "Fps booster"}, "description": "Boosts your fps by blocking unneeded packets. WARNING: you will not be able to see purple health bars"}, {"disableAutoUpdate": false, "name": "fps-manager", "options": {"niceName": "FPM", "guiName": "FPS Manager", "settingsVersion": 1, "settingsFile": "./settings/settings.json", "settingsMigrator": "./data/migrationData.js"}, "author": "SaltyMonkey", "description": "FPS Manager is modern and extremely customizable module for Tera Toolbox which can help to solve annoyance by some ingame messages and fps drops.", "servers": ["https://raw.githubusercontent.com/SaltyMonkey/fps-manager/master/"], "supportUrl": ["https://github.com/SaltyMonkey/fps-manager/issues"], "conflicts": ["fps-utils"]}, {"disableAutoUpdate": false, "name": "fps-utils", "author": "Pentagon", "description": "Hides other players and skill effects to significantly boost your framerate", "version": "1.0.1", "donationUrl": "https://ko-fi.com/codeagon", "conflicts": ["fps-utils-lite", "hide-players"], "options": {"niceName": "FPS-UTILS", "settingsVersion": 2, "settingsFile": "config.json", "settingsMigrator": "setting_migration.js"}, "servers": ["https://raw.githubusercontent.com/codeagon/fps-utils/master/"], "dependencies": {"badgui": "https://raw.githubusercontent.com/codeagon/badGui/master/module.json"}}, {"disableAutoUpdate": false, "name": "generic-box-opener-item-user", "author": "Owyn", "description": "Mass-Opens boxes", "options": {"niceName": "Box", "guiName": "Generic Box Opener & Item user"}, "servers": ["https://raw.githubusercontent.com/Owyn/generic-box-opener-item-user/master/"], "supportUrl": "https://github.com/Owyn/generic-box-opener-item-user/issues"}, {"disableAutoUpdate": false, "name": "GG-Reset", "author": "Snug", "description": "Automaticly resets ghillie once entering Velik's Sanctuary", "version": "1.0", "servers": ["https://raw.githubusercontent.com/Snugglez/GG-Reset/master/"], "supportUrl": ""}, {"disableAutoUpdate": false, "name": "gld-guide", "author": "valkyr1e", "description": "Guide of Grotto of Lost Souls", "version": "1.0", "options": {"niceName": "GLSGuide", "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/valkyr1e-tera/gls-guide/master/"]}, {"disableAutoUpdate": false, "name": "Elin Matching Ears and Tail", "category": "client", "description": "Matches the ears and tail with the selected hair color", "author": "Snug", "options": {"guiName": "Hair: Elin Matching Ears and Tail", "niceName": "Elin Matching Ears and Tail"}, "servers": ["https://raw.githubusercontent.com/Snugglez/elin-matching-ears-and-tail-client-mod/master/"]}, {"disableAutoUpdate": false, "name": "No More Castanic Male Horns", "category": "client", "description": "Removes the horns from Castanic Male", "author": "Snug", "options": {"guiName": "Hair: No More Castanic Male Horns", "niceName": "No More Castanic Male Horns"}, "servers": ["https://raw.githubusercontent.com/Snugglez/no-more-castanic-male-horns/master/"]}, {"disableAutoUpdate": false, "name": "Healer Toolbox", "author": "Koekkruimels", "description": "Quality of life changes to increase awareness of your party members status.", "version": "1.0.0", "conflicts": ["party_death_marker_pointers", "aura-range"], "options": {"reloadable": false, "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "settings.js"}, "servers": ["https://raw.githubusercontent.com/Koekkruimels/tera-healer-toolbox/master/"], "supportUrl": "https://github.com/Koekkruimels/tera-healer-toolbox/issues"}, {"disableAutoUpdate": false, "disabled": false, "name": "hide-dmg", "author": "Fruit", "description": "Hides those annoying damage numbers.", "version": "1.0", "servers": ["https://raw.githubusercontent.com/soler91/hide-dmg/master/"], "options": {"niceName": "Hide dmg numbers", "guiName": "Hide dmg numbers"}}, {"disableAutoUpdate": false, "name": "Inspector", "author": "TeraProxy", "description": "Automatically inspects players when they apply for your group and logs details about them in your console and ingame chat. Hides the inspect window during combat so you don't get distracted while fighting.", "version": "1.5.2", "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=A3KBZUCSEQ5RJ", "options": {"niceName": "Inspect", "guiName": "Inspector", "settingsVersion": 6, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/TeraProxy/Inspector/master/"], "supportUrl": "https://github.com/TeraProxy/Inspector/issues", "dependencies": {"tera-game-state": "https://raw.githubusercontent.com/caali-hackerman/tera-game-state/master/module.json"}}, {"name": "instant-everything", "author": "Caali / Pinkie Pie / m0py / Snug / beng", "description": "Removes the annoying animation and skips the progress bar for enchanting, upgrading, soulbinding, dismantling, and merging items.", "version": "1.0", "servers": ["https://raw.githubusercontent.com/tera-toolbox-mods/instant-everything/master/"], "options": {"niceName": "InstantEverything", "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "conflicts": ["instant-enchant", "instant-upgrade", "instant-soulbind", "instant-dismantle", "instant-merge"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-WareHouseWindow", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Bank", "niceName": "Modern UI: Bank"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_WareHouseWindow/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_ServantStorageWindow/module.json"}, "name": "modern-ServantStorageWindow", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Companion list", "niceName": "Modern UI: Companion list"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_ServantStorageWindow/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-MiniMap", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Compass", "niceName": "Modern UI: Compass"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_MiniMap/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-ProductionList", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Crafting", "niceName": "Modern UI: Crafting"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_ProductionList/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-ProductionCreatePopUp", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Crafting popup", "niceName": "Modern UI: Crafting popup"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_ProductionCreatePopUp/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-EquipmentCombine", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Equipment infusion", "niceName": "Modern UI: Equipment infusion"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_EquipmentCombine/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-EquipmentUpgrade", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Forge", "niceName": "Modern UI: Forge"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_EquipmentUpgrade/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-CommunityWindow", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Friend list", "niceName": "Modern UI: Friend list"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_CommunityWindow/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-GuildWindow", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Guild", "niceName": "Modern UI: Guild"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_GuildWindow/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "conflicts": ["modern-PaperDoll", "modern-InventoryWindow"], "name": "modern-JewelsFix", "description": "Shows different sets of jewels with different icons (blue-ish for power, red-ish for crit). Not compatible with 'Modern UI: Profile' and 'Modern UI: Inventory'", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Jewels fix", "niceName": "Modern UI: Jewels fix"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_JewelsFix/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-StoreWindow", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Merchant", "niceName": "Modern UI: Merchant"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_StoreWindow/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-SystemOption", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Options", "niceName": "Modern UI: Options"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_SystemOption/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-ParcelPostLog", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Parcel post", "niceName": "Modern UI: Parcel post"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_ParcelPostLog/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-InteractionPopup", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Popups", "niceName": "Modern UI: Popups"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_InteractionPopup/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-SkillWindow_AutoHide", "category": "client", "author": "Foglio", "description": "This mod automatically hides skill bar when skill window is closed.", "options": {"guiName": "Modern UI: Skill window (hides skill bar)", "niceName": "Modern UI: Skill window (hides skill bar)"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_SkillWindow_AutoHide/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-EpWindow", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Talents", "niceName": "Modern UI: Talents"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_EpWindow/"]}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "modern-TradePopup", "category": "client", "author": "Foglio", "options": {"guiName": "Modern UI: Trade popup", "niceName": "Modern UI: Trade popup"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_TradePopup/"]}, {"disableAutoUpdate": false, "disabled": false, "name": "mongord", "author": "Fruit", "description": "Searchs on moongourd for the inspected character.", "version": "1.0", "servers": ["https://raw.githubusercontent.com/soler91/mongord/master/"], "options": {"niceName": "Mongord", "guiName": "Mongord"}}, {"disableAutoUpdate": false, "options": {"niceName": "MP", "guiName": "Mount-Prediction"}, "name": "Mount-Prediction", "author": "Snug", "description": "Removes ping tax related to mounts", "version": "1.1", "servers": ["https://raw.githubusercontent.com/Snugglez/mount-prediction/master/"], "supportUrl": "https://github.com/Snugglez/mount-prediction/blob/master/README.md"}, {"author": "seraphinush . TeraProxy", "description": "tera-toolbox module to notify enrage information of bosses", "disableAutoUpdate": false, "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=B7QQJZV9L5P2J&source=url", "name": "msg-enrage", "options": {"reloadable": true, "settingsVersion": 2, "settingsFile": "config.json", "settingsMigrator": "settings.js"}, "servers": ["https://raw.githubusercontent.com/seraphinush-gaming/msg-enrage/master/"], "supportUrl": "https://github.com/seraphinush-gaming/msg-enrage/blob/master/README.md", "version": "1.19.04"}, {"disableAutoUpdate": false, "name": "Nest-Guide", "author": "Owyn", "description": "Parquina's Nest guide for last boss", "options": {"niceName": "Nest-Guide"}, "servers": ["https://raw.githubusercontent.com/Owyn/nest-guide/master/"], "supportUrl": "https://github.com/Owyn/nest-guide/issues"}, {"disableAutoUpdate": false, "name": "No Drunk Screen", "author": "Pentagon", "description": "Hides vomit inducing effects", "version": "1.0", "donationUrl": "https://ko-fi.com/codeagon", "servers": ["https://raw.githubusercontent.com/codeagon/no-drunk-screen/master/"], "supportUrl": "https://discord.gg/maqBmJV"}, {"disableAutoUpdate": false, "name": "no_more_guardian", "author": "Owyn", "description": "Disables guardian auto-optimization along with its UI", "options": {"niceName": "no more Guardian", "guiName": "no more Guardian"}, "servers": ["https://raw.githubusercontent.com/Owyn/no_more_guardian/master/"], "supportUrl": "https://github.com/Owyn/no_more_guardian/issues"}, {"disableAutoUpdate": false, "name": "no-more-intro-videos", "author": "Snug", "description": "Renames intro videos to bypass ever seeing them", "category": "client", "options": {"guiName": "No More Intro Videos"}, "servers": ["https://raw.githubusercontent.com/snugglez/no-more-intro-videos/master/"]}, {"disableAutoUpdate": false, "name": "no-more-trash-lootbeams", "author": "Owyn", "description": "Disables lootbeams over outdated useless trash items", "options": {"niceName": "Trash Lootbeams", "guiName": "No more Trash Lootbeams"}, "servers": ["https://raw.githubusercontent.com/Owyn/no-more-trash-lootbeams/master/"], "supportUrl": "https://github.com/Owyn/no-more-trash-lootbeams/issues"}, {"name": "no-custom-loadingscreens", "description": "Disable custom loading screens supplied by the game's publishers and instead show only default ones.", "author": "Caali", "version": "1.0", "servers": ["https://raw.githubusercontent.com/tera-toolbox-mods/no-custom-loadingscreens/master/"]}, {"disableAutoUpdate": false, "servers": ["https://raw.githubusercontent.com/Mister-Kay/no-more-crazy-capes/master/"], "supportUrl": "https://github.com/Mister-Kay/no-more-crazy-capes/issues", "name": "no-more-crazy-capes", "author": "Mister-Kay", "description": "Fixes cape exploding physics glitch by re-equipping back items of other players 3 seconds after they load/change equipment."}, {"disableAutoUpdate": false, "name": "No-More-Motes", "author": "Snug", "description": "Disables the spawning of motes to help on fps when mass farming iod", "options": {"guiName": "No-More-Motes", "niceName": "nmm", "settingsVersion": 1, "settingsFile": "settings.json", "settingsMigrator": "settings_generator.js"}, "version": "1.0", "servers": ["https://raw.githubusercontent.com/Snugglez/No-More-Motes/master/"], "supportUrl": "https://github.com/Snugglez/No-More-Motes/issues"}, {"disableAutoUpdate": false, "servers": ["https://raw.githubusercontent.com/Mister-Kay/no-more-noctenium-lag/master/"], "supportUrl": "https://github.com/Mister-Kay/no-more-noctenium-lag/issues", "name": "no-more-noctenium-lag", "author": "Mister-Kay", "description": "Blocks packets which caused client lag when using Noctenium."}, {"disableAutoUpdate": false, "servers": ["https://raw.githubusercontent.com/Mister-Kay/no-more-wasted-backstabs/master/"], "supportUrl": "https://github.com/Mister-Kay/no-more-wasted-backstabs/issues", "name": "no-more-wasted-backstabs", "author": "Mister-Kay", "description": "Blocks targeted teleport skills without a target."}, {"disableAutoUpdate": false, "name": "no-more-annoying-titles", "author": "SaltyMonkey", "description": "Removing shiny titles from another players", "options": {"niceName": "NoMoreTitles"}, "servers": ["https://raw.githubusercontent.com/SaltyMonkey/NoMoreAnnoyingTitles/master/"], "supportUrl": "https://github.com/SaltyMonkey/NoMoreAnnoyingTitles/issues"}, {"disableAutoUpdate": false, "name": "Normalifier", "author": "TeraProxy / spaacecats", "description": "Blocks specific abnormals in order to not trigger annoying screen effects on your client (e.g. Lein's Dark Root Beer).", "version": "1.0.1", "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=A3KBZUCSEQ5RJ", "options": {"niceName": "Norm", "guiName": "Normalifier"}, "servers": ["https://raw.githubusercontent.com/TeraProxy/Normalifier/master/"], "supportUrl": "https://github.com/TeraProxy/Normalifier/issues"}, {"disableAutoUpdate": false, "servers": ["https://raw.githubusercontent.com/Snugglez/old-inspect/master/"], "supportUrl": "https://github.com/Snugglez/old-inspect/issues", "author": "Snug", "name": "old-inspect", "options": {"guiName": "Old Inspect"}, "description": "Reverts /inspect and /look to move the camera to the target like it was prior to patch 85"}, {"disableAutoUpdate": false, "name": "GageBar_TopScreen", "category": "client", "description": "Moves charging/gathering bar right below system messages location.", "author": "Foglio", "options": {"niceName": "Progress bar: top screen", "guiName": "Progress bar: top screen"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/toolbox-client-mods/master/GageBar_TopScreen/"]}, {"disableAutoUpdate": false, "name": "quick-load", "author": "HakuryuuDom / Pinkie Pie", "description": "Bypasses loadscreens when switching channels or teleporting within the same zone.", "version": "2.0", "options": {"niceName": "QuickLoad", "settingsVersion": 4, "settingsFile": "config.json", "settingsMigrator": "setting_migration.js"}, "servers": ["https://raw.githubusercontent.com/HakuryuuDom/quick-load/master/"]}, {"disableAutoUpdate": false, "name": "Rainbow", "author": "Pentagon", "description": "Makes ur char go rainbow", "donationUrl": "https://ko-fi.com/codeagon", "version": "1.0", "servers": ["https://raw.githubusercontent.com/codeagon/rainbow/master/"], "supportUrl": "https://discord.gg/uhDAXWQ"}, {"name": "rk9guide", "author": "Owyn", "description": "Guide for RK9 dungeon", "options": {"niceName": "rk9guide"}, "servers": ["https://raw.githubusercontent.com/Owyn/rk9guide/master/"], "supportUrl": "https://github.com/Owyn/rk9guide/issues", "disableAutoUpdate": false}, {"disableAutoUpdate": false, "name": "rootbeer", "author": "HakuryuuDom / Pinkie Pie", "description": "Automatically opens Bamarama boxes and discards trash.", "version": "2.0", "options": {"reloadable": true, "niceName": "Rootbeer", "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "setting_migration.js"}, "servers": ["https://raw.githubusercontent.com/HakuryuuDom/rootbeer/master/"]}, {"disableAutoUpdate": false, "name": "Salt-Remover", "author": "SaltyMonkey", "description": "Removing useless messages from your screen caused by salt-events", "options": {"niceName": "Salt Remover"}, "servers": ["https://raw.githubusercontent.com/SaltyMonkey/Salt-remover/master/"], "supportUrl": "https://github.com/SaltyMonkey/Salt-remover/issues"}, {"disableAutoUpdate": false, "name": "server-exposer", "author": "SaltyMonkey", "description": "Placing server name near guild name in dungeons/everywhere based on settings.", "options": {"niceName": "ServerExposer", "settingsVersion": 1, "settingsFile": "./settings.json", "settingsMigrator": "./migration.js"}, "servers": ["https://raw.githubusercontent.com/SaltyMonkey/server-exposer/master/"], "supportUrl": "https://github.com/SaltyMonkey/server-exposer/issues"}, {"disableAutoUpdate": false, "servers": ["https://raw.githubusercontent.com/Kaseaa/Tera-Settings-Saver/master/"], "supportUrl": "https://github.com/Kaseaa/Tera-Settings-Saver/issues", "author": "Kasea", "name": "tera-settings-saver", "options": {"guiName": "Setting saver"}, "description": "Saves your settings"}, {"name": "shaker", "author": "Caali", "description": "Modify or completely disable camera shaking effects. You can configure it in the window that opens when typing `/proxy shaker` in chat.", "version": "1.0", "options": {"niceName": "Shaker", "guiName": "Shaker", "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/tera-toolbox-mods/shaker/master/"]}, {"disableAutoUpdate": false, "name": "show_hp_etchings", "author": "Owyn", "description": "Makes you able to discern etching which also give +HP stat", "options": {"niceName": "Show HP etchings", "guiName": "Show HP etchings"}, "servers": ["https://raw.githubusercontent.com/Owyn/show_hp_etchings/master/"], "supportUrl": "https://github.com/Owyn/show_hp_etchings/issues"}, {"disableAutoUpdate": false, "name": "skill-prediction", "author": "Pinkie Pie / many others", "description": "Simulates skills client-side, eliminating ping-based delays and animation lock.", "options": {"niceName": "PSP", "guiName": "Skill Prediction", "settingsVersion": 4, "settingsFile": "settings.json", "settingsMigrator": "migration.js"}, "servers": ["https://raw.githubusercontent.com/SaltyMonkey/skill-prediction/master/"], "supportUrl": "https://github.com/tera-mods/skill-prediction/issues", "conflicts": ["aa-zsync", "cooldowns", "cooldowns-master", "fastfire", "fastfire-master", "fast-fire", "fast-fire-master", "lockons", "lockons-master", "lockons-light", "lockons-light-master", "ping-compensation", "ping-remover", "skill-prediction-master", "skill-prediction-plus"]}, {"name": "skill-resets", "author": "Caali / SaltyMonkey / eemj", "description": "Pops up an on-screen message whenever a skill's cooldown is reset.", "version": "2.0", "options": {"niceName": "SkillResets", "settingsVersion": 3, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/tera-toolbox-mods/skill-resets/master/"]}, {"disableAutoUpdate": false, "name": "sc-guide", "author": "Yang", "description": "SC guide for all bosses", "options": {"niceName": "SkyCruiser-Guide"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/sc-guide/master/"], "supportUrl": "https://github.com/DeathDefying/sc-guide/issues"}, {"disableAutoUpdate": false, "disabled": false, "name": "Socialize", "author": "Leyki", "version": 1.1, "donationUrl": "https://Leyki_VK_NA", "description": "A general usage emote script and some more stuff.", "servers": ["https://raw.githubusercontent.com/Leyki/Socialize/master/"], "options": {"niceName": "Socialize", "settingsVersion": 1, "settingsFile": "settings.json", "settingsMigrator": "lib/settings_migrator.js"}}, {"disableAutoUpdate": false, "name": "Shut Up Anya", "category": "client", "description": "Ever want anya on stepstone island to just, shut up? without muting sounds completely, well here you go.", "author": "Snug", "options": {"guiName": "Sound: Shut Up Anya", "niceName": "Shut Up Anya"}, "servers": ["https://raw.githubusercontent.com/Snugglez/shut-up-anya-client-mod/master/"]}, {"disableAutoUpdate": false, "name": "Awakened-Battle-Bunny-Gunner-Mech", "category": "client", "description": "Makes the Gunner awakened mecha companion into a pale pink with stars, bunnies, and strawberries all over", "author": "Panty", "options": {"guiName": "Special: Awakened Battle Bunny Gunner Mech", "niceName": "Awakened Battle Bunny Gunner Mech"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-special-mods/master/Awakened%20Battle%20Bunny%20Gunner%20Mech/"]}, {"disableAutoUpdate": false, "name": "Castanic-Female-Hair-3-Pink-Horns", "category": "client", "description": "Makes the horns pink", "author": "Panty", "options": {"guiName": "Special: Castanic Female Hair 3 Pink Horns", "niceName": "Castanic Female Hair 3 Pink Horns"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-special-mods/master/Castanic%20Female%20Hair%203%20Pink%20Horns/"]}, {"name": "Castanic-Male-White-Hair", "category": "client", "description": "This mod will alter the color of your hair making it brighter/improving pastels.", "author": "Raven", "options": {"guiName": "Special: Castanic Male White Hair 8", "niceName": "Castanic Male White Hair 8"}, "servers": ["https://raw.githubusercontent.com/RavenMods/Castanic-Male-White-Hair/master/"]}, {"disableAutoUpdate": false, "name": "Elin-Brighter-New-Hairstyles", "category": "client", "description": "Makes the new Elin hairstyles appear whiter, and brighter. Perfect for those who want light colored hairs", "author": "Panty", "options": {"guiName": "Special: Elin Brighter New Hairstyles", "niceName": "Elin Brighter New Hairstyles"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-special-mods/master/Elin%20Brighter%20New%20Hairstyles/"]}, {"disableAutoUpdate": false, "name": "Elin-Matching-Ears-and-Tails-Remaster", "category": "client", "description": "Elin's ears and tails now match the color of the selected hair ! Remastered edits for better visuals", "author": "Panty", "options": {"guiName": "Special: Elin Matching Ears and Tails Remaster", "niceName": "Elin Matching Ears and Tails Remaster"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-special-mods/master/Elin%20Matching%20Ears%20and%20Tails%20Remaster/"]}, {"disableAutoUpdate": false, "name": "Elin-Prettier-Skin", "category": "client", "description": "Smoothes the skin of Elins, removing that dirty rustic look on knees and elbows. Adds white painted fingernails", "author": "Panty", "options": {"guiName": "Special: Elin Prettier Skin", "niceName": "Elin Prettier Skin"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-special-mods/master/Elin%20Prettier%20Skin/"]}, {"disableAutoUpdate": false, "name": "Fairy-Stump-Mount", "category": "client", "description": "Erases the black beetle from the mount, allowing the player to float mid-air on a cute tree stump", "author": "Panty", "options": {"guiName": "Special: Fairy Stump Mount", "niceName": "Fairy Stump Mount"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-special-mods/master/Fairy%20Stump%20Mount/"]}, {"disableAutoUpdate": false, "name": "Flying-Pink-Cushion-Mount", "category": "client", "description": "Removes the magic carpet from the Flying Carpet mount and leaves you with a simple pink cushion flying mid-air", "author": "Panty", "options": {"guiName": "Special: Flying Pink Cushion Mount", "niceName": "Flying Pink Cushion Mount"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-special-mods/master/Flying%20Pink%20Cushion%20Mount/"]}, {"disableAutoUpdate": false, "name": "Pink-Fishie-Set", "category": "client", "description": "Makes all the fishing poles and fishing floats into a pale pink", "author": "Panty", "options": {"guiName": "Special: Pink Fishie Set", "niceName": "Pink Fishie Set"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-special-mods/master/Pink%20Fishie%20Set/"]}, {"disableAutoUpdate": false, "name": "Pink-Royal-Diamond-Dragon-Mount", "category": "client", "description": "Makes the Royal Diamond dragon have pink armor and pink accents to its diamond scales", "author": "Panty", "options": {"guiName": "Special: Pink Royal Diamond Dragon Mount", "niceName": "Pink Royal Diamond Dragon Mount"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-special-mods/master/Pink%20Royal%20Diamond%20Dragon%20Mount/"]}, {"disableAutoUpdate": false, "name": "Talents-Info", "author": "Owyn", "description": "Shows EP EXP gains and your daily cap (89% of it)", "options": {"niceName": "Talents", "guiName": "Talents Info"}, "servers": ["https://raw.githubusercontent.com/Owyn/talents_info/master/"], "supportUrl": "https://github.com/Owyn/talents_info/issues"}, {"servers": ["https://raw.githubusercontent.com/Foglio1024/tcc-toolbox-release/master/"], "supportUrl": "https://github.com/Foglio1024/Tera-Custom-Cooldowns/issues", "name": "TCC", "author": "Foglio", "description": "UI replacement with some extra features.", "disableAutoUpdate": false, "category": "client", "options": {"niceName": "TCC", "guiName": "TCC (TERA Custom Cooldowns)"}, "dependencies": {"ttb-interface-control": "https://raw.githubusercontent.com/Foglio1024/ttb-interface/master/ttb-interface-control/module.json", "ttb-interface-data": "https://raw.githubusercontent.com/Foglio1024/ttb-interface/master/ttb-interface-data/module.json", "tcc-stub": "https://raw.githubusercontent.com/Foglio1024/tcc-stub/master/module.json"}}, {"disableAutoUpdate": false, "name": "tcc-chat-link", "category": "client", "author": "Foglio", "options": {"guiName": "TCC chat link", "niceName": "TCC chat link"}, "servers": ["https://raw.githubusercontent.com/Foglio1024/tcc-chat-link/master/"], "description": "Modded Chat2.gpk for interaction between TERA client and tcc-stub.", "supportUrl": "https://github.com/Foglio1024/Tera-Custom-Cooldowns/issues"}, {"disableAutoUpdate": false, "name": "Teabagger", "author": "TeraProxy", "description": "A tera-proxy module that lets you teabag people. Why bm?", "version": "1.2.5", "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=A3KBZUCSEQ5RJ", "options": {"niceName": "Tbag", "guiName": "Teabagger"}, "servers": ["https://raw.githubusercontent.com/TeraProxy/Teabagger/master/"], "supportUrl": "https://github.com/TeraProxy/Teabagger/issues", "dependencies": {"tera-game-state": "https://raw.githubusercontent.com/caali-hackerman/tera-game-state/master/module.json"}}, {"servers": ["https://raw.githubusercontent.com/Kaseaa/tera-guide/master/"], "supportUrl": "https://github.com/Kaseaa/tera-guide/issues", "name": "tera-guide", "author": "Kasea", "dependencies": {"library": "https://raw.githubusercontent.com/Kaseaa/library/master/module.json"}, "options": {"guiName": "Tera Guide"}, "description": "Guides you in Tera"}, {"disableAutoUpdate": false, "name": "Thinkblob", "category": "client", "description": "Changes King Blob face to thinking emote.", "author": "Foglio", "servers": ["https://raw.githubusercontent.com/Foglio1024/toolbox-client-mods/master/thinkblob/"]}, {"disableAutoUpdate": false, "name": "Translate", "author": "HakuryuuDom / teralove", "version": "1.5", "description": "Translates incoming and outgoing messages to another language using Google Translate.", "options": {"niceName": "Translate", "settingsVersion": 2, "settingsFile": "config.json", "settingsMigrator": "setting_migration.js"}, "servers": ["https://raw.githubusercontent.com/Pravv/translate-chat/master/"]}, {"name": "true-everful-nostrum", "author": "Caali", "description": "Ensures that your Elite/Tera Club Everful Nostrum/Noctenium is up 100% of the time. Complete rewrite of Pinkie Pie's original mod.", "version": "2.1", "options": {"niceName": "TEN", "guiName": "True Everful Nostrum", "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/tera-toolbox-mods/true-everful-nostrum/master/"]}, {"disableAutoUpdate": false, "name": "Tuwanguide", "author": "Snug", "description": "Calls out the colors for the Tuwangi minigame/guardian mission in proxy chat to make things a lot easier", "version": "1.0", "servers": ["https://raw.githubusercontent.com/Snugglez/Tuwanguide/master/"], "supportUrl": "https://github.com/Snugglez/Tuwanguide/blob/master/README.md"}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "remove-BossWindow", "category": "client", "author": "Yang", "options": {"guiName": "UI Remover: Boss Window", "niceName": "UI Remover: Boss Window"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_BossWindow/"], "description": "Description goes here."}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "remove-Buffs", "category": "client", "author": "Yang", "options": {"guiName": "UI Remover: Buff Window", "niceName": "UI Remover: Buff Window"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_BuffsWindow/"], "description": "Description goes here."}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "remove-CharacterWindow", "category": "client", "author": "Yang", "options": {"guiName": "UI Remover: Character Window", "niceName": "UI Remover: Character Window"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_CharacterWindow/"], "description": "Description goes here."}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "remove-FlightGauge", "category": "client", "author": "Yang", "options": {"guiName": "UI Remover: Flight Gauge Window", "niceName": "UI Remover: Flight Gauge Window"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_FlightGauge/"], "description": "Description goes here."}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "remove-LFG window", "category": "client", "author": "Yang", "options": {"guiName": "UI Remover: LFG Window", "niceName": "UI Remover: LFG Window"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_LfgWindow/"], "description": "Description goes here."}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "remove-PartyWindow", "category": "client", "author": "Yang", "options": {"guiName": "UI Remover: Party Window", "niceName": "UI Remover: Party Window"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_PartyWindow/"], "description": "Description goes here."}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "remove-QuestTask", "category": "client", "author": "Yang", "options": {"guiName": "UI Remover: Quest Tracker Window", "niceName": "UI Remover: Quest Tracker Window"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_QuestTracker/"], "description": "Description goes here."}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "remove-RaidWindow", "category": "client", "author": "Yang", "options": {"guiName": "UI Remover: Raid Window", "niceName": "UI Remover: Raid Window"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_RaidWindow/"], "description": "Description goes here."}, {"disableAutoUpdate": false, "dependencies": {"modern-Resources": "https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_Resources/module.json"}, "name": "remove-TeraRewards", "category": "client", "author": "Yang", "options": {"guiName": "UI Remover: Tera Rewards Window", "niceName": "UI Remover: Tera Rewards Window"}, "servers": ["https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_TeraRewards/"], "description": "Description goes here."}, {"name": "Black-and-Red-Main-Menu", "category": "client", "description": "Turns your main menu icons black/ dark gray with a red glow and red hovering effect.", "author": "Raven", "options": {"guiName": "UI: Black and Red Main Menu", "niceName": "Black and Red Main Menu"}, "servers": ["https://raw.githubusercontent.com/RavenMods/Black-and-Red-Main-Menu/master/"]}, {"disableAutoUpdate": false, "name": "Cute-Crafter-Icons", "category": "client", "description": "Changes mastercraft icons into potted plants, cherries, hearts, cupcakes, and pink crosses", "author": "Panty", "options": {"guiName": "UI: Cute Crafter Icons", "niceName": "Cute Crafter Icons"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Cute%20Crafter%20Icons/"]}, {"disableAutoUpdate": false, "name": "Hana-Reward-Tier", "category": "client", "description": "Changes reward tier icon to a pink flower and makes the elite/founder/event symbols more minimalist", "author": "Panty", "options": {"guiName": "UI: Hana Reward Tier", "niceName": "Hana Reward Tier"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Hana%20Reward%20Tier/"]}, {"disableAutoUpdate": false, "name": "Pink-Boss-HP-Bar", "category": "client", "description": "Changes boss HP bars into varying shades of pink", "author": "Panty", "options": {"guiName": "UI: Pink Boss HP Bar", "niceName": "Pink Boss HP Bar"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Pink%20Boss%20HP%20Bar/"]}, {"disableAutoUpdate": false, "name": "Pink-Chat-Window", "category": "client", "description": "Chat window is now pastel pink", "author": "Panty", "options": {"guiName": "UI: Pink Chat Window", "niceName": "Pink Chat Window"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Pink%20Chat%20Window/"]}, {"disableAutoUpdate": false, "name": "Pink-Controller-UI", "category": "client", "description": "Removes old controller overlay; adds pink, easy to see button displays", "author": "Panty", "options": {"guiName": "UI: Pink Controller UI", "niceName": "Pink Controller UI"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Pink%20Controller%20UI/"]}, {"disableAutoUpdate": false, "name": "Pink-Exp-Bar", "category": "client", "description": "Your Exp Bar now fills up in pink", "author": "Panty", "options": {"guiName": "UI: Pink Exp Bar", "niceName": "Pink Exp Bar"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Pink%20Exp%20Bar/"]}, {"disableAutoUpdate": false, "name": "Pink-Heart-HP-MP", "category": "client", "description": "Removes HP/MP background, recolors HP to pink and MP to blue, makes laurels more simplified, changes the background of class icon to a cute magical girl pink heart", "author": "Panty", "options": {"guiName": "UI: Pink Heart HP MP", "niceName": "Pink Heart HP MP"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Pink%20Heart%20HP%20MP/"]}, {"disableAutoUpdate": false, "name": "Pink-Hearts-Crosshair", "category": "client", "description": "Adds pastel pink hearts all over your crosshair", "author": "Panty", "options": {"guiName": "UI: Pink Hearts Crosshair", "niceName": "Pink Hearts Crosshair"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Pink%20Hearts%20Crosshair/"]}, {"disableAutoUpdate": false, "name": "Pink-Main-Menu", "category": "client", "description": "Turns your menu pink ! Notifications are pastel blue", "author": "Panty", "options": {"guiName": "UI: Pink Main Menu", "niceName": "Pink Main Menu"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Pink%20Main%20Menu/"]}, {"disableAutoUpdate": false, "name": "Pink-Party-Member-HP-Bar", "category": "client", "description": "Changes the blue HP bar over your teammate's head to pink", "author": "Panty", "options": {"guiName": "UI: Pink Party Member HP Bar", "niceName": "Pink Party Member HP Bar"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Pink%20Party%20Member%20HP%20Bar/"]}, {"disableAutoUpdate": false, "name": "Pink-Skill-Slots", "category": "client", "description": "Pastel pink skill tray", "author": "Panty", "options": {"guiName": "UI: Pink Skill Slots", "niceName": "Pink Skill Slots"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Pink%20Skill%20Slots/"]}, {"name": "Red-and-Gray-HP-Bar-Persona-5-inspired", "category": "client", "description": "Custom HP/MP bar, laurel, class window, animations and red icon accents.", "author": "Raven", "options": {"guiName": "UI: Red and Gray HP Bar Persona 5", "niceName": "Red and Gray HP Bar Persona 5 inspired"}, "servers": ["https://raw.githubusercontent.com/RavenMods/Red-and-Gray-HP-Bar-Persona-5-inspired/master/"], "disableAutoUpdate": false}, {"name": "Red-and-Gray-Party-Window-Persona-5-inspired", "category": "client", "description": "Custom HP/MP bars, laurels, combat icon and stun/debuff effect. All accents are in red.", "author": "Raven", "options": {"guiName": "UI: Red and Gray Party Window Persona 5", "niceName": "Red and Gray Party Window Persona 5 inspired"}, "servers": ["https://raw.githubusercontent.com/RavenMods/Red-and-Gray-Party-Window-Persona-5-inspired/master/"]}, {"name": "Red-EXP-bar-Green-rested-EXP-bar", "category": "client", "description": "Turns the EXP bar red and rested EXP light green.", "author": "Raven", "options": {"guiName": "UI: Red EXP bar and Green rested EXP bar", "niceName": "Red EXP bar and Green rested EXP bar"}, "servers": ["https://raw.githubusercontent.com/RavenMods/Red-EXP-bar-Green-rested-EXP-bar/master/"]}, {"name": "Red-HP-Bar-for-party-members-Persona-5-inspired", "category": "client", "description": "Turns party HP bars red, light green stun/debuff effect and dark gray for enemy players.", "author": "Raven", "options": {"guiName": "UI: Red HP Bar for party members Persona 5", "niceName": "Red HP Bar for party members Persona 5 inspired"}, "servers": ["https://raw.githubusercontent.com/RavenMods/Red-HP-Bar-for-party-members-Persona-5-inspired/master/"]}, {"disableAutoUpdate": false, "name": "Simplified-Pastel-UI", "category": "client", "description": "For latest patch, pastel recolors of UI that allows stackable HP/MP. Removes backgrounds from HP/MP and class icon.", "author": "Panty", "options": {"guiName": "UI: Simplified Pastel UI", "niceName": "Simplified Pastel UI"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Simplified%20Pastel%20UI/"]}, {"disableAutoUpdate": false, "name": "Static-Heart-Crosshair", "category": "client", "description": "Changes your crosshair to a static, minimalistic pink heart crosshair", "author": "Panty", "options": {"guiName": "UI: Static Heart Crosshair", "niceName": "Static Heart Crosshair"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Static%20Heart%20Crosshair/"]}, {"disableAutoUpdate": false, "name": "Yunicorn-Defense-Pop-Up", "category": "client", "description": "Changes your evade, retribution, and block images to a cute yunicorn(LINE) sticker", "author": "Panty", "options": {"guiName": "UI: Yunicorn Defense Pop Up", "niceName": "Yunicorn Defense Pop Up"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-ui-mods/master/Yunicorn%20Defense%20Pop%20Up/"]}, {"disableAutoUpdate": false, "options": {"guiName": "Unicast", "niceName": "Unicast"}, "servers": ["http://144.217.242.90:8080/unicast/"], "supportUrl": "https://discord.gg/7PfQfD8", "dependencies": {"ui": "https://raw.githubusercontent.com/HakuryuuDom/ui/master/module.json"}, "name": "unicast", "author": "FR\u00dcT & P\u00c5NT", "description": "Costume and appareance changer with in-game UI. Video: https://youtu.be/wzrTrbYx2mA Discord: https://discord.gg/7PfQfD8"}, {"disableAutoUpdate": false, "servers": ["https://raw.githubusercontent.com/Mister-Kay/unmount-fix/master/"], "supportUrl": "https://github.com/Mister-Kay/unmount-fix/issues", "name": "unmount-fix", "author": "Mister-Kay", "description": "Fix accidental dismounting immediately after mounting."}, {"disableAutoUpdate": false, "name": "Vanguardian", "author": "TeraProxy", "description": "A tera-proxy module that automatically finishes Vanguard Initiative quests on completion and gives you a report about how many quests you already finished today.", "version": "1.3.0", "donationUrl": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=A3KBZUCSEQ5RJ", "options": {"niceName": "VG", "guiName": "Vanguardian", "settingsVersion": 1, "settingsFile": "config.json", "settingsMigrator": "settings_migrator.js"}, "servers": ["https://raw.githubusercontent.com/TeraProxy/Vanguardian/master/"], "supportUrl": "https://github.com/TeraProxy/Vanguardian/issues", "conflicts": ["auto-vanguard"], "dependencies": {"tera-game-state": "https://raw.githubusercontent.com/caali-hackerman/tera-game-state/master/module.json"}}, {"disableAutoUpdate": false, "name": "Archer-Pink-Slingshot", "category": "client", "description": "This mod makes the pink and blue Archer slingshot all pink instead", "author": "Panty", "options": {"guiName": "Weapon: Archer Pink Slingshot", "niceName": "Archer Pink Slingshot"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-weapon-mods/master/Archer%20Pink%20Slingshot/"]}, {"disableAutoUpdate": false, "name": "Berserker-Dessert-Fork", "category": "client", "description": "Turns the onigiri fork into a small cute pink dessert fork", "author": "Panty", "options": {"guiName": "Weapon: Berserker Dessert Fork", "niceName": "Berserker Dessert Fork"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-weapon-mods/master/Berserker%20Dessert%20Fork/"]}, {"disableAutoUpdate": false, "name": "MultiClass-Just-Plasma", "category": "client", "description": "Removes the metal from the chromaplasm weapon skin, leaving just the plasma. For Archer, Slayer, Ninja, Warrior, Priest", "author": "Panty", "options": {"guiName": "Weapon: MultiClass Just Plasma", "niceName": "MultiClass Just Plasma"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-weapon-mods/master/MultiClass%20Just%20Plasma/"]}, {"disableAutoUpdate": false, "name": "Mystic-Iceglow-Rod", "category": "client", "description": "Removes the gray rocks on the Icegrip(Rare) weapon skin and brightens the blues", "author": "Panty", "options": {"guiName": "Weapon: Mystic Iceglow Rod", "niceName": "Mystic Iceglow Rod"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-weapon-mods/master/Mystic%20Iceglow%20Rod/"]}, {"disableAutoUpdate": false, "name": "Mystic-Ninja-Oni-Removal", "category": "client", "description": "Removes the multi-oni face on the Mystic Nightfall(Rare) weapon skin", "author": "Panty", "options": {"guiName": "Weapon: Mystic Ninja Oni Removal", "niceName": "Mystic Ninja Oni Removal"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-weapon-mods/master/Mystic%20Ninja%20Oni%20Removal/"]}, {"disableAutoUpdate": false, "name": "Mystic-Pale-Pink-Princess-Wand", "category": "client", "description": "Makes the fuschia pink princess wand be pale pink instead", "author": "Panty", "options": {"guiName": "Weapon: Mystic Pale Pink Princess Wand", "niceName": "Mystic Pale Pink Princess Wand"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-weapon-mods/master/Mystic%20Pale%20Pink%20Princess%20Wand/"]}, {"disableAutoUpdate": false, "name": "Mystic-Strawberry-Nuthatch", "category": "client", "description": "On Mystic nuthatch weapon skin, turns the ugly acorn into an ugly strawberry", "author": "Panty", "options": {"guiName": "Weapon: Mystic Strawberry Nuthatch", "niceName": "Mystic Strawberry Nuthatch"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-weapon-mods/master/Mystic%20Strawberry%20Nuthatch/"]}, {"disableAutoUpdate": false, "name": "Ninja-Pink-Prop-Fan", "category": "client", "description": "Makes the ninja wacky weapon skin pink", "author": "Panty", "options": {"guiName": "Weapon: Ninja Pink Prop Fan", "niceName": "Ninja Pink Prop Fan"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-weapon-mods/master/Ninja%20Pink%20Prop%20Fan/"]}, {"disableAutoUpdate": false, "name": "Priest-Iceglow-Staff", "category": "client", "description": "Removes gray rocks on Icegrip(Rare) weapon skin and brightens the blues", "author": "Panty", "options": {"guiName": "Weapon: Priest Iceglow Staff", "niceName": "Priest Iceglow Staff"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-weapon-mods/master/Priest%20Iceglow%20Staff/"]}, {"disableAutoUpdate": false, "name": "Sorcerer-Gloomy-Bear-Patches", "category": "client", "description": "Turns stitched Mr Patches into a smooth and pink Gloomy Bear for Sorcerer Mister Patches weapon skin", "author": "Panty", "options": {"guiName": "Weapon: Sorcerer Gloomy Bear Patches", "niceName": "Sorcerer Gloomy Bear Patches"}, "servers": ["https://raw.githubusercontent.com/pantypon/tera-client-weapon-mods/master/Sorcerer%20Gloomy%20Bear%20Patches/"]}] \ No newline at end of file diff --git a/modulelist.txt b/modulelist.txt index f51af11..c77d338 100644 --- a/modulelist.txt +++ b/modulelist.txt @@ -69,13 +69,13 @@ https://raw.githubusercontent.com/Owyn/rk9guide/master/module.json https://raw.githubusercontent.com/Owyn/show_hp_etchings/master/module.json https://raw.githubusercontent.com/Owyn/talents_info/master/module.json https://raw.githubusercontent.com/soler91/unicast-free/master/module.json +https://raw.githubusercontent.com/SaltyMonkey/no-more-wasted-bubbles/master/module.json https://raw.githubusercontent.com/DeathDefying/crafting-calculator/master/module.json https://raw.githubusercontent.com/DeathDefying/bathysmal-guide/master/module.json https://raw.githubusercontent.com/DeathDefying/sc-guide/master/module.json https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_BossWindow/module.json https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_BuffsWindow/module.json https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_CharacterWindow/module.json -https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_ChatWindow/module.json https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_FlightGauge/module.json https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_LfgWindow/module.json https://raw.githubusercontent.com/DeathDefying/UI-Remover/master/remove_PartyWindow/module.json @@ -188,5 +188,6 @@ https://raw.githubusercontent.com/Foglio1024/tera-modern-ui/master/Modern_WareHo https://raw.githubusercontent.com/Foglio1024/toolbox-client-mods/master/GageBar_TopScreen/module.json https://raw.githubusercontent.com/Foglio1024/toolbox-client-mods/master/thinkblob/module.json - +https://raw.githubusercontent.com/Foglio1024/tcc-chat-link/master/module.json https://raw.githubusercontent.com/Foglio1024/tcc-toolbox-release/master/module.json +https://raw.githubusercontent.com/Foglio1024/tcc-chat-link/master/module.json