Thread: Fishing Base

Results 1 to 7 of 7
  1. #1 Fishing Base 
    rukia
    Guest
    Hardness: 2/10

    Assumed knowledge: c + p

    Server Base: P16 (should work on all)

    Credits: 75% to santa stick for supplying the code 25% me for makeing it better adn adding timers

    ok as i said this is just a fishing base not total fishing but to start go into your client.java and search for

    Code:
    				boolean PutNPCCoords = false;
    underneath it you should see stuff like

    Code:
    				if (NPCID == 309) { /*Lure From Lure & Bait - Any Sea*/
    					if (IsItemInBag(309) == true && IsItemInBag(314) == true) {
    						FishingGo = true;
    						fishing[8] = 4;
    						fishing[1] = Item.fishing_fly_lvl[0];
    						fishing[5] = 314;
    						fishing[6] = 309;
    						fishing[7] = 0x26E;
    					} else {
    						sendMessage("You need a "+GetItemName(309)+" and "+GetItemName(314)+" to fish here.");
    					}
    				} else if (NPCID == 312) { /*Cage From Cage & Harpoon - Any Sea*/
    					if (IsItemInBag(301) == true) {
    						FishingGo = true;
    						fishing[1] = 40;
    						fishing[2] = 90;
    						fishing[4] = 377;
    						fishing[6] = 301;
    						fishing[7] = 0x26D;
    					} else {
    						sendMessage("You need a "+GetItemName(301)+" to fish here.");
    					}
    				} else if (NPCID == 313) { /*Net From Net & Harpoon - Any Sea*/
    					if (IsItemInBag(307) == true && IsItemInBag(313) == true) {
    						FishingGo = true;
    						fishing[8] = 5;
    						fishing[1] = Item.fishing_big_net_lvl[0];
    						fishing[5] = 313;
    						fishing[6] = 307;
    						fishing[7] = 0x26E;
    					} else {
    						sendMessage("You need a "+GetItemName(307)+" and "+GetItemName(313)+" to fish here.");
    					}
    				} else if (NPCID == 316) { /*Net From Net & Bait - Any Sea*/
    					if (IsItemInBag(303) == true) {
    						FishingGo = true;
    						fishing[8] = 1;
    						fishing[1] = Item.fishing_net_lvl[0];
    						fishing[6] = 303;
    						fishing[7] = 0x26D;
    //playerMD = NPCSlot;
    					} else {
    						sendMessage("You need a "+GetItemName(303)+" to fish here.");
    					}
    				} else if (NPCID == 319) { /*Net From Net & Bait - Lumby Swamp*/
    					if (IsItemInBag(303) == true) {
    						FishingGo = true;
    						fishing[1] = 33;
    						fishing[2] = 75;
    						fishing[4] = 5004;
    						fishing[6] = 303;
    						fishing[7] = 0x26D;
    					} else {
    						sendMessage("You need a "+GetItemName(303)+" to fish here.");
    					}
    				} else
    delete ALL of that

    then add this

    Code:
    if (NPCID == 235 && playerLevel[10] >= 0) { //shrimp fishing
    if (IsItemInBag(303) == true && actionTimer == 0) {
    startAnimation(621);
    addItem(317, 1);
    addSkillXP(100, 10);
    actionTimer = 2;
    sendMessage("You catch a shrimp");
    } else {
    sendMessage("you need a net to catch shrimps");
    }
    }
    and thats the base of fishing you can add more if youd like to make full fishing and alter things, were it says (NPCID == 235 thats the id of the fishing spot. if (IsItemInBag(303) means that you need to have a net in your inventory to fish w/e. true && actionTimer == 0) { is so people dont mass fish.

    to add the fishing spots jsut noclip over the water and go into your autospawn.cfg and add the fishing spot id that u used for that fish, so ya its pretty simple but takes a bit of brain power.

    like i said i only get 25% credits for adding timers and required items ect. but 75% goes to santa stick
     

  2. #2  
    Community Veteran
    Kracya's Avatar
    Join Date
    Jul 2006
    Posts
    472
    Thanks given
    0
    Thanks received
    1
    Rep Power
    57
    Laugh Out Loud.
    THE ONE AND ONLY
     

  3. #3  
    Community Veteran


    Join Date
    Sep 2006
    Age
    28
    Posts
    278
    Thanks given
    4
    Thanks received
    8
    Rep Power
    89
    derepped.


    appendto.de-repped();
     

  4. #4  
    rukia
    Guest
    something wrong?
     

  5. #5  
    Crazy Cam10
    Guest
    Quote Originally Posted by rukia View Post
    something wrong?
    Uhh, This Is Crap?
     

  6. #6  
    JavaŠ
    Guest
    Quote Originally Posted by Stephen View Post
    derepped.


    appendto.de-repped();
    public Static String failures [] = {"Stephen"};
     

  7. #7  
    Community Veteran
    Kracya's Avatar
    Join Date
    Jul 2006
    Posts
    472
    Thanks given
    0
    Thanks received
    1
    Rep Power
    57
    Quote Originally Posted by JavaŠ View Post
    public Static String failures [] = {"Stephen"};
    /agreed .
    THE ONE AND ONLY
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Fishing base error.
    By rockarocka in forum Help
    Replies: 1
    Last Post: 01-13-2011, 03:30 PM
  2. [Hyperion] Fishing base!
    By Fire Cape in forum Snippets
    Replies: 3
    Last Post: 07-24-2010, 08:14 AM
  3. Fishing Base | 100% | Events
    By Greyfield in forum Snippets
    Replies: 15
    Last Post: 01-22-2010, 07:52 PM
  4. rs2hd Fishing base
    By uber haxur in forum Snippets
    Replies: 15
    Last Post: 07-19-2009, 06:39 PM
  5. Small Base For Fishing
    By Mt.DW in forum Tutorials
    Replies: 1
    Last Post: 02-20-2008, 01:29 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •