[Request] World Seed (paid)

Ask about cheats/tables for single player games here
Jake98
What is cheating?
What is cheating?
Posts: 4
Joined: Sun May 22, 2022 9:15 am
Reputation: 0

[Request] World Seed (paid)

Post 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:
Last edited by Jake98 on Mon May 23, 2022 9:10 am, edited 1 time in total.

Jake98
What is cheating?
What is cheating?
Posts: 4
Joined: Sun May 22, 2022 9:15 am
Reputation: 0

Re: [Request] World Seed (paid)

Post by Jake98 »

bump

Jake98
What is cheating?
What is cheating?
Posts: 4
Joined: Sun May 22, 2022 9:15 am
Reputation: 0

Re: [Request] World Seed (paid)

Post by Jake98 »

bump 15 euro paypal if someone help me

User avatar
Rhark
Expert Cheater
Expert Cheater
Posts: 2828
Joined: Tue Apr 16, 2019 1:27 am
Reputation: 1225

Re: [Request] World Seed (paid)

Post 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.

klarbp3
Noobzor
Noobzor
Posts: 7
Joined: Sun Sep 02, 2018 4:25 am
Reputation: 0

Re: [Request] World Seed (paid)

Post by klarbp3 »

The game is basically 99% single player with chat - the multiplayer aspect consists of linking resource tiles to other players

User avatar
Rhark
Expert Cheater
Expert Cheater
Posts: 2828
Joined: Tue Apr 16, 2019 1:27 am
Reputation: 1225

Re: [Request] World Seed (paid)

Post 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.

klarbp3
Noobzor
Noobzor
Posts: 7
Joined: Sun Sep 02, 2018 4:25 am
Reputation: 0

Re: [Request] World Seed (paid)

Post 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.

Jake98
What is cheating?
What is cheating?
Posts: 4
Joined: Sun May 22, 2022 9:15 am
Reputation: 0

Re: [Request] World Seed (paid)

Post by Jake98 »

Bump

nemaom12
What is cheating?
What is cheating?
Posts: 2
Joined: Sun May 29, 2022 10:03 am
Reputation: 0

Re: [Request] World Seed (paid)

Post by nemaom12 »

Bump 40USD if someone figures it out, looking for changing resource values or anything else.

User avatar
Aranaktu
Table Makers
Table Makers
Posts: 543
Joined: Mon Mar 06, 2017 11:54 am
Reputation: 636

Re: [Request] World Seed (paid)

Post 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.
Last edited by Aranaktu on Fri Jun 03, 2022 7:47 pm, edited 1 time in total.

nemaom12
What is cheating?
What is cheating?
Posts: 2
Joined: Sun May 29, 2022 10:03 am
Reputation: 0

Re: [Request] World Seed (paid)

Post by nemaom12 »

How would we set item quantity?

User avatar
Aranaktu
Table Makers
Table Makers
Posts: 543
Joined: Mon Mar 06, 2017 11:54 am
Reputation: 636

Re: [Request] World Seed (paid)

Post by Aranaktu »

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

klarbp3
Noobzor
Noobzor
Posts: 7
Joined: Sun Sep 02, 2018 4:25 am
Reputation: 0

Re: [Request] World Seed (paid)

Post 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

User avatar
Aranaktu
Table Makers
Table Makers
Posts: 543
Joined: Mon Mar 06, 2017 11:54 am
Reputation: 636

Re: [Request] World Seed (paid)

Post 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

klarbp3
Noobzor
Noobzor
Posts: 7
Joined: Sun Sep 02, 2018 4:25 am
Reputation: 0

Re: [Request] World Seed (paid)

Post 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!

Post Reply

Who is online

Users browsing this forum: akira_esp, Allelujah, Baidu [Spider], Bing [Bot], Enferno33, koyterrr