Replies: 1 comment
-
I spoke to the author, anyone reading this looking for help here's what the response was: You need to install either Greasemonkey or Tampermonkey to run this code, it does not include a client. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've loaded the code onto a private cloud server and changed the sanctuary.user.js to be:
"ws://server_ip/moomoo"
in the constructor.
However, I keep getting redirected to moomoo.io.
Any ideas on why this is happening?
If I can get this to run I plan to fork the code and update it as well as provide detailed, step-by-step instructions on how to run your own server.
EDIT: I got it running via NPM, but can't actually find the URL the game runs at.
http://my_ip_address:3000/sanctuary - Shows uptime and version
http://my_ip_address:3000/moomoo - cannot get
http://my_ip_address:3000/moomoo/moomoo - cannot get
http://my_ip_address:3000/moomoo/Game - cannot get
I've tried a dozen other URLs as well, and I can't find the actual running game.
Also, when you go to:
http://my_ip_address:3000/
all you get is redirected to moomoo.io
I found that it's because of this line:
server.ts -> line 55
app.get('/', (req, res) => {
res.redirect(
${req.protocol}://moomoo.io
)});
Literally all it seems to do is redirect.
Please help.
Beta Was this translation helpful? Give feedback.
All reactions