This file contains 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
// [XA] generic-ish class-based weapon giver. This jankily postfixes the player | |
// class name as a string to the end of the weapon, e.g. if you're a DoomPlayer | |
// and BaseWeapon is "Shotgun", it will first try and give you a "ShotgunDoomPlayer". | |
// If that fails, it'll try and give you a "Shotgun" before giving up. | |
// [XA] NOTE: this is currently untested code. Will update as soon as it is. ;) | |
class ClassWeaponGiver : Weapon | |
{ | |
string baseWeapon; |
This file contains 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
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
tooltipMessage: null | |
}); |
This file contains 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
import Ember from 'ember'; | |
import Changeset from 'ember-changeset'; | |
export default Ember.Component.extend({ | |
spaceship: null, | |
changeset: null, | |
isExpanded: false, | |
init() { | |
this._super(...arguments); |
This file contains 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
// ==UserScript== | |
// @name Fix Doomworld | |
// @namespace http://thissureisanamespace.yep | |
// @version 99.99999 | |
// @description THIS USERSCRIPT FIXES DOOMWORLD FOREVER | |
// @match *.doomworld.com/vb/ | |
// @match *.doomworld.com/vb/index.php | |
// @copyright 2015, Xaser Acheron (or whatever; this is WTFPL, idgaf) | |
// ==/UserScript== |