Jump to content

TzTok Jad

Members
  • Posts

    564
  • Joined

  • Last visited

  • Feedback

    100%

Posts posted by TzTok Jad

  1. Welcome to my thread, My name is TzTok Jad, I have off and on done quest exclusively on the osbot marketplace for the past few years. I've recently gotten back into OSRS and achieved my quest cape once again, now let me do the same for you.

    Heroez7.png

    Skype: Heroez7

    Discord: https://discord.gg/PrcQFua

    My pricing is very competitive and I aim to have a high turnaround rate.  This is not a power-leveling service depending on requirements I may or may not hit your levels for you. Only quests.
    All pricing is negotiated via PM or Skype and verified by posting in this thread.  Please review terms of service before contacting me.

    OSBot TOS Below:

    Spoiler

    OSBot Global Terms of Service

     
    1. You may not log into the account during a service unless you have permission from the owner of the service, doing so will result in the termination of the service with NO Refund.
    2. You MUST NOT change the details of the account until the service has been completed, doing so will result in a void service with NO Refund.
    3. If there are any items required for the service, it is between you and the service owner to come to an agreement on who covers them
    4. You MUST change your password after the service is completed
    5. If you have any substantial wealth on the account, it is your responsibility to protect it (Either Bank Pin/Transfer Trade)
    6. Once the service is complete you must leave Feedback for the relevant parties involved
    7. You MUST Post on the service thread to acknowledge their individual T.O.S and start the service

    8. If the Service is requested to be done legit, any T.O.S related to bans/mutes become obsolete (Unless evidence can be provided of prior botting)
     

    Rules regarding workers

     

    1. When hiring workers you do so in the "Worker Application" thread
    2. You are held FULLY responsible for all workers in your service (in the event of a dispute)should you wish to take them on
    3. ALL workers MUST Pay a deposit (set by service owners) as a safety net for refunds if scammed.
     

    • In the event that your workers do scam/breach your T.O.S/some other event, the Service Owner will be FULLY responsible for any proceeds that need to be settled.
    • Since there are always different scenarios and we can't cover everything, incase a user is found to abuse their T.O.S to scam people or evade liability a staff member has the right to take action regardless of what the T.O.S states. The point of having a T.O.S. is to protect yourself from getting scammed, not to give you the right to scam others and get away with it.

     

  2. MY SUPER BASIC
    PROBABLY GONNA GET YOU BANNED

    WINE MAKER

    What it does:
    Make wine!

    How to:
    Start at any bank that has banker NPCs, make sure you have Jugs of Water and Grapes in your bank or inventory.

    Features:
    NONE! Maybe I'll add some "antiban" and paints who knows.

    DOWNLOAD:
    CLICK HERE

    SOURCE:

    
    import org.osbot.rs07.api.NPCS;
    import org.osbot.rs07.api.model.NPC;
    import org.osbot.rs07.script.Script;
    import org.osbot.rs07.script.ScriptManifest;
    import org.osbot.rs07.script.API;
    
    import java.awt.*;
    
    
    @ScriptManifest(name = "TzTok Wine Maker", author = "TzTok Jad", version = 1.0, info = "Makes wines. Super basic, love Jad.", logo = "") 
    public class WineMaker extends Script {
    
    	public int wineMade;
    	public int expGained;
    	public boolean makingWine;
    	public String grapes = "Grapes";
    	public String jugwater = "Jug of water";
    	public String unfwine = "Unfermented wine";
    	
    
    
        @[member=Override]
        public void onStart() throws InterruptedException {
            //Code here will execute before the loop is started
        	log("Starting TzTok Wine Maker");
        	makingWine = false;
        }
        
        @[member=Override]
        public void onExit() {
            //Code here will execute after the script ends
    
    
        }
    	public enum scriptState{
    		MAKEWINE, BANK, NULL, END
    	}
    	
    	public scriptState getState() {
    		if (inventory.contains(grapes) && inventory.contains(jugwater) && makingWine == false){
    			return scriptState.MAKEWINE;
    		}
    		if (inventory.isEmptyExcept(unfwine) || inventory.isEmptyExcept("Jug of wine")){
    			return scriptState.BANK;
    		}
    		else{
    			return scriptState.NULL;
    		}
    			
    		}
    
    
        @[member=Override]
        public int onLoop() throws InterruptedException {
        	
    
        	switch(getState()){
    
    
        	case MAKEWINE:
        		inventory.getItem(grapes).interact();
        		sleep(random(700,1200));
        		inventory.getItem(jugwater).interact();
        		sleep(random(700,1200));
        		while(getWidgets().get(309, 2).isVisible()){
            		sleep(random(700,1200));
        			getWidgets().get(309, 2).interact("Make All");
            		makingWine = true;
        		}
        		break;
        	case BANK:
            	NPC banker = npcs.closest("Banker");
        		banker.interact("Bank");
        		sleep(random(700,1200));
        		bank.depositAll();
        		sleep(random(700,1200));
        		if(inventory.isEmpty()){
        		bank.withdraw(jugwater, 14);
        		sleep(random(700,1200));
        		bank.withdraw(grapes, 14);
        		sleep(random(700,1200));
        		bank.close();
        		makingWine = false;
        		} 		
        		break;
        	case NULL:
        		log("NULL");
        		break;
        		
        	}
        	
            return 800; //The amount of time in milliseconds before the loop starts over
        }
    
    
        @[member=Override]
        public void onPaint(Graphics2D g) {
            //This is where you will put your code for paint(s)
    
    
    
    
        }
    
    
    }
    
    • Like 2
  3. Each vps has an IP address. However most vps are out of a data centre (big room full of servers) it's pretty easy to distinguish between a data center IP address and a home address so you'd probabaly need proxis as well

    There are VPS salesmen on these forums. that would take OSGP.

    • Like 1
  4. well not bad my two f2p goldfarmers got banned got em 1-76 ish wc botting from 60+ yews lol got a decent amount of gp botted the shit outta them got em both 76 intwo days haha imsurprised they lasted so long. p.s i dont really thing ip flagging exsists, ive been on the same ip for a minute now and ive been getting away with murder, even my other main they gave a 2 day ban, i botted the shit outta him again and finaly a week after banned lmao. almost 90 fishing

     

    2 days isn't long though, IP flagging is real.

×
×
  • Create New...