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
//--- Aura Script ----------------------------------------------------------- | |
// The Giftless Christmas Event | |
//--- Description ----------------------------------------------------------- | |
// 2016 Christmas Event by Cryptic (xCryptic) | |
//--------------------------------------------------------------------------- | |
public class GiftlessChristmasEventScript : GameEventScript | |
{ | |
private int goblins; |
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
//--- Aura Script ----------------------------------------------------------- | |
// Life Skills NPC Shop Event | |
//--- Description ----------------------------------------------------------- | |
// http://mabinogi.nexon.net/News/Announcements/1/00IwD | |
//--------------------------------------------------------------------------- | |
public class LifeShopEvent2016Script : GeneralScript | |
{ | |
[On("ErinnDaytimeTick")] | |
public void OnErinnDaytimeTick(ErinnTime now) |
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
//--- Aura Script ----------------------------------------------------------- | |
// Halloween Event Rewards | |
//--- Description ----------------------------------------------------------- | |
// 2015 Halloween Event Rewards coded by Cryptic (xCryptic) | |
//--------------------------------------------------------------------------- | |
[ItemScript(91417)] | |
public class HalloweenGiftBox : ItemScript | |
{ | |
public override void OnUse(Creature cr, Item i, string param) |
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
//--- Aura Script ----------------------------------------------------------- | |
// Halloween Event | |
//--- Description ----------------------------------------------------------- | |
// 2015 Halloween Event coded by Cryptic (xCryptic) | |
//--------------------------------------------------------------------------- | |
public class SimpleHalloweenEventScript : GameEventScript | |
{ | |
public override void Load() | |
{ |
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
var express = require('express'), | |
app = express(), | |
port = Number(process.env.PORT || 3000), | |
io = require('socket.io').listen(app.listen(port)), | |
colors = require('colors'), | |
mongoose = require('mongoose'), | |
moment = require('moment'), | |
serverMsg = '<font color="#5E97FF"><b>[Server]</b> ', | |
serverLeaveMsg = '<font color="#4E7ACC"><b>[Server]</b> ', | |
cmdServerMsg = '[Server] '.white.bold, |
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
javascript:var%20donateBox%20=%20document.getElementById('donate-box');%20if%20(donateBox)%20{%20donateBox.remove();%20%20}%20%20$("#chat-messages").removeClass("show-donate");%20%20%20document.getElementById('chat-messages').setAttribute("style","height:%20750px"); |
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
// ==UserScript== | |
// @name noDonate | |
// @namespace 9000 | |
// @description Removes donate button from plug.dj | |
// @include https://plug.dj/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
var url = document.location.href; |
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
var express = require('express'), | |
app = express(), | |
port = Number(process.env.PORT || 3000), | |
io = require('socket.io').listen(app.listen(port)), | |
colors = require('colors'), | |
mongoose = require('mongoose'), | |
server = '[Server] '.white.bold, | |
error = '[Error] '.red.bold, | |
users = {}, | |
admins = {}, |
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
var express = require('express'), | |
app = express(), | |
http = require('http').Server(app), | |
io = require('socket.io')(http), | |
port = Number(process.env.PORT || 3000), | |
colors = require('colors'), | |
server = '[Server]'.white.bold, | |
users = []; | |
app.use('/images', express.static('images')); |
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
//--- Aura Script ----------------------------------------------------------- | |
// Bryce | |
//--- Description ----------------------------------------------------------- | |
// Banker | |
//--------------------------------------------------------------------------- | |
public class BryceScript : NpcScript | |
{ | |
public override void Load() | |
{ |
NewerOlder