This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // arcon-manifest: | |
| // name: player-pfp-chips | |
| // permissions: [game, util, storage, chat, net, hud, ui, ui.player_chip] | |
| // | |
| // player pfps - peer-to-peer 64x64 player icons over the istrolid "pfp" chat channel | |
| // - upload via right-click your own chip -> Set my icon -> file picker | |
| // - icons broadcast on server join + on demand (REQ from late joiners) | |
| // - block per-name to drop incoming icons and refuse to display cached | |
| (function () { | |
| if (!window.arcon) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // arcon-manifest: | |
| // name: istrolid-translator | |
| // permissions: [chat, hud, ui.chat] | |
| // | |
| // istrolid client translator - by vaakx | |
| // robust mixed-language handling via script-aware pre-filtering | |
| (function () { | |
| if (!window.arcon) { | |
| console.error("istrolid_translator: arcon not found, load arcon.js first"); | |
| return; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Adds insert functionality for AI rules. | |
| * Author --> vaakx | |
| */ | |
| (function() { | |
| var NxN, SIZE, aiEditScreen, backToGalaxyButton, cell, divider, dragWhite, drawAddRule, drawAiParts, drawPart, drawParts, drawRule, drawRuleDD, drawRuleNumber, drawTab, editorButtons, finishDesignButton, has, hoverInfo, hoverTip, isBuildRule, lockScreen, partThumb, partThumbCache, powerBar, shareBox, smallTip, unitInfo, weaponInfo, white, | |
| bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }; | |
| eval(onecup["import"]()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Swapping fleet using shift + arrow up/down key. | |
| * Use alt-shift-num to select one of the first 10 fleets | |
| */ | |
| var fleetSwap = window.fleetSwap || { | |
| onkeydown: ControlsMode.prototype.onkeydown | |
| } | |
| ControlsMode.prototype.onkeydown = function(e) { |