Skip to content

Instantly share code, notes, and snippets.

@Draknek
Draknek / Pirate test
Last active August 29, 2015 13:56 — forked from anonymous/readme.txt
Work in progress
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@Draknek
Draknek / readme.txt
Last active August 29, 2015 14:00 — forked from anonymous/readme.txt
You're Pulleying My Leg
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@Draknek
Draknek / gist:0dfe9b6c695e5b8db45a
Created May 6, 2014 00:11
Example single-line level file format for Flash
var VERSION:String = "B";
function dataToString (tiles:BitmapData):String
{
var i:int;
var j:int;
var tile:uint;
var bytes:ByteArray = new ByteArray;
for (i = 0; i < tiles.width; i++) {
@Draknek
Draknek / Lasso
Last active August 29, 2015 14:02 — forked from anonymous/readme.txt
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@Draknek
Draknek / readme.txt
Created July 11, 2014 16:46 — forked from anonymous/readme.txt
BunnySim 1
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
function onOpen() {
var spreadsheet = SpreadsheetApp.getActive();
var menuItems = [
{name: 'Generate values', functionName: 'draknek'}
];
spreadsheet.addMenu('Macro cleverness', menuItems);
}
function draknek(){
var outputSheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Generated values");