Skip to content

Instantly share code, notes, and snippets.

View valscion's full-sized avatar

Vesa Laakso valscion

View GitHub Profile
@valscion
valscion / main.cb
Created January 4, 2012 20:48
Til2JSON
'This is your first CoolBasic program!
Include "Resource.cb"
mapName$ = "Mictlan"
Global gMapCRC
map = LoadResourceMap(mapName)
If Not IsDirectory("converted") Then MakeDir "converted"
@valscion
valscion / netmatch-server.js
Created December 6, 2011 10:34
NetMatch server
var dgram = require('dgram'),
http = require('http'),
Buffer = require('buffer').Buffer,
util = require('util');
function Player () {
this.id = "";
this.active = false;
this.loggedIn = false;
this.name = "";