Jump to content

BEHOLD MY SHRIMPER! POWERFISHES SHRIMP ANYWHERE! GREAT FOR NEW ACCOUNTS


yibster2009

Recommended Posts

I made this shrimping script! It's my first script so I hope someone finds it useful :)

Start near lumby swamps Shrimp fishing area ( it might actually work anywhere you can fish shrimp )

The best place to run the script is right here as shown in the image

Dont start by the npc sitting down fishing or else it'll just spam click his fishing spot and you cant even reach it

 

 

Make sure you have a small fishing net in your inventory!

 

Includes anti ban such as turning camera at random times and checking xp

 

EDIT: Thank you all for the amazing feedback! i will definitely upgrade my work and use conditional sleeps. still learning and you guys are amazing for helping me out!

 

 

 

spot.jpeg

 
  •  

SimpleShrip.jar

Edited by yibster2009
Link to comment
Share on other sites

3 hours ago, yibster2009 said:

 

I made this shrimping script! It's my first script so I hope someone finds it useful :)

Start near lumby swamps Shrimp fishing area ( it might actually work anywhere you can fish shrimp )

The best place to run the script is right here as shown in the image

Dont start by the npc sitting down fishing or else it'll just spam click his fishing spot and you cant even reach it

 

 

Make sure you have a small fishing net in your inventory!

 

Includes anti ban such as turning camera at random times and checking xp

 

 

 

spot.jpeg

 
  •  

SimpleShrip.jar

Well done, Keep it up man! best of luck with all your scripting.

Link to comment
Share on other sites

@yibster2009 Remove all of this code from your script

  1.                 int waittime = random(500,10000);
  2.                 int angle = random(0, 360);
  3.                
  4.              sleep(waittime);
  5.              
  6.              if (antiban == 1);
  7.                 camera.moveYaw(camera.getYawAngle()+angle);
  8.                 }
  9.         //-------------------------------------
  10.             int checktab = random(0,1000);
  11.        
  12.             if (checktab % 6 ==0){
  13.        
  14.             tabs.open(Tab.SKILLS);
  15.             getSkills().hoverSkill(Skill.FISHING);
  16.             tabs.open(Tab.INVENTORY);

Replace your static sleep call with a conditional sleep if the interaction was successful. Now you might be asking yourself "What is a conditional sleep, Easy?" That's a great question yibs. A conditional sleep is a sleep that waits for a condition to be met. It's like saying "Sleep until... this happens". In your power fisher, it would make the most sense to interact with the fishing spot, then wait until the character has begun fishing.

So your interaction logic and method calls should look like this:

if (interaction was successful) {
     conditional sleep until player.isAnimating() OR until 7 seconds has elapsed;
}

Be sure to always use a conditional sleep after a successful interaction. This will prevent 99% of spam clicking and greatly improve the efficiency of your scripts.
Link to comment
Share on other sites

  • 1 month later...
  • 2 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...