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
// Variables used by Scriptable. | |
// These must be at the very top of the file. Do not edit. | |
// icon-color: blue; icon-glyph: camera-retro; | |
// Script by Andreas Redeker <[email protected]> | |
let param = args.widgetParameter | |
let url | |
if (param != null && param.length > 0) { | |
url = param |
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
// The shape of the big saucer in Asteroids | |
beginShape(LINES); | |
// Saucer centered around body | |
vertex(-3, -12); | |
vertex(3, -12); | |
vertex(3, -12); | |
vertex(7, -6); | |
vertex(7, -6); | |
vertex(13, 0); | |
vertex(13, 0); |
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
#!/bin/bash | |
# sync.sh written by Claude Pageau for pi-timolo, his excellent video processing application. | |
# re-purposed and mangled by Malcolm Taylor for use with MotionPie | |
# edited by Emil Janesten to stop duplicate running instances and duplicate files and folders in Google Drive. | |
# folder where motion files are located | |
SYNC_DIR=output | |
# Get current folder where this script is located | |
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
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
switch(href_list["rune"]) | |
if("newtome", "emp", "conceal", "communicate", runestun", "armor", "teleport") | |
var/obj/item/weapon/paper/talisman/T = new /obj/item/weapon/paper/talisman(usr) | |
usr.put_in_hands(T) | |
T.imbue = href_list["rune"] | |
if(href_list["rune"] == "teleport") | |
T.imbue = "[pick("ire", "ego", "nahlizet", "certum", "veri", "jatkaa", "balaq", "mgar", "karazet", "geeri", "orkan", "allaq")]" | |
T.info = "[T.imbue]" | |
if("soulstone") | |
var/obj/item/device/soulstone/T = new /obj/item/device/soulstone(usr) |