Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 42
  1. #16
    digitalwarfare's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    300
    Quote Originally Posted by butor20022 View Post
    I was trying to learn how to do it myself. Managed to do the easy part (premium, no fight).
    But for the ESP, I get errors when I try to recompile in PhotonDispatcher. I was trying to add the following lines:

    Code:
    	if (GameFactory.FishSpawner != null)
    		{
    			foreach (IFishController fishController in GameFactory.FishSpawner.Fish.Values)
    			{
    				Vector3 vector = Camera.main.WorldToScreenPoint(fishController.Owner.transform.position);
    			Vector2 vector2;
    			vector2..ctor(vector.x, vector.y);
    				GUI.Label(new Rect(vector2.x - 50f, (float)Screen.height - vector2.y, 290f, 55f), fishController.Owner.name + " ");
    			}
    but the vector2..ctor is causing an error (CS1001)
    Here you go;

    Code:
    if (GameFactory.FishSpawner != null)
    		{
    			foreach (IFishController fishController in GameFactory.FishSpawner.Fish.Values)
    			{
    				Vector3 vector = Camera.main.WorldToScreenPoint(fishController.Owner.transform.position);
    				Vector2 vector2 = new Vector2(vector.x, vector.y);
    				GUI.Label(new Rect(vector2.x - 50f, (float)Screen.height - vector2.y, 290f, 55f), fishController.Owner.name + " ");
    			}
    		}
    - - - Updated - - -

    Quote Originally Posted by butor20022 View Post
    I was trying to learn how to do it myself. Managed to do the easy part (premium, no fight).
    You will also come across a problem when trying to edit the Reel Speed values. You will get compilation errors regarding

    "The accessibility modifier of the X accessor must be more restrictive than the property of indexer Y"

    To solve this, just delete the code before the getters and setters.

    Code:
    {
    		[global::System.Runtime.CompilerServices.CompilerGenerated]
    		protected get
    		{
    			return default(global::RodBehaviour);
    		}
    		[global::System.Runtime.CompilerServices.CompilerGenerated]
    		private set
    		{
    		}
    	}
    Just remove the terms "protected" and "private" leaving just "get" and "set" wherever necessary. It will then compile.

    Code:
    {
    		[global::System.Runtime.CompilerServices.CompilerGenerated]
    		get
    		{
    			return default(global::RodBehaviour);
    		}
    		[global::System.Runtime.CompilerServices.CompilerGenerated]
    		set
    		{
    		}
    	}
    Last edited by digitalwarfare; 10-19-2019 at 05:20 PM.

  2. The Following 3 Users Say Thank You to digitalwarfare For This Useful Post:

    hakutzu (01-04-2020),johnnyn (02-03-2020),Trapfyyyyyyy (01-14-2020)

  3. #17
    moonwalker8689's Avatar
    Join Date
    Aug 2019
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    1
    Thank you so much digitalwarfare! You're freakin awesome bro!!

  4. #18
    sempak8's Avatar
    Join Date
    May 2019
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    73
    Quote Originally Posted by digitalwarfare View Post
    I've updated the hack to version 3.1.6

    Active hacks include;

    • No Fish Fight
    • Fish ESP
    • Bite Indicator
    • Free Premium


    However, I've had to tone down the Reel Speed. For whatever reason the game is now landing the fish much more slowly than usual, so I've removed the 20x reel speed, but the fish are still just as easy to catch.

    Once you try it out you will see what I mean. When the fish is coming towards your hand and you lift it up - this animation has become incredibly slow. I will have to look through some values to try and speed this up. Until then the reel speed will remain at 4x

    very very nice!!! but incredibly slow.. do you have a solution?

    - - - Updated - - -

    Quote Originally Posted by digitalwarfare View Post
    Here you go;

    Code:
    if (GameFactory.FishSpawner != null)
    		{
    			foreach (IFishController fishController in GameFactory.FishSpawner.Fish.Values)
    			{
    				Vector3 vector = Camera.main.WorldToScreenPoint(fishController.Owner.transform.position);
    				Vector2 vector2 = new Vector2(vector.x, vector.y);
    				GUI.Label(new Rect(vector2.x - 50f, (float)Screen.height - vector2.y, 290f, 55f), fishController.Owner.name + " ");
    			}
    		}
    - - - Updated - - -



    You will also come across a problem when trying to edit the Reel Speed values. You will get compilation errors regarding

    "The accessibility modifier of the X accessor must be more restrictive than the property of indexer Y"

    To solve this, just delete the code before the getters and setters.

    Code:
    {
    		[global::System.Runtime.CompilerServices.CompilerGenerated]
    		protected get
    		{
    			return default(global::RodBehaviour);
    		}
    		[global::System.Runtime.CompilerServices.CompilerGenerated]
    		private set
    		{
    		}
    	}
    Just remove the terms "protected" and "private" leaving just "get" and "set" wherever necessary. It will then compile.

    Code:
    {
    		[global::System.Runtime.CompilerServices.CompilerGenerated]
    		get
    		{
    			return default(global::RodBehaviour);
    		}
    		[global::System.Runtime.CompilerServices.CompilerGenerated]
    		set
    		{
    		}
    	}
    what script to look for? i will try

  5. #19
    moonwalker8689's Avatar
    Join Date
    Aug 2019
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    1
    Hey digitalwarfare, could i ask you what words i should search for to find the fish wieght, I will try my best to modify it on my own if I can. Im not exactly adept at it just yet but i do know my way around in IL and I can remember all the different OpCode meanings atleast. Just didnt want to come off as ungrateful or just lazy because I know how much it sucks to just stare and stare at code for a while lol. Agian thank you very much for sharing this with us I am extremely grateful to you brother!

  6. The Following User Says Thank You to moonwalker8689 For This Useful Post:

    Benji1778 (11-18-2019)

  7. #20
    yuttakarn5's Avatar
    Join Date
    Nov 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    please update new version

  8. #21
    camokilla223's Avatar
    Join Date
    Dec 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by digitalwarfare View Post
    Active hacks include;

    No Fish Fight
    Fish ESP
    Bite Indicator
    Free Premium
    how can i edit my dll to have no fish fight and fish esp? i figured out free premium on my own but cant figure out the rest
    Last edited by camokilla223; 12-21-2019 at 06:27 PM.

  9. #22
    nidiggity's Avatar
    Join Date
    Jun 2017
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    still broken someone update!!

  10. #23
    axelpoly's Avatar
    Join Date
    May 2016
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    We need update guys thanks

  11. #24
    lascare777's Avatar
    Join Date
    Mar 2018
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    New update please

  12. #25
    GothBoss's Avatar
    Join Date
    Mar 2018
    Gender
    male
    Location
    UK
    Posts
    368
    Reputation
    102
    Thanks
    27
    My Mood
    Cool
    installed. thank you very much

  13. #26
    milki132's Avatar
    Join Date
    Dec 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    How You do to its work ?

  14. #27
    hakutzu's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Arad
    Posts
    13
    Reputation
    10
    Thanks
    0
    Any other things you can change like adv. licence or any other codes you found that can share?

  15. #28
    WickedSlck's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    working for 3.2.5 ?

  16. #29
    cummiedude427lol's Avatar
    Join Date
    May 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    how can someone update this for the new version?

  17. #30
    Dixiestarlight's Avatar
    Join Date
    Jan 2020
    Gender
    female
    Posts
    3
    Reputation
    10
    Thanks
    0
    Can this be updated to latest version please.
    Or can some one guide me on how to add no fight and esp.
    Many Thanks

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Fishing Planet Hack/Trainer?!?
    By AdxptHD in forum Hack Requests
    Replies: 1
    Last Post: 09-01-2017, 06:46 PM
  2. [Info] Fishing Planet - Game Item Data Dump (If you play you - You want to see this)
    By FishThePlanet in forum Steam Games Hacks & Cheats
    Replies: 13
    Last Post: 12-19-2015, 02:27 PM
  3. [Request] Fishing planet
    By Poptinsss in forum Steam Games Hacks & Cheats
    Replies: 63
    Last Post: 12-11-2015, 09:12 PM
  4. [Request] Fishing Planet Trainer!?
    By Juwc in forum Steam Games Hacks & Cheats
    Replies: 0
    Last Post: 09-15-2015, 09:48 PM
  5. Fishing Planet
    By brosqie in forum Suggestions, Requests & General Help
    Replies: 0
    Last Post: 08-16-2015, 01:36 PM