Peake RPG... I'm really thinking about it
23 comments

https://geocities.ws/peakecoin/games/The%20Peake/index.html
I'm not the smartest when it comes to the front end either. So learning and having resources accessible is a big help...
@thecrazygm this is one of the cool things I have in the works. I'm having a lot of trouble with the other one, but once I'm stumped, I'll start uploading my lost process.
...so let the games begin.
My next big leap is logging in and saving it the Nintendo way.
I started working on a little text-based game. So far, single player, but I haven't gotten very far with it. If anyone else wants to jump in and help, I'm all for it.
There is definitely a need for more games and things incorporated with the blockchain. My thought was that a text-based game could easily transition into an app for Android or at least in the Hive Keychain under a dApp but it would be much more effective in the "App Market" if you feel me.
Is there an easier way to blockquote code in blog posts? The codes I try don't really work as much as the 4 spaces.

This is where we're at as of today.
index.html
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Peake RPG</title>
<style>
body { font-family: monospace; background: #111; color: #eee; padding: 20px; }
#output { white-space: pre-wrap; margin-bottom: 20px; }
button { margin: 5px; }
</style>
</head>
<body>
<h1>Text RPG</h1>
<div id="output">Loading...</div>
<div>
<button onclick="move('n')">North</button>
<button onclick="move('s')">South</button>
<button onclick="move('e')">East</button>
<button onclick="move('w')">West</button>
</div>
<h3>Character</h3>
<div id="stats"></div>
<h3>Inventory</h3>
<ul id="inventory"></ul>
<h3>Save / Load</h3>
<button onclick="saveGame()">Copy Save Code</button>
<button onclick="downloadSave()">Download Save</button>
<input type="text" id="loadInput" placeholder="Paste save code" style="width: 300px;">
<button onclick="loadGame()">Load</button>
<script src="maps.js"></script>
<script src="characters.js"></script>
<script src="shop_items.js"></script>
<script src="shop.js"></script>
<script src="games.js"></script>
</body>
</html>
I'm not sure but @ddrfr33k if you check this out... are you interested in helping me make the game? Or any parts of it? Either way thanks.
Comments