[Game][Screensaver] Where Is Dan?
Description
Presenting… –===== Where Is Dan? =====–I got bored, made a screensaver, turned it into an interactive screensaver. Click the green button, get an update on Dan's location (currently unknown).Just a cr...
Installation
Copy one of these commands into your ComputerCraft terminal:
Pastebin:
pastebin get J8azvLQg [game][screensaver]_where_is_dan?wget:
wget https://pastebin.com/raw/J8azvLQg [game][screensaver]_where_is_dan?Archive:
wget https://cc.shobie.xyz/cc/get/pb-J8azvLQg [game][screensaver]_where_is_dan?
Quick Install:
wget https://cc.shobie.xyz/cc/get/pb-J8azvLQg [Game][Screensaver] Where Is Dan?
Usage
Run the program after downloading
Tags
Source
View Original SourceCode Preview
local tArgs, installer, err = {...}, nil, nil
local response = http.get("https://raw.githubusercontent.com/blunty666/CC-Programs-and-APIs/master/installer/main.lua")
if response then installer = response.readAll() response.close() else printError("Failed to download installer script") return end
installer, err = load(installer, "githubInstaller", "t", _G)
if not installer then printError("Error loading installer script: "..err) return end
installer, err = pcall(installer, unpack(tArgs))
if not installer then printError(err) end