Not just using a Pi for accessories, but actually using it for games.
Computer Hardware
- Raspberry Pi 3 w/ PS
- Large Monitor/TV
| <html> | |
| <script> | |
| //Create a directory called "www" in the EmptyEpsilon main directory an place this file there. Then enable http by editing the options.ini file by adding httpserver=8080 | |
| var url= "/get.lua?alert=getAlertLevel()" | |
| // Create the XHR object. | |
| function createCORSRequest(method, url) { | |
| var xhr = new XMLHttpRequest(); | |
| if ("withCredentials" in xhr) { |
| <html> | |
| <head> | |
| <title>Engineering Presets</title> | |
| <style> | |
| @font-face { | |
| font-family: 'sansationregular'; | |
| src: url('Sansation-Regular-webfont.eot'); | |
| src: url('Sansation-Regular-webfont.eot?#iefix') format('embedded-opentype'), |
| ## Add to bottom of /etc/qstat.cfg | |
| ## query with "quakestat -freecsm dpmaster.deathmask.net:27950" (on Debian) | |
| gametype FREECS new extend Q3S | |
| name = FreeCS | |
| default port = 27950 | |
| template var = FREECS | |
| game rule = gamename | |
| end |
| ``` | |
| app: Linux_EmptyEpsilon_EE-2020.11.23 | |
| binpatch: true | |
| ingredients: | |
| dist: buster | |
| sources: | |
| - deb http://ftp.us.debian.org/debian/ buster main contrib non-free | |
| debs: | |
| ## Change the path of the Deb file to your downloaded location | |
| - /home/kwadroke/Downloads/games/Linux_EmptyEpsilon_EE-2020.11.23.deb |
Last updated 2023-07-04
"onFOSS Lite" lets someone run their own mini onFOSS event without setting up servers. The trade off is that organizers give up game control to pre-existing public servers.
Why?
| #!/bin/sh | |
| # Create maplist.cfg from the file names in lq1/maps and place it in lq1 | |
| # This will remove the old maplist | |
| cd lq1/maps | |
| if [ -e ../maplist.cfg ]; then | |
| ## Delete the current maplist.cfg file so that there is not double (or more) entries | |
| rm ../maplist.cfg | |
| fi |