diff --git a/Plugins/GuildsScroller.plugin.js b/Plugins/GuildsScroller.plugin.js new file mode 100644 index 0000000..3c06d4c --- /dev/null +++ b/Plugins/GuildsScroller.plugin.js @@ -0,0 +1,35 @@ +//META{"name":"GuildsScroller"}*// + +function GuildsScroller() {} + +GuildsScroller.prototype.load = function() { +}; + +GuildsScroller.prototype.unload = function() { +}; + +GuildsScroller.prototype.start = function() { + $(".guilds").wrap('
').wrap('
'); +}; +GuildsScroller.prototype.stop = function() { + $(".guilds").unwrap().unwrap(); +}; + +GuildsScroller.prototype.update = function() { +}; + +GuildsScroller.prototype.getName = function() { + return "Guilds Scrollbar"; +}; + +GuildsScroller.prototype.getDescription = function() { + return "Adds a scrollbar to guilds/servers list"; +}; + +GuildsScroller.prototype.getVersion = function() { + return "1.0"; +}; + +GuildsScroller.prototype.getAuthor = function() { + return "Jiiks"; +}; \ No newline at end of file