Jump to content

7331337

Members
  • Posts

    211
  • Joined

  • Last visited

  • Feedback

    100%

Posts posted by 7331337

  1. Sold Out no ETA for a restock

     

     

    1) I'm not going first

    2) Verified Paypal only

    3) You'll be asked to send a note with the payment.

    4) If you want a middleman, you're paying the fee's for them.

    5) We can do increments if you want of 1M

     

    Post here and PM me your Skype with how much you want to buy.

  2. Flicks prayer to stay at one, doesn't use pots or special attack. Useful for afking for 40-90 minutes at a time depending on what you're wearing. Also has a slight anti-ban, I wasn't banned and I used this for approx 60 hours 14hr/s a day. I suggest changing the Sleep() timers to be more unique for yourself.

    import org.osbot.rs07.script.Script;
    import org.osbot.rs07.script.ScriptManifest;
    import org.osbot.rs07.api.ui.Message;
    import org.osbot.rs07.api.ui.RS2InterfaceChild;
    import org.osbot.rs07.api.ui.Tab;
    import org.osbot.rs07.api.ui.Message.MessageType;
    
    import java.awt.*;
    import java.util.List;
    
    @ScriptManifest(
    		author = "7331337", 
    		info = "Assist NMZ training, automatic hp flicker.", 
    		name = "EzEMZAssister", 
    		version = 0.2, 
    		logo = "")
    
    public class main extends Script{
    	int[] hardFlick = {707,260,723,275};
    	int totalFlicks = 0;
    	
        @Override
        public void onStart() {
        	log("Started");
        }
    	
        @Override
        public void onExit() {
            //Code here will execute after the script ends
        }
        
        @Override
        public int onLoop() throws InterruptedException {
        	int prayX = random(hardFlick[0], hardFlick[2]);
        	int prayY = random(hardFlick[1], hardFlick[3]);
        	int [] slightFlick = {(prayX + random (0, 4) - 2), (prayY + random (0, 4) - 2)};
        	int flickChance = random(0,100);
        	inventory.interact("Absorption", "Drink");
        	
        	if (getTabs().getOpen() == Tab.PRAYER){
        		totalFlicks++;
        		getMouse().click(prayX,prayY, false);
        		sleep(random(79,438));
        		if (flickChance > 85){
        			getMouse().click(slightFlick[0], slightFlick[1], false);
        			return random(14721,37197);
        		}
        		if (flickChance < 2){
        	    	prayX = random(hardFlick[0], hardFlick[2]);
        	    	prayY = random(hardFlick[1], hardFlick[3]);
        	    	getMouse().click(prayX,prayY, false);
        	    	log ("Yolo flick occured");
        			return random(13147,37971);
        		}
        		
        		getMouse().click(prayX,prayY, false);
        		log("Times flicked; " + totalFlicks);
        		return random(12475,37741);
        	} else {
        		getTabs().open(Tab.PRAYER);
        		log("Prayer is closed opening tab...");
        	}
        	
            return random(121,1047); //The amount of time in milliseconds before the loop starts over
        }
    
    
        @Override
        public void onPaint(Graphics2D g) {
            //This is where you will put your code for paint(s)
        }
        
        
    }
    

    Download; http://multiupload.biz/ls75gecueu9r/nmzFlicker_MultiUpload.biz.jar.html

  3. All of my accounts just got banned in less then 12 hours of using my brand new custom script for Runecrafting running...

    e4cfb5be4237d7076253176302096912.png

     

    Each account had its on unique IP (and were older then a few months) and my script had the following antibans;

    - Breaks enabled every couple hours for around 20-60 minutes

    - Randomized pathing + extra security measures like avoiding the tribesmen/spider if they were in the path itself

    - Random trade partners each time for trading doubling natures

    - Randomly sold 10 extra essence to the store to seem humanly

    - Lazy follow to follow someone else walking the the store if possible

     

    bans 2 hard jagex 2 gewd

    • Like 1
  4. Please be VERY specific when reporting bugs.

     

    1. closest(String... names) uses something called NameFilter that ignores case. Are you sure the issue isn't stemming from those spaces?

     

    2. I was not able to replicate isFull() issue

     

    3. Fixed in 2.3.41.

     

    4. Are you sure that you aren't re-defining that reference and it's grabbing something else aka getObjects().closest("Tree") ?

     

    1. Just tested and it was for any-name with a space

    2. That was my fault it seems =/

    3. ;)

    4.  Nope I'm never redefining (Unless calling it directly from getObjects().closest("Tree") is doing that by default )and other scripters on chat reported the same thing and do a visibility check to fix it

     

    I'll be more specific next time.

  5. what exactly causes jagex to flag your ip? is it when you reach a certain limit of bots with the same ip xd i lost my main cus of this a year ago but now i'm, back trying to goldfarm tongue.png

     

    I never personally dealt with it because I gold farmed back in 2013 when you could bot 24/hr and not even give a shit. Pretty sure they'll flag your accounts based on these;

    - Time spent logged

    - Common bot patterns

    - Watched by jagex mods (yh they watch you)

    - Highly watched skils like WC, Hunter, etc

    - Number of bots per IP (more then 2 is easily detectable and noticeable when accs have same logins, logouts, etc. )

    • Like 1
  6. how long will a vpn last before it gets "flagged" by jagex? does that mean I'd have to buy a different vpn after my accounts get banned? Also shouldnt there be alot of vpns with flagged ips from jagex considering how many people bot and use vpns? how do I know if the vpn I purchase will be safe or not considering people may have possibly botted with that IP before? sorry am still kinda new to all this goldfarm thing. Currently using 4 vpn proxies 2 accounts each and been botting 3 days straight no bans.

     

    There's 10k+  proxies out there, the chances of getting a flagged IP is slim. I'd watch out for shared proxies because they'll be more likely to be flagged (maybe something like 1/100 tbh if there cheap as-well). Also depending on the seller they'll more than likely replace at a discounted rate. Once they get banned its a flagged IP so discard it.

    • Like 1
  7. player.getClosest; Issue is getting the players by capitalized names such as names like "plainoldname" work but names such as "Plain old Name" won't work and return nulls.

     

    inventory.isFull: Is constantly return full even if you have only a couple items actually in it.

     

    bank.withdrawAll: Bugged, refuses to withdraw but works in 2.3.39

     

    trading.accept: Does nothing for both trade screens

     

    objects.getClosest("name"): Null checking is junk'd once it loads it once it'll keep returning that its not a null and you'll now be forced now use that and objects.getClosest("name").isVisible() to fix it.

×
×
  • Create New...