[Request] World Seed (paid)
[Request] World Seed (paid)
Game Name: World Seed
Game Engine: I don't know
Game Version: v1.1.6
Options Required: 10x/100x Damage, Infinite HP or 100% block chance
Steam Website:
(you can also play on worldseed.eu)
Other Info: 10 euro via paypal to one who help
Game Engine: I don't know
Game Version: v1.1.6
Options Required: 10x/100x Damage, Infinite HP or 100% block chance
Steam Website:
(you can also play on worldseed.eu)
Other Info: 10 euro via paypal to one who help
Last edited by Jake98 on Mon May 23, 2022 9:10 am, edited 1 time in total.
Re: [Request] World Seed (paid)
bump 15 euro paypal if someone help me
Re: [Request] World Seed (paid)
This is an MMORPG, the majority of people here do not condone multiplayer cheating. Also, given that this is an MMORPG and IF it was possible to do what you asked for 15 euros is definitely not worth the time and effort this would most likely require.
Re: [Request] World Seed (paid)
The game is basically 99% single player with chat - the multiplayer aspect consists of linking resource tiles to other players
Re: [Request] World Seed (paid)
Yeah, I mean there's technically PvP, but that consists of sending a specific link to a single person for a duel - there's no ranking system, no leaderboards, and no competitive aspect whatsoever that I've seen.
Re: [Request] World Seed (paid)
Bump 40USD if someone figures it out, looking for changing resource values or anything else.
Re: [Request] World Seed (paid)
I won't give you noob friendly instructions, but for someone who want to hack this game this may be useful.
The game is written in javascript and you can pretty much edit anything you want by overriding the "logout.js" file and putting your changes before the game emits "store-game-state".
"n" const contains all the data.
So, if you want to give yourself 99999 coins then just type n.coins = 999999;
or make any item you want...
and wait till the game sends the data to the server.
The game is written in javascript and you can pretty much edit anything you want by overriding the "logout.js" file and putting your changes before the game emits "store-game-state".
"n" const contains all the data.
So, if you want to give yourself 99999 coins then just type n.coins = 999999;
or make any item you want...
and wait till the game sends the data to the server.
Last edited by Aranaktu on Fri Jun 03, 2022 7:47 pm, edited 1 time in total.
Re: [Request] World Seed (paid)
How would we set item quantity?
Re: [Request] World Seed (paid)
I was messing around with this and everything was mostly working fine, but I was moving items around to update quantity and I think it stored game state when a slot was empty but had a forced count, so now I get an error whenever I try to open the backpack - would you happen to know how to force a slot back to empty? Setting item count to 0 didn't work, and I'm completely unfamiliar with java.
Re: [Request] World Seed (paid)
klarbp3 wrote: ↑Wed Jun 08, 2022 9:43 pmI was messing around with this and everything was mostly working fine, but I was moving items around to update quantity and I think it stored game state when a slot was empty but had a forced count, so now I get an error whenever I try to open the backpack - would you happen to know how to force a slot back to empty? Setting item count to 0 didn't work, and I'm completely unfamiliar with java.
Code: Select all
n.inventory[0] = {}
Code: Select all
n.inventory[0] = true
Re: [Request] World Seed (paid)
Setting it to [ ] did the trick, appreciate the help!Aranaktu wrote: ↑Thu Jun 09, 2022 8:48 amor maybeCode: Select all
n.inventory[0] = {}
Code: Select all
n.inventory[0] = true