Page 1 of 2

[Request] World Seed (paid)

Posted: Sun May 22, 2022 9:21 am
by Jake98
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 :wub:

Re: [Request] World Seed (paid)

Posted: Mon May 23, 2022 9:08 am
by Jake98
bump

Re: [Request] World Seed (paid)

Posted: Mon May 23, 2022 7:46 pm
by Jake98
bump 15 euro paypal if someone help me

Re: [Request] World Seed (paid)

Posted: Mon May 23, 2022 7:58 pm
by Rhark
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)

Posted: Mon May 23, 2022 8:20 pm
by klarbp3
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)

Posted: Mon May 23, 2022 8:57 pm
by Rhark
klarbp3 wrote:
Mon May 23, 2022 8:20 pm
The game is basically 99% single player with chat - the multiplayer aspect consists of linking resource tiles to other players
Mhm okay, I see the 'Single-player' tag now. I had only read the user-defined tags which were just oriented around multiplayer.

Re: [Request] World Seed (paid)

Posted: Mon May 23, 2022 11:20 pm
by klarbp3
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)

Posted: Thu May 26, 2022 8:13 pm
by Jake98
Bump

Re: [Request] World Seed (paid)

Posted: Sun May 29, 2022 10:05 am
by nemaom12
Bump 40USD if someone figures it out, looking for changing resource values or anything else.

Re: [Request] World Seed (paid)

Posted: Mon May 30, 2022 8:26 pm
by Aranaktu
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;
Image
or make any item you want...
Image

and wait till the game sends the data to the server.

Re: [Request] World Seed (paid)

Posted: Fri Jun 03, 2022 7:30 pm
by nemaom12
How would we set item quantity?

Re: [Request] World Seed (paid)

Posted: Fri Jun 03, 2022 7:47 pm
by Aranaktu
nemaom12 wrote:
Fri Jun 03, 2022 7:30 pm
How would we set item quantity?
n.inventory[0].count = 100

Re: [Request] World Seed (paid)

Posted: Wed Jun 08, 2022 9:43 pm
by klarbp3
Aranaktu wrote:
Fri Jun 03, 2022 7:47 pm
nemaom12 wrote:
Fri Jun 03, 2022 7:30 pm
How would we set item quantity?
n.inventory[0].count = 100
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.

Image

Re: [Request] World Seed (paid)

Posted: Thu Jun 09, 2022 8:48 am
by Aranaktu
klarbp3 wrote:
Wed Jun 08, 2022 9:43 pm
Aranaktu wrote:
Fri Jun 03, 2022 7:47 pm
nemaom12 wrote:
Fri Jun 03, 2022 7:30 pm
How would we set item quantity?
n.inventory[0].count = 100
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.

Image

Code: Select all

n.inventory[0] = {}
or maybe

Code: Select all

n.inventory[0] = true

Re: [Request] World Seed (paid)

Posted: Thu Jun 09, 2022 6:07 pm
by klarbp3
Aranaktu wrote:
Thu Jun 09, 2022 8:48 am

Code: Select all

n.inventory[0] = {}
or maybe

Code: Select all

n.inventory[0] = true
Setting it to [ ] did the trick, appreciate the help!