[REQUEST] Shelter 69 (Steam)

Ask about cheats/tables for single player games here
User avatar
tungdylan1804
Novice Cheater
Novice Cheater
Posts: 18
Joined: Thu Aug 01, 2024 7:20 am
Reputation: 3

Re: [REQUEST] Shelter 69 (Steam)

Post by tungdylan1804 »

Updated to Version 1.7.256

Sandbox free Shopping is currently removed, so in-app purchase is not free.
I am still awaiting help for this as I lack the knowledge.


Default Version:
+ Max VIP, VIP Points
+ Bypass Ban

Default+Free Stuffs:
+ Default Version Mods
+ Buy and Upgrade Stuffs for free

[Free Stuffs Version has 2 main bugs: 1. Chest keeps opening (Just Alt+F4), 2. Crash when you don't have enough to upgrade]
Change to default version if chest bug keeps happening.

Place in C:\Program Files (x86)\Steam\steamapps\common\Shelter 69\Shelter69_Data\Managed

Password: 1234
Credits to @LordMrEvil

Comments if you need a version with gallery unlocked, or Flirt at any level. A bit lazy to add all that.
Attachments
2.Default+FreeStuffs.rar
(1.06 MiB) Downloaded 219 times
1.Default.rar
(1.06 MiB) Downloaded 94 times

LordMrEvil
Cheater
Cheater
Posts: 46
Joined: Wed Dec 13, 2023 11:50 pm
Reputation: 29

Re: [REQUEST] Shelter 69 (Steam)

Post by LordMrEvil »

LordMrEvil wrote:
Thu Aug 22, 2024 8:16 pm
eahernantst83 wrote:
Thu Aug 22, 2024 7:22 pm
Bad news guys, for the newer version 1.7.256 the method for Sandbox Shopping (TestMode) was removed
That's tough, I'll maybe take a look at it when I can
in SteamPurchaseRequest.DoPaymentFlow there's

{
OfferId = this.m_input.Id,
LanguageCode = SteamApps.GetCurrentGameLanguage(),
Description = this.m_input.Name
}).ToYieldInstruction(false);

change it to

{
OfferId = this.m_input.Id,
LanguageCode = SteamApps.GetCurrentGameLanguage(),
Description = this.m_input.Name,
Debug = true
}).ToYieldInstruction(false);

and it'll enable sandbox purchase mode, however after i attempted to make a purchase it gave me a error code 500 network error, although that could very well be do to the fact the im kinda limited to a very shit hotspot at the moment due to moving recently, i would test further but just getting to the point that the steam purchase box thing was up was a pain so someone else is gonna have to do that.

eahernantst83
Noobzor
Noobzor
Posts: 12
Joined: Thu Apr 25, 2024 4:35 am
Reputation: 1

Re: [REQUEST] Shelter 69 (Steam)

Post by eahernantst83 »

Guys another bad news, they found a new way to ban, error code 666, Server Not Responding somehow they figure it out a way to check the save file content, so even if i use the original DLL is Still broken, I am receiving the same message.

Sadly is over.

LordMrEvil
Cheater
Cheater
Posts: 46
Joined: Wed Dec 13, 2023 11:50 pm
Reputation: 29

Re: [REQUEST] Shelter 69 (Steam)

Post by LordMrEvil »

eahernantst83 wrote:
Fri Aug 23, 2024 6:43 pm
Guys another bad news, they found a new way to ban, error code 666, Server Not Responding somehow they figure it out a way to check the save file content, so even if i use the original DLL is Still broken, I am receiving the same message.

Sadly is over.
I was banned but after checking in yesterday I'm no longer banned so I can no longer check

eahernantst83
Noobzor
Noobzor
Posts: 12
Joined: Thu Apr 25, 2024 4:35 am
Reputation: 1

Re: [REQUEST] Shelter 69 (Steam)

Post by eahernantst83 »

LordMrEvil wrote:
Fri Aug 23, 2024 6:53 pm
eahernantst83 wrote:
Fri Aug 23, 2024 6:43 pm
Guys another bad news, they found a new way to ban, error code 666, Server Not Responding somehow they figure it out a way to check the save file content, so even if i use the original DLL is Still broken, I am receiving the same message.

Sadly is over.
I was banned but after checking in yesterday I'm no longer banned so I can no longer check
I believe the way it works, they are checking now how many stuff you have, so if you are very greedy something will trigger this kind of ban.

By the way, the Fix for Sandbox is to rebuild these two classes like this:
using System;
using Intermarum.Firebase;
[Serializable]
public class SteamFinalizeTxnInput : CloudFunctionRequestInput
{

public string OrderId { get; set; }
public SteamFinalizeTxnInput()
{
this.Debug = true;
}
public bool Debug { get; set; }
}
using System;
using Intermarum.Firebase;
[Serializable]
public class SteamInitTxnInput : CloudFunctionRequestInput
{
public int OfferId { get; set; }
public string LanguageCode { get; set; }
public string Description { get; set; }
public SteamInitTxnInput()
{
this.Debug = true;
}
public bool Debug { get; set; }
}

Be careful, if you became too greedy the other ban mechanism will trigger.

By the way, what is the trick to unlock all champions(Characters) ??

User avatar
tungdylan1804
Novice Cheater
Novice Cheater
Posts: 18
Joined: Thu Aug 01, 2024 7:20 am
Reputation: 3

Re: [REQUEST] Shelter 69 (Steam)

Post by tungdylan1804 »

eahernantst83 wrote:
Fri Aug 23, 2024 7:19 pm
LordMrEvil wrote:
Fri Aug 23, 2024 6:53 pm
eahernantst83 wrote:
Fri Aug 23, 2024 6:43 pm
Guys another bad news, they found a new way to ban, error code 666, Server Not Responding somehow they figure it out a way to check the save file content, so even if i use the original DLL is Still broken, I am receiving the same message.

Sadly is over.
I was banned but after checking in yesterday I'm no longer banned so I can no longer check
I believe the way it works, they are checking now how many stuff you have, so if you are very greedy something will trigger this kind of ban.

By the way, the Fix for Sandbox is to rebuild these two classes like this:
using System;
using Intermarum.Firebase;
[Serializable]
public class SteamFinalizeTxnInput : CloudFunctionRequestInput
{

public string OrderId { get; set; }
public SteamFinalizeTxnInput()
{
this.Debug = true;
}
public bool Debug { get; set; }
}
using System;
using Intermarum.Firebase;
[Serializable]
public class SteamInitTxnInput : CloudFunctionRequestInput
{
public int OfferId { get; set; }
public string LanguageCode { get; set; }
public string Description { get; set; }
public SteamInitTxnInput()
{
this.Debug = true;
}
public bool Debug { get; set; }
}

Be careful, if you became too greedy the other ban mechanism will trigger.

By the way, what is the trick to unlock all champions(Characters) ??
So did you unban yourself or what did you do to figure out the sandbox? I am still banned after the normal modification.

eahernantst83
Noobzor
Noobzor
Posts: 12
Joined: Thu Apr 25, 2024 4:35 am
Reputation: 1

Re: [REQUEST] Shelter 69 (Steam)

Post by eahernantst83 »

tungdylan1804 wrote:
Fri Aug 23, 2024 11:15 pm
eahernantst83 wrote:
Fri Aug 23, 2024 7:19 pm
LordMrEvil wrote:
Fri Aug 23, 2024 6:53 pm


I was banned but after checking in yesterday I'm no longer banned so I can no longer check
I believe the way it works, they are checking now how many stuff you have, so if you are very greedy something will trigger this kind of ban.

By the way, the Fix for Sandbox is to rebuild these two classes like this:
using System;
using Intermarum.Firebase;
[Serializable]
public class SteamFinalizeTxnInput : CloudFunctionRequestInput
{

public string OrderId { get; set; }
public SteamFinalizeTxnInput()
{
this.Debug = true;
}
public bool Debug { get; set; }
}
using System;
using Intermarum.Firebase;
[Serializable]
public class SteamInitTxnInput : CloudFunctionRequestInput
{
public int OfferId { get; set; }
public string LanguageCode { get; set; }
public string Description { get; set; }
public SteamInitTxnInput()
{
this.Debug = true;
}
public bool Debug { get; set; }
}

Be careful, if you became too greedy the other ban mechanism will trigger.

By the way, what is the trick to unlock all champions(Characters) ??
So did you unban yourself or what did you do to figure out the sandbox? I am still banned after the normal modification.
I tested it yesterday before getting banned today.
My goal was to share this today doing a second test today
What ban message are you getting?
The one I mentioned before “Server not responding Please relaunch the Game” Error code 666

User avatar
tungdylan1804
Novice Cheater
Novice Cheater
Posts: 18
Joined: Thu Aug 01, 2024 7:20 am
Reputation: 3

Re: [REQUEST] Shelter 69 (Steam)

Post by tungdylan1804 »

Same, 666. Seems like a new layer of protection from the devs (they're probably reading this)

Bloxyt028
What is cheating?
What is cheating?
Posts: 1
Joined: Sat Aug 24, 2024 11:55 am
Reputation: 0

Re: [REQUEST] Shelter 69 (Steam)

Post by Bloxyt028 »

80% feel they check this daily

Sinantes
What is cheating?
What is cheating?
Posts: 1
Joined: Mon Aug 26, 2024 12:33 pm
Reputation: 0

Re: [REQUEST] Shelter 69 (Steam)

Post by Sinantes »

I've got the 666 error code. Is there any way to solve this?

eahernantst83
Noobzor
Noobzor
Posts: 12
Joined: Thu Apr 25, 2024 4:35 am
Reputation: 1

Re: [REQUEST] Shelter 69 (Steam)

Post by eahernantst83 »

I think it is over for now to be honest with you guys, I guess there is a small chance that the new ban can be solved through reverse engineering of the Login code.
But we are going to need the help of someone with more expertise like the great LordMrEvil, but he also mentioned that currently is not banned and maybe until he gets the same ban message and if he has time available maybe it could help.
Until then, if you unlock everything or if you enable sandboxing there is a big chance you will get banned in a matter of hours by the new mechanism implemented by the devs.

User avatar
tungdylan1804
Novice Cheater
Novice Cheater
Posts: 18
Joined: Thu Aug 01, 2024 7:20 am
Reputation: 3

Re: [REQUEST] Shelter 69 (Steam)

Post by tungdylan1804 »

still gonna keep my hopes up :>

LordMrEvil
Cheater
Cheater
Posts: 46
Joined: Wed Dec 13, 2023 11:50 pm
Reputation: 29

Re: [REQUEST] Shelter 69 (Steam)

Post by LordMrEvil »

I'll look into it when I have actual internet, which is gonna take a week or two

User avatar
AleDss
What is cheating?
What is cheating?
Posts: 2
Joined: Wed May 01, 2024 4:30 pm
Reputation: 0

Re: [REQUEST] Shelter 69 (Steam)

Post by AleDss »

tungdylan1804 wrote:
Fri Aug 23, 2024 1:26 am
Updated to Version 1.7.256

Sandbox free Shopping is currently removed, so in-app purchase is not free.
I am still awaiting help for this as I lack the knowledge.


Default Version:
+ Max VIP, VIP Points
+ Bypass Ban

Default+Free Stuffs:
+ Default Version Mods
+ Buy and Upgrade Stuffs for free

[Free Stuffs Version has 2 main bugs: 1. Chest keeps opening (Just Alt+F4), 2. Crash when you don't have enough to upgrade]
Change to default version if chest bug keeps happening.

Place in C:\Program Files (x86)\Steam\steamapps\common\Shelter 69\Shelter69_Data\Managed

Password: 1234
Credits to @LordMrEvil

Comments if you need a version with gallery unlocked, or Flirt at any level. A bit lazy to add all that.
An unlocked gallery version would be very much appreciated. Thanks for all the good work :D

User avatar
tungdylan1804
Novice Cheater
Novice Cheater
Posts: 18
Joined: Thu Aug 01, 2024 7:20 am
Reputation: 3

Re: [REQUEST] Shelter 69 (Steam)

Post by tungdylan1804 »

AleDss wrote:
Mon Sep 09, 2024 7:36 pm
tungdylan1804 wrote:
Fri Aug 23, 2024 1:26 am
Updated to Version 1.7.256

Sandbox free Shopping is currently removed, so in-app purchase is not free.
I am still awaiting help for this as I lack the knowledge.


Default Version:
+ Max VIP, VIP Points
+ Bypass Ban

Default+Free Stuffs:
+ Default Version Mods
+ Buy and Upgrade Stuffs for free

[Free Stuffs Version has 2 main bugs: 1. Chest keeps opening (Just Alt+F4), 2. Crash when you don't have enough to upgrade]
Change to default version if chest bug keeps happening.

Place in C:\Program Files (x86)\Steam\steamapps\common\Shelter 69\Shelter69_Data\Managed

Password: 1234
Credits to @LordMrEvil

Comments if you need a version with gallery unlocked, or Flirt at any level. A bit lazy to add all that.
An unlocked gallery version would be very much appreciated. Thanks for all the good work :D
oh you didn't get banned? that's cool. Free males are indeed rarities nowadays.
anyway, here is the version with:
+ Max VIP
+ Buy Free Stuffs.
+ Unlocked gallery
+ Steam Sandbox Purchase (I couldn't test this, solution was from @eahernantst83)
There is currently no way to bypass ban so be careful. I've been waiting for weeks.
Attachments
3. Gallery Unlocked + VIP + Free Stufs + Sandbox.rar
(1.07 MiB) Downloaded 271 times

Post Reply

Who is online

Users browsing this forum: bobic71, darkkaiser00, Daz, nenpies, yamisakura