Gift - Fish! By Godfall Files, Leaks and Datamining
-
They're welcome to say what they like in their own discord, they can hide their anger behind emotes all they like. @prettypigeon Thanks for the info on how he works!
-
"claimed" I had everything.
I do have everything:

it's only a matter of time before I expose the entire game code in here, into a working unity project for everyone to use and share.
And my enjoyment out of this is to help people learn how to code, see what NOT to do, and of course, a big middle finger to the dev for lying and talking shit about me in their servers.

-
@PrettyPigeon You know, I was going to post about it myself, but guess I don't have to anymore.
I took a quick glance at the code for Sunman and it appears he has a 1% chance to spawn every 20 minutes. I already closed VS and Unity, and I'm too lazy to open them right now since I have things to do soon, so I'll just leave pseudocode and an explanation for it.Checks if Time.time > lastStoredTime + 1200f (20 minutes), if so, it calls UnityEngine.Random.value to get a value between 0.0 and 1.0, checking if it's equal to or below 0.01 (if 1.0 is 100% and 0.5 is 50%, 0.01 is 1%), and if so, it spawns Sunman along with playing a sound effect.

All the values and how it work.
public UnityEngine.GameObject creature; public UnityEngine.Transform[] spawnLocations = new UnityEngine.Transform[0]; public UnityEngine.AudioSource audioSource; public UnityEngine.AudioClip[] spawnSounds = new UnityEngine.AudioClip[0]; public UnityEngine.AudioClip[] despawnSounds = new UnityEngine.AudioClip[0]; public float checkInterval = 1200F; public float spawnChance = 0.01F; public float lookThreshold = 0.85F; public float despawnDistance = 45F; public bool debugMode; public UnityEngine.KeyCode debugSpawnKey = UnityEngine.KeyCode.F9; private VRC.SDKBase.VRCPlayerApi localPlayer; private float nextCheckTime; public void Start() { localPlayer = VRC.SDKBase.Networking.LocalPlayer; creature.transform.position = new UnityEngine.Vector3(0F, -5000F, 0F); nextCheckTime = (UnityEngine.Time.time + checkInterval); } private bool creatureActive; public void Update() { if ((localPlayer == null)) { return; } if (creatureActive) { _update_2(); } else { if ((UnityEngine.Time.time >= nextCheckTime)) { _update_0(); } } return; _update_0(); } private void _update_0() { nextCheckTime = (UnityEngine.Time.time + checkInterval); if ((UnityEngine.Random.value <= spawnChance)) { _update_1(); } return; _update_1(); }
It is very sad that they cannot be original. They had to steal the likeness of Nintendo Animal Crossing, Sonic and some SCP now.
Can't they make anything unique ?
-

All the values and how it work.
public UnityEngine.GameObject creature; public UnityEngine.Transform[] spawnLocations = new UnityEngine.Transform[0]; public UnityEngine.AudioSource audioSource; public UnityEngine.AudioClip[] spawnSounds = new UnityEngine.AudioClip[0]; public UnityEngine.AudioClip[] despawnSounds = new UnityEngine.AudioClip[0]; public float checkInterval = 1200F; public float spawnChance = 0.01F; public float lookThreshold = 0.85F; public float despawnDistance = 45F; public bool debugMode; public UnityEngine.KeyCode debugSpawnKey = UnityEngine.KeyCode.F9; private VRC.SDKBase.VRCPlayerApi localPlayer; private float nextCheckTime; public void Start() { localPlayer = VRC.SDKBase.Networking.LocalPlayer; creature.transform.position = new UnityEngine.Vector3(0F, -5000F, 0F); nextCheckTime = (UnityEngine.Time.time + checkInterval); } private bool creatureActive; public void Update() { if ((localPlayer == null)) { return; } if (creatureActive) { _update_2(); } else { if ((UnityEngine.Time.time >= nextCheckTime)) { _update_0(); } } return; _update_0(); } private void _update_0() { nextCheckTime = (UnityEngine.Time.time + checkInterval); if ((UnityEngine.Random.value <= spawnChance)) { _update_1(); } return; _update_1(); }
It is very sad that they cannot be original. They had to steal the likeness of Nintendo Animal Crossing, Sonic and some SCP now.
Can't they make anything unique ?
@Lucian Yep, that's pretty much it.
Also, I know this is the ripperstore forums and whatnot like you said earlier, but I have a few reasons why I've mainly stopped doing what I used to do here despite people asking for things from me still. But besides that, I do still do personal challenges, like proxying different things. I don't do it for any malicious reasons or anything, it's just to test my skills and see how other devs implemented their data handling/encryption, as anything I really get out of it is only purely cosmetic. Am I willing to make a proxy for fish however? Not sure, I'm a busy person, so sure while I whipped up around like 70% of the POC code needed for it in around like 2 hours just for fun, I still have a life, and idk if I personally want to finish it. -
@pwq Ego or not, he's proven he knows what he's talking about. It's not like the game creators have been respectful either. Not to say disrespectful people "deserve" punishment, but nobody is a saint. If Lucian's ripping causes the development to stop, they can't have been a stable dev team either way. ¯\_(ツ)_/¯
-
Why would I tell the dev i want to proxy their patreon list ? Especially when I said I Wanted to help them ?
It was indeed poor wording, because what I Wanted to explain was: Anyone who have some basic knowledge could be using this to proxy their patreon list and unlock the stuff for free, so with my help, i can show you how to prevent this, because if i found it, many people can."
I never said "hey look, i found an exploit, i am going to help everyone get free shit."
The owner is french, I am not a native english speaker.
But even someone not smart would read it as me trying to help and not cause damage.How is this threat ? it was literally said in private DM to the 2 devs only.
-
As someone who has little investment in this beyond appreciating the efforts youve done Lucian for other things. I will say my intial kneejerk reaction to the wording you used was pretty poor. It could be taken by just words as a threat. The problem here is the fact that the nuance of inflection and such is lost in text. Intent Vs Impact often does not land as intended in text. Just offering a third party perspective here.
-
Why would I tell the dev i want to proxy their patreon list ? Especially when I said I Wanted to help them ?
It was indeed poor wording, because what I Wanted to explain was: Anyone who have some basic knowledge could be using this to proxy their patreon list and unlock the stuff for free, so with my help, i can show you how to prevent this, because if i found it, many people can."
I never said "hey look, i found an exploit, i am going to help everyone get free shit."
The owner is french, I am not a native english speaker.
But even someone not smart would read it as me trying to help and not cause damage.How is this threat ? it was literally said in private DM to the 2 devs only.
-
@pwq Ego or not, he's proven he knows what he's talking about. It's not like the game creators have been respectful either. Not to say disrespectful people "deserve" punishment, but nobody is a saint. If Lucian's ripping causes the development to stop, they can't have been a stable dev team either way. ¯\_(ツ)_/¯
@CA25SAW as my previous message #67, There was no ego.
And it will not cause the development to stop, they made it to the front page of vrchat, and they earn 5k a month with their patreon, while vrchat take 50% earning from all the vrceconomy sales.They just want to play the poor victim so more people support them.
And look at that, the only people who been targeting me are new accounts.
They have no place in this forum, they are only here to be whiteknight and not contribute to anything.I have spent many of my dollar to buy assets that was requested here.
I won't submit to this bullshit of calling me an egocentrically person when i have bent my knee to help people.
I am here to help this community, if it was an ego issue, it would be all about me and what i want isn't ?People use words without knowing the meaning of it.
I go where the people accept my skills, in this case, people welcome me here more than godfall ever welcomed any of their members.And being nice to you because you give them money on their patreon is not genuine. I get nothing here as a return for helping, and the fake point beside my names have no values other than people appreciating what i do for them.
-
@pwq You know who is ruining the game currently ?
All the people with bought client who rush toward public instance and abuse the dev poor coding skill into wiping people saves.In the other end, there me here, who for now only shared the vrcw file, some spoilers, and still willing to talk with the team behind the game where i would just nuke all my post here if they were willing to work it out together.
it is a misunderstanding, but I was not aware of it until someone here pointed out my bad wording that seemed like a threat, which i realized only a hour ago.
But how can i say that to the dev when they have already put me on the burning stack with no chance to talk to them ?I am only salty for being punished after supporting them with both my skills and my money.
Not because i have an "ego". or whatever people want to call me in here.Again, i never asked to be named anywhere in their credit, or being mentioned, i was contributing my time for free for them, and this is certainly not what someone with a ego would do.
-
@pwq You know who is ruining the game currently ?
All the people with bought client who rush toward public instance and abuse the dev poor coding skill into wiping people saves.In the other end, there me here, who for now only shared the vrcw file, some spoilers, and still willing to talk with the team behind the game where i would just nuke all my post here if they were willing to work it out together.
it is a misunderstanding, but I was not aware of it until someone here pointed out my bad wording that seemed like a threat, which i realized only a hour ago.
But how can i say that to the dev when they have already put me on the burning stack with no chance to talk to them ?I am only salty for being punished after supporting them with both my skills and my money.
Not because i have an "ego". or whatever people want to call me in here.Again, i never asked to be named anywhere in their credit, or being mentioned, i was contributing my time for free for them, and this is certainly not what someone with a ego would do.
-
@CA25SAW as my previous message #67, There was no ego.
And it will not cause the development to stop, they made it to the front page of vrchat, and they earn 5k a month with their patreon, while vrchat take 50% earning from all the vrceconomy sales.They just want to play the poor victim so more people support them.
And look at that, the only people who been targeting me are new accounts.
They have no place in this forum, they are only here to be whiteknight and not contribute to anything.I have spent many of my dollar to buy assets that was requested here.
I won't submit to this bullshit of calling me an egocentrically person when i have bent my knee to help people.
I am here to help this community, if it was an ego issue, it would be all about me and what i want isn't ?People use words without knowing the meaning of it.
I go where the people accept my skills, in this case, people welcome me here more than godfall ever welcomed any of their members.And being nice to you because you give them money on their patreon is not genuine. I get nothing here as a return for helping, and the fake point beside my names have no values other than people appreciating what i do for them.
@Lucian Huge apologies if I had worded such like I thought you had ego, let me rephrase it as "Irregardless if you (referring to the member I replied to) believe that Lucian has an ego or not". I personally agree with your actions, and would have done the same in your shoes, if I had the skills of course.
-
@Lucian Huge apologies if I had worded such like I thought you had ego, let me rephrase it as "Irregardless if you (referring to the member I replied to) believe that Lucian has an ego or not". I personally agree with your actions, and would have done the same in your shoes, if I had the skills of course.
-
@pwq if the game gets ruined because of poor wording then it was destined to go to shit lmao
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login