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
'This is your first CoolBasic program! | |
Include "Resource.cb" | |
mapName$ = "Mictlan" | |
Global gMapCRC | |
map = LoadResourceMap(mapName) | |
If Not IsDirectory("converted") Then MakeDir "converted" |
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
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 = ""; |