Jump to content

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


Recommended Posts

Posted (edited)

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

Posted

@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.
  • 1 month later...
  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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