Adding and removing a custom level
Video tutorial
Text explaination
How do I install a custom level?
- Find a level you would like to play in the workshop section, download it using the Download button.
- Open the .zip file.
- Replace the
Jump King/Content/mods
folder with the
mods
folder inside the .zip file.
- (optional) Make sure the level.xnb and mod.xml file exist.
- Open Jump King and click on New Game (unless you have a save for it).
- Profit.
How do I uninstall a custom level?
It's even more simple.
Just delete (or rename with something else) the mods
folder or what’s inside of it.
3
new levels
are currently being worked on.
{% assign count = 0 %}
{% for level in site.workshop reversed %}
{% if level.hidden == false and level.testing != true and level.isPolished %}
{% assign count = count | plus: 1 %}
{% if count <= page.level-limit %}
{{ level.title }}
{% if level.versions %}
{% for version in level.versions %}
{% if version.hidden == false %}
{% endif %}
{% endfor %}
{% endif %}
{% if level.bitly %}
{% endif %}
{{ level.Author }}{{ scores[0] }}
{{ level.excerpt | truncate: 300 }}
{% for tag in level.tags %}
#{{ tag }}
{% endfor %}
{% endif %}
{% endif %}
{% endfor %}
{% assign count = 0 %}
{% for level in site.workshop reversed %}
{% if level.hidden == false and level.testing != true and level.isPolished != true %}
{% assign count = count | plus: 1 %}
{% if count <= page.level-limit %}
{{ level.title }}
{% if level.versions %}
{% for version in level.versions %}
{% if version.hidden == false %}
{% endif %}
{% endfor %}
{% endif %}
{% if level.bitly %}
{% endif %}
{{ level.Author }}{{ scores[0] }}
{{ level.excerpt | truncate: 300 }}
{% for tag in level.tags %}
#{{ tag }}
{% endfor %}
{% endif %}
{% endif %}
{% endfor %}