https://github.com/dcoles/adventureland-code
Adventure Land character code
https://github.com/dcoles/adventureland-code
adventure-land adventureland loader
Last synced: about 1 year ago
JSON representation
Adventure Land character code
- Host: GitHub
- URL: https://github.com/dcoles/adventureland-code
- Owner: dcoles
- License: mit
- Created: 2020-08-08T05:56:39.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-03-14T00:32:57.000Z (about 5 years ago)
- Last Synced: 2025-04-09T21:53:02.197Z (about 1 year ago)
- Topics: adventure-land, adventureland, loader
- Language: JavaScript
- Homepage: http://adventureland.dcoles.net/
- Size: 498 KB
- Stars: 6
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Adventure Land
My code for [Adventure Land](https://adventure.land/).
> 💡 **Note**
>
> This code was developed entirely for my own fun and personal learning experience.
> There are bugs and I'm likely to break things at any point in time.
> Use at your own risk!
## Development
Development is done primarily using [Visual Studio Code](https://code.visualstudio.com/).
It is recommended to use the [Live Server](https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer)
extention to allow loading code directly from the editor.
Alternatively a small [Python webserver is available](python/code_server.py):
```bash
pip install -r requirements.txt
python3 code_server.py
```
## Remote-Code Loader
A simple remote code loader is provided in [docs/examples/simple_loader.js](docs/examples/simple_loader.js).
Paste the contents of this file into the game's built-in CODE editor (`-` key) to load code from a remote script instead of placing it in-game.
> ⚠️ **IMPORTANT — Only use with URLs you control and trust**
>
> Untrusted code may hijack your account, use it to mine crypto currency,
> steal personal data, cause your cat to run away and other nasty things.
## Guide
I have written a small programming guide for Adventure Land that attempts to cover some of the common questions that may come up while writing code for the game.
[View the Guide](https://adventureland.dcoles.net/guide)
## License
Licensed under the [MIT License](https://choosealicense.com/licenses/mit/). See [`LICENCE`](LICENCE) for details.