Skip to content

Instantly share code, notes, and snippets.

local turnList = {}
function onLoad(save_state)
print("Kohbo's Lancer Tools Added")
startLuaCoroutine(self, "addUIElements")
end
--This toggles showing or hiding the roll buttons
function toggleRollerButtons()
This file has been truncated, but you can view the full file.
var $wnd = $wnd || window.parent;var __gwtModuleFunction = $wnd.hadfield_standalone;var $sendStats = __gwtModuleFunction.__sendStats;$sendStats('moduleStartup', 'moduleEvalStart');var $gwt_version = "0.0.999";var $strongName = 'D2BCA56687DB1B0883AC6FAD6344651E';var $gwt = {};var $doc = $wnd.document;var $moduleName, $moduleBase;function __gwtStartLoadingFragment(frag) {var fragFile = 'deferredjs/' + $strongName + '/' + frag + '.cache.js';return __gwtModuleFunction.__startLoadingFragment(fragFile);}function __gwtInstallCode(code) {return __gwtModuleFunction.__installRunAsyncCode(code);}function __gwt_isKnownPropertyValue(propName, propValue) {return __gwtModuleFunction.__gwt_isKnownPropertyValue(propName, propValue);}function __gwt_getMetaProperty(name) {return __gwtModuleFunction.__gwt_getMetaProperty(name);}var $stats = $wnd.__gwtStatsEvent ? function(a) {return $wnd.__gwtStatsEvent && $wnd.__gwtStatsEvent(a);} : null;var $sessionId = $wnd.__gwtStatsSessionId ? $wnd.__gwtStatsSessionId : null;function xb(){}
@kohbo
kohbo / Reporter.cs
Last active August 29, 2015 14:25
PK Reporter
/*
* Reporting application to parse PK notices
* Written By: Juan Menendez
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.InteropServices;
@kohbo
kohbo / Hydrogen.java
Last active August 29, 2015 14:10
Multi-Threading
public class Hydrogen implements Runnable{
ReactionArea buff;
public Hydrogen(ReactionArea buff){
this.buff = buff;
}
public void run(){
for(int i = 0; i < 20; i++){
try{
@kohbo
kohbo / Army.java
Last active August 29, 2015 14:10
Regiments
import java.util.ArrayList;
import java.util.Iterator;
public class Army {
ArrayList<Regiment> army;
Army(){
army = new ArrayList<Regiment>(20);
}