Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
6d3b126
Delete .idea directory
Xses-1 Jun 5, 2022
68e7bb6
Delete images directory
Xses-1 Jun 5, 2022
566d36d
Delete libraries directory
Xses-1 Jun 5, 2022
5930a11
Delete sounds directory
Xses-1 Jun 5, 2022
7c74ee8
Delete .gitattributes
Xses-1 Jun 5, 2022
4ff8936
Delete Brain.js
Xses-1 Jun 5, 2022
24a4cf1
Delete Coin.js
Xses-1 Jun 5, 2022
e6ceb4e
Delete Level.js
Xses-1 Jun 5, 2022
59e22f8
Delete LevelSetupFunction.js
Xses-1 Jun 5, 2022
04463af
Delete Line.js
Xses-1 Jun 5, 2022
e27fb7b
Delete Player.js
Xses-1 Jun 5, 2022
2c79653
Delete Population.js
Xses-1 Jun 5, 2022
743fe8a
Delete index.html
Xses-1 Jun 5, 2022
031526f
Delete sketch-LAPTOP-4GTCNHGO.js
Xses-1 Jun 5, 2022
1b69f2b
Delete sketch.js
Xses-1 Jun 5, 2022
2b9399b
Create README.md
Xses-1 Jun 5, 2022
d5f07da
Add files via upload
Xses-1 Jun 5, 2022
eb0638c
Revert "Delete sketch.js"
Xses-1 Jun 24, 2023
d1a5b2d
Revert "Delete sketch-LAPTOP-4GTCNHGO.js"
Xses-1 Jun 24, 2023
6c1c317
Revert "Delete index.html"
Xses-1 Jun 24, 2023
f0c8af3
Revert "Delete Population.js"
Xses-1 Jun 24, 2023
c25c2ea
Revert "Delete Player.js"
Xses-1 Jun 24, 2023
1b1310f
Revert "Delete Line.js"
Xses-1 Jun 24, 2023
c3ebdc4
Revert "Delete LevelSetupFunction.js"
Xses-1 Jun 24, 2023
2c146f3
Revert "Delete Level.js"
Xses-1 Jun 24, 2023
4765a0a
Revert "Delete Coin.js"
Xses-1 Jun 24, 2023
8322de7
Revert "Delete Brain.js"
Xses-1 Jun 24, 2023
f6f33d2
Revert "Delete .gitattributes"
Xses-1 Jun 24, 2023
42f6fe7
Revert "Delete sounds directory"
Xses-1 Jun 24, 2023
6fcde84
Revert "Delete libraries directory"
Xses-1 Jun 24, 2023
4a352c0
Revert "Delete images directory"
Xses-1 Jun 24, 2023
bc26606
Revert "Delete .idea directory"
Xses-1 Jun 24, 2023
7c6a437
Revert "Update index.html"
Xses-1 Jun 24, 2023
3f49863
Revert "Update index.html"
Xses-1 Jun 24, 2023
277fc95
Little changes to RunME.sh
Xses-1 Jun 24, 2023
1b80c3e
Modified Readme and Runme
Xses-1 Jun 24, 2023
d0f39d1
Aesthetic changes
Xses-1 Jun 24, 2023
3a71c27
Aesthetic thing
Xses-1 Jun 24, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Code Bullet's Jump-King

Basically stuff from <a href="https://www.youtube.com/watch?v=DmQ4Dqxs0HI"> the YouTube video.</a> Watch the video first then buy <a href="https://store.steampowered.com/app/1061090/Jump_King/">the game on steam</a>, and then and only then you can run this stuff.

# How to run it:
## 1st - Download the files

Green button on the right, or:

`git clone "https://github.com/Code-Bullet/Jump-King"`
</br>
</br>

## 2nd - server

p5 library requires to be on server to run, otherwise (this happend in my case) the game won't boot.


There is nice <a href="https://chrome.google.com/webstore/detail/web-server-for-chrome/ofhbbkphhbklhfoeikjpcbhemlocgigb/related?hl=en"> extension for Chrome </a> which you can set up and use,
or you can use php dev tools which can run pretty simple and useful server which is nice (this is only for Linux, no idea how it works for µ$oft, or Macintosh OS):

`sudo apt install php #Or pacman or whatever` </br>
`php -S localhost:8000 -t /home/xses/Games/JumpKing/Jump-King/ #Change the path, so it points to directory with index.htm`

You can use RunME.sh to boot it automatically.
</br>
</br>


## 3rd - PLAY THE GAME!

Just go to http://localhost:8000/ from whatever browser you want.
3 changes: 3 additions & 0 deletions RunME.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

php -S localhost:8000 -t . &
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<div id="canvas"></div>
<FONT color="#ffffff" size="3" face="Courier">Thanks to the team behind Jump King for letting me keep this up, u guys are legends</FONT>
<BR>
<a href="https://store.steampowered.com/app/1061090/Jump_King/" style="font-family:Courier; color:white;">Please support the official game on steam its pretty dope CLICK ME</a>
<a href="https://store.steampowered.com/app/1061090/Jump_King/">Please support the official game on steam, its pretty dope, CLICK ME</a>
<BR>
<FONT color="#ffffff" size="3" face="Courier">if this shit aint loading then just keep hitting refresh, have fun and remember, dont press n</FONT>
</center>
Expand Down