Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (Zephyr)
  • No Skin
Collapse
RipperStore Logo
  1. Home
  2. Assets
  3. Gifts / Downloads
  4. Gift - Fish! By Godfall Files, Leaks and Datamining

Gift - Fish! By Godfall Files, Leaks and Datamining

Scheduled Pinned Locked Moved Gifts / Downloads
vrc worldudonsharpasset dump
454 Posts 177 Posters 96.0k Views 125 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C
    C
    CA25SAW
    wrote on last edited by
    #60

    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!

    1 Reply Last reply
    0
    • LucianL
      LucianL
      Lucian
      wrote on last edited by Lucian
      #61

      "claimed" I had everything.
      I do have everything:

      image.png

      86975a61-ff6d-4f8f-ad33-c2a84714dafd-image.png

      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.

      ❤

      White CosmosW 1 Reply Last reply
      👑
      15
      • T totallyoriginal1

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

        LucianL
        LucianL
        Lucian
        wrote on last edited by
        #62

        @totallyoriginal1

        d7ee0ed1-7cd7-4a95-84a6-6cefcc93a4b2-image.png

        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();
        	}
        

        469d778e-0e9b-4c0a-b9be-87ee2b0dea07-image.png

        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 ?

        T V 2 Replies Last reply
        4
        • LucianL Lucian

          @totallyoriginal1

          d7ee0ed1-7cd7-4a95-84a6-6cefcc93a4b2-image.png

          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();
          	}
          

          469d778e-0e9b-4c0a-b9be-87ee2b0dea07-image.png

          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 ?

          T
          T
          totallyoriginal1
          wrote on last edited by
          #63

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

          1 Reply Last reply
          1
          • pwqP
            pwqP
            pwq
            wrote on last edited by
            #64
            This post is deleted!
            bugboyB C guhh123G 3 Replies Last reply
            -1
            • pwqP pwq
              [[topic:post-is-deleted]]
              bugboyB
              bugboyB
              bugboy
              wrote on last edited by
              #65

              @pwq I'm pretty sure it's just poor wording, but the way they worded their warning about proxy-ing their Patreon list does look kinda menacing.. I can see why the creator took it as a threat even if the intent was to be helpful

              1 Reply Last reply
              1
              • pwqP pwq
                [[topic:post-is-deleted]]
                C
                C
                CA25SAW
                wrote on last edited by
                #66

                @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. ¯\_(ツ)_/¯

                LucianL 1 Reply Last reply
                2
                • LucianL
                  LucianL
                  Lucian
                  wrote on last edited by
                  #67

                  @pwq
                  @bugboy

                  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.

                  pwqP 1 Reply Last reply
                  0
                  • guhh123G
                    guhh123G
                    guhh123
                    wrote on last edited by
                    #68

                    could someone attatch the audio files for jmmy's spawn, despawn, and 'spooky'? im curious what the sounds are

                    LucianL 1 Reply Last reply
                    0
                    • pwqP pwq
                      [[topic:post-is-deleted]]
                      guhh123G
                      guhh123G
                      guhh123
                      wrote on last edited by
                      #69

                      @pwq if the game gets ruined because of poor wording then it was destined to go to shit lmao

                      IŪI 1 Reply Last reply
                      1
                      • V
                        V
                        Valeria
                        wrote on last edited by
                        #70

                        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.

                        1 Reply Last reply
                        0
                        • V
                          V
                          Valeria
                          wrote on last edited by
                          #71

                          I will add that the added context you have put out there does shift the tone, though.

                          1 Reply Last reply
                          0
                          • LucianL Lucian

                            @pwq
                            @bugboy

                            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.

                            pwqP
                            pwqP
                            pwq
                            wrote on last edited by
                            #72
                            This post is deleted!
                            LucianL 1 Reply Last reply
                            -1
                            • C CA25SAW

                              @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. ¯\_(ツ)_/¯

                              LucianL
                              LucianL
                              Lucian
                              wrote on last edited by
                              #73

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

                              C 1 Reply Last reply
                              3
                              • SeaLoongS
                                SeaLoongS
                                SeaLoong
                                wrote on last edited by
                                #74

                                @lucian Could you upload the latest assets/udonscript? They updated the world yesterday. I'm not sure if the encryption logic has changed.

                                LucianL 1 Reply Last reply
                                0
                                • pwqP pwq
                                  [[topic:post-is-deleted]]
                                  LucianL
                                  LucianL
                                  Lucian
                                  wrote on last edited by
                                  #75

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

                                  pwqP 1 Reply Last reply
                                  3
                                  • LucianL Lucian

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

                                    pwqP
                                    pwqP
                                    pwq
                                    wrote on last edited by pwq
                                    #76
                                    This post is deleted!
                                    1 Reply Last reply
                                    0
                                    • LucianL Lucian

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

                                      C
                                      C
                                      CA25SAW
                                      wrote on last edited by
                                      #77

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

                                      LucianL 1 Reply Last reply
                                      0
                                      • C CA25SAW

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

                                        LucianL
                                        LucianL
                                        Lucian
                                        wrote on last edited by
                                        #78

                                        @CA25SAW you are fine, i tagged you so i could condense everything in one post. ❤

                                        1 Reply Last reply
                                        0
                                        • guhh123G guhh123

                                          @pwq if the game gets ruined because of poor wording then it was destined to go to shit lmao

                                          IŪI
                                          IŪI
                                          IŪ
                                          wrote on last edited by
                                          #79

                                          @guhh123 post deleted lol

                                          -Coming back temporarily-

                                          PLEASE READ
                                          Leaving the community, some people in here really make staying here exhausting, don't ask for any future updates

                                          For file issues, I recommend @OneShotaVRC 's “Corrupted File After Extraction? Virus Detected? Check this before asking your benefactor” thread , worth a read!

                                          1 Reply Last reply
                                          0

                                          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
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular