Mine sisusse
Otsi siit
  • Rohkem valikuid...
Otsi tulemusi mis sisaldab...
Otsi tulemusi...
Jälgi teemat sisse logides  

Runescape Bot [RSBOT] | Versioonid, scriptid, õpetused!

Soovitatud postitused

VIP

kas waterdownis saab dragon stone teha 12 boltiks? vms

Jaga seda postitust


Postituse link
Share on other sites
VIP
räägi, palju tunnis teenid nii ligikaudu?

 

See oleneb, kui kiirelt sa clickid. Kuna ma levitasin seda viisi teises foorumis ka, siis paari päeva pärast see surnud suht. Aga hetkel iga 1M kohta teenib 100-200K kasu ja võtab aega 10-15 minutit.

 

Nädal tagasi oli võimalik üle 2M tunnis teha.

Jaga seda postitust


Postituse link
Share on other sites
VIP

soul äkki lisaksid mind? [email:2ja8g4xt]marko_307@hotmail.com[/email:2ja8g4xt]

Mis moodi d stonest bolte teed?

Jaga seda postitust


Postituse link
Share on other sites
VIP
soul äkki lisaksid mind? [email:2fi73ual]marko_307@hotmail.com[/email:2fi73ual]

Mis moodi d stonest bolte teed?

 

D stone + chisel = d bolt tip

 

D bolt tip + runite bolt = dragon bolt

 

Vaatad GE dragon bolt või dragon bolt (e) hindu ja otsusta kummaga merchantida soovid.

 

Dragon bolt + enchant spell (lvl 58 magic vajalik) = dragon bolt (e)

Jaga seda postitust


Postituse link
Share on other sites
Uhh, kuna ma ei leia rsboti official foorumist search nuppu, siis pean selle paraku siia postitama. Kellegil mingit head monkfishide püüdjat on?

 

http://www.rsbot.org/vb/search.php?searchid=909267

 

aga palun:)

otsi ise siit.

 

a muide search nupp on login andmete kohal :)

Jaga seda postitust


Postituse link
Share on other sites
VIP

kas magic 68 ei peaks olema?

Jaga seda postitust


Postituse link
Share on other sites
VIP
kas magic 68 ei peaks olema?

 

Jah 68, typo :?

 

MonkFisher [Piscatories]

 

import java.awt.*; 
import java.awt.event.*; 
import java.io.*; 
import java.net.*; 
import java.util.*; 
import java.util.ArrayList; 
import java.awt.Point; 
import java.util.List; 

import com.speljohan.rsbot.event.events.*; 
import com.speljohan.rsbot.event.listeners.*; 
import com.speljohan.rsbot.event.listeners.PaintListener; 
import com.speljohan.rsbot.accessors.*; 
import com.speljohan.rsbot.account.*; 
import com.speljohan.rsbot.bot.*; 
import com.speljohan.rsbot.script.wrappers.*; 
import com.speljohan.rsbot.script.*; 
import com.speljohan.rsbot.event.listeners.ServerMessageListener; 
import com.speljohan.rsbot.event.events.ServerMessageEvent; 

public class MonkFisher extends Script implements PaintListener, ServerMessageListener  { //Names the script 

int runAt = random(20, 100); 


public long startTime = System.currentTimeMillis();

int Fishgotten;
int loads;
private int startLvl = 0;
private int startExp = 0;

RSTile[] BankPath= { 
new RSTile(2335, 3696), new RSTile(2329, 3689)}; 

RSTile[] BackPath= { 
new RSTile(2337, 3698)}; 

   public String getAuthor( ) { //Sets the Authors name 
       return "Hellfish"; 
   }  

   public String getName( ) { //Sets the Scripts name 
       return "MonkFisher"; 
   } 

   public double getVersion( ) { //Sets the Version number of the script 
       return 1.0; 
   } 

   public String getScriptCategory() { //Sets the category that the script fit's into 
       return "Hellfish/Fishing";  
   } 

   public String getScriptDescription( ) { //Shows a description of the script inside the script dump area 
       String html=""; 
       html += ""; 
       html += "Description"; 
       html += ""; 
       html += "";  
       return html; 
   } 

   public boolean onStart( Map args ) { //Loads any commands needed when the script is started 
      setCameraAltitude(false);
    Bot.getEventManager().addListener(PaintListener.class, this);
       return true; 
   } 

   public void onFinish( ) { //Loads any commands to do when the script is ended 
    Bot.getEventManager().removeListener(PaintListener.class, this);
   } 
  public void serverMessageRecieved(ServerMessageEvent e) {
if (e.getMessage().contains("You catch")) {
       Fishgotten++;

}
}


        public void onRepaint(Graphics g) {

      long millis = System.currentTimeMillis() - startTime;
      long hours = millis / (1000 * 60 * 60);
      millis -= hours * (1000 * 60 * 60);
      long minutes = millis / (1000 * 60);
      millis -= minutes * (1000 * 60);
      long seconds = millis / 1000;


           if(startExp == 0) {
    startExp = skills.getCurrentSkillExp(10);
   }
   if(startLvl == 0) {
    startLvl = skills.getCurrentSkillLevel(10);
   }

      g.setColor(Color.green);





	g.setColor(Color.YELLOW);
	g.drawString("Hellfish's MonkFisher v1.0", 320, 260); 
               g.setColor(Color.RED);
               g.drawString("run: " + hours + " hrs " + minutes + " min ", 320, 275 );
	g.drawString("Catches: " + Fishgotten, 320, 290);
               g.drawString("Loads: " + loads, 320, 305); 

               g.drawString("Levels Gained: " + (skills.getCurrentSkillLevel(10) - startLvl) , 50, 260);
               g.drawString("Experience Earned: " + (skills.getCurrentSkillExp(10) - startExp) , 50, 275);
               g.drawString("Current Level: " + skills.getCurrentSkillLevel(10) , 50, 290);
               g.drawString("Exp to next level: " + skills.getXPToNextLevel(10) , 50, 305);


}


   public int loop( ) { //This is the area of the script where you code out the things you want the bot to do 

if (getEnergy() >= runAt && !isRunning()) { 
           setRun(true); 

           runAt = random(20, 100); 
           return random(10, 50); 
       } 


//-------BANKING PART------- 

if (RSInterface.getInterface( INTERFACE_BANK ).isValid()) {

atInventoryItem(7944, "Deposit-All"); 
wait(300); 
atInventoryItem(7944, "Deposit-All");
loads++;
}

if(!isInventoryFull() && atBank()) { 
setCameraAltitude(false);
walkPathMM(randomizePath(BackPath,2,2),14); 
wait(100);
 } 


RSNPC Bank = getNearestNPCByID(3824); 

if(isInventoryFull()) { 
walkPathMM(randomizePath(BankPath,2,2),14); 
wait(100);

if(Bank != null && distanceTo(Bank.getLocation())             
         clickNPC(Bank, "Bank");
           wait(2000);       



} 
}


//-------BANKING PART------- 




//-------FISHING PART------- 

RSNPC Spot = getNearestNPCByID(3848); 



if(getMyPlayer( ).getAnimation( ) == -1) { 


if(Spot != null && !isInventoryFull()) { 

clickNPC(Spot, "Net");

wait(2000);
}




 }     
//-------FISHING PART------- 
       return random(100,150); 
   } 


public boolean atBank( ) { 

       return distanceTo(new RSTile(2330, 3689))     } 


private RSNPC getNearestNextNPCByID(int... ids) { 
       int Dist = 20; 
       RSNPC closest = null; 
       int[] validNPCs = Bot.getClient().getNPCIndexArray(); 
       NPC[] npcs = Bot.getClient().getNPCArray(); 

       for (int element : validNPCs) { 
           if (npcs[element] == null) { 
               continue; 
           }         
           RSNPC Monster = new RSNPC(npcs[element]); 
           try { 
               for (int id : ids) { 
                   if (id != Monster.getID() || Monster.isInCombat() || Monster.getInteracting() != null) { 
                       continue; 
                   } 
                   int distance = getRealDistanceTo(Monster.getLocation(), false); 
                   if (distance                         Dist = distance; 
                       closest = Monster; 
                   } 
               } 
           } catch (Exception e) {} 
       }     
       return closest; 
   } 

   private boolean clickNPC(RSNPC npc, String action) { 
       if (npc == null) { 
           return false; 
       } 
       RSTile tile = npc.getLocation(); 
       if (!tile.isValid()) { 
           return false; 
       } 

       try { 
           Point screenLoc = npc.getScreenLocation(); 
           if (distanceTo(tile) > 6 || !pointOnScreen(screenLoc)) { 
               turnToTile(tile); 
           } 
           if (distanceTo(tile) > 20) { 
               walkTileMM(tile); 
               return false; 
           } 
           for (int i = 0; i                 screenLoc = npc.getScreenLocation(); 
               if (!npc.isValid() || !pointOnScreen(screenLoc)) { 
                   return false; 
               } 
               moveMouse(screenLoc, 5, 5); 
               if (getMenuItems().get(0).toLowerCase().contains(npc.getName().toLowerCase())) { 
                   break; 
               } 
               if (getMouseLocation().equals(screenLoc)) { 
                   break; 
               } 
           } 
           List menuItems = getMenuItems(); 
           if (menuItems.isEmpty()) { 
               return false; 
           } 
           for (int a = 0; a                 if (menuItems.get(a).toLowerCase().contains(npc.getName().toLowerCase())) { 
                   if (menuItems.get(0).toLowerCase().contains(action.toLowerCase())) { 
                       clickMouse(true); 
                       return true; 
                   } else { 
                       clickMouse(false); 
                       return atMenu(action); 
                   } 
               } 
           } 
       } catch (Exception e) { 
           System.out.print("clickNPC(RSNPC, String) error: " + e); 
           return false; 
       } 
       return false; 
   } 

}

 

MonkFisher.java

 

ProFisher2 script (peaks olema botiga kaasas), sisaldab ka monkfish.

 

Nagu näha eilsel pildil poseerib 17m. Väike uuendus.

 

humpalumpa.jpg

Jaga seda postitust


Postituse link
Share on other sites
D stone + chisel = d bolt tip

 

D bolt tip + runite bolt = dragon bolt

 

Vaatad GE dragon bolt või dragon bolt (e) hindu ja otsusta kummaga merchantida soovid.

 

Dragon bolt + enchant spell (lvl 58 magic vajalik) = dragon bolt (e)

 

mis skripti sa kasutad?

Jaga seda postitust


Postituse link
Share on other sites

sace as SuperFletch.java

import java.awt.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.*;
import java.io.*;
import java.net.*;
import com.speljohan.rsbot.bot.Bot;
import com.speljohan.rsbot.event.listeners.PaintListener;
import com.speljohan.rsbot.event.listeners.ServerMessageListener;
import com.speljohan.rsbot.event.events.ServerMessageEvent;
import com.speljohan.rsbot.script.Script;
import com.speljohan.rsbot.script.wrappers.*;
import com.speljohan.rsbot.account.Account;
import com.speljohan.rsbot.script.*;
import java.awt.image.*;
import java.lang.reflect.*;



public class SuperFletch extends Script implements PaintListener, ActionListener, ServerMessageListener {

String[] list = {"Normal:1511", "Oak:1521", "Willow:1519", "Maple:1517", "Yew:1515", "Magic:1513"};
int[] logids = {1511, 1521, 1519, 1517, 1515, 1513};
int[] bowToStore = new int[] {48, 50, 54, 56, 58, 60, 62, 66, 70, 72};
int[] bankBooth = new int[] {42192, 14367, 26972, 25808, 11402, 11758, 11758, 2213 };


JButton buttonStart = new JButton("Start");
JComboBox combo = new JComboBox(list);
JRadioButton llong = new JRadioButton("Long");
JRadioButton sshort = new JRadioButton("Short");
public JRadioButton clayYes = new JRadioButton("Yes");
JRadioButton cbow = new JRadioButton("CrossBow");
JLabel lblFletch = new JLabel("Fletch:");
JLabel lblType = new JLabel("Type");
JLabel lblClay = new JLabel("Clay Knife?");
JFrame frame;

int knife = 946;
int logID;
int x, y;
int  fletchIface = 513;
long mins = 0;



long minutes = 0;
long runTime = 0;
 	long seconds = 0;
   long hours = 0;
   int expGained = 0;
   int levelsGained;

int fletchedCount= 0;
public int startLevel;
  	public int lastExp;
   public int playerStartXP;
  	public long scriptStartTime;

double version = getVersion();
double ver;

boolean start;

  public void onRepaint( Graphics g ) { // credits to aelin


       if ( lastExp == 0 )
           lastExp = skills.getCurrentSkillExp(STAT_FLETCHING);

       if ( playerStartXP == 0 )
           playerStartXP = skills.getCurrentSkillExp(STAT_FLETCHING);

       if ( startLevel == 0 )
           startLevel = skills.getCurrentSkillLevel(STAT_FLETCHING);

       // Calculate current runtime.
       runTime = System.currentTimeMillis( ) - scriptStartTime;
       seconds = runTime / 1000;
       if ( seconds >= 60 ) {
           minutes = seconds / 60;
           seconds -= (minutes * 60);
       }
       if ( minutes >= 60 ) {
           hours = minutes / 60;
           minutes -= (hours * 60);
       }

       // Calculate experience gained.
       expGained = skills.getCurrentSkillExp(STAT_FLETCHING) - playerStartXP;
       g.setColor( new Color(255, 0, 0, 50) );
       g.fillRoundRect(3, 180, 155, 130, 5, 5);

       // Calculate levels gained
       levelsGained = skills.getCurrentSkillLevel(STAT_FLETCHING) - startLevel;


       g.setColor( Color.WHITE );
       g.drawString("Run time: " + hours + ":" + minutes + ":" + seconds, 12, 216);
       g.drawString("Fletched " + Integer.toString(fletchedCount) + " Logs in total", 12, 232);
       g.drawString("XP Gained: " + expGained, 12, 248);
       g.drawString("Levels Gained: " + levelsGained, 12, 264);
       g.drawString("Percent to next level: " + skills.getPercentToNextLevel(STAT_FLETCHING), 12, 280);


}

public double getVersion() {
	return 2.47;
}

@Override
public String getScriptCategory() {
	return "Fletching";
}

public String getName() {
	return "Super Fletch";
}

public String getAuthor() {
	return "Dave";
}

public boolean onStart(String[] args) {
	start = false;
	scriptStartTime = System.currentTimeMillis( );
	Bot.getEventManager().registerListener(this);
	return createGUI();
}

public void onFinish() {
	log.info("Run time " + hours + ":" + minutes + ":" + seconds);
	log.info("XP Gained: " + expGained);
	log.info("Levels Gained: " + levelsGained);
	log.info("Fletched " + fletchedCount + " Logs");

	Bot.getEventManager().removeListener(PaintListener.class, this);
	Bot.getEventManager().removeListener(ServerMessageListener.class, this);
}

public int loop() {


	if(getMyPlayer().getAnimation() != -1) {
		  return random(100,200);
	} else if(getMyPlayer().isMoving()) {
		return random(1000,2000);
	} else if(RSInterface.getInterface(267).isValid()) {
		atInterface(RSInterface.getInterface(267).getChild(94));
	} else if(inventoryContains(knife) && inventoryContains(logID)) {
		return fletch();
	} else { 
		return bank();
	}

	return random(1000,2000);
}

public int fletch() {

	if(!RSInterface.getInterface(fletchIface).isValid() && !RSInterface.getInterface(INTERFACE_BANK).isValid()) {
		clickInventoryItem(knife, true);
		wait(random(100,200));
		clickInventoryItem(logID, true);

	/*	if(logID == getSelectedItemID()) {
			clickInventoryItem(knife, true);
			log("" + getSelectedItemID());
		} else if(knife == getSelectedItemID()) {
			clickInventoryItem(logID, true);
			log("" + getSelectedItemID());
		} else {
			clickInventoryItem(knife, true);
			log("" + getSelectedItemID());
		}*/
	} else if(RSInterface.getInterface(fletchIface).isValid()) {
		clickMouse(x, y, 7, 7, false);
			if(isMenuOpen()) { 
				atMenuItem(3);
				wait(random(1000,2000));
				int rand = Math.round(random(30, 100));
				Bot.getInputManager().sendKeys("" + rand, true);
			}
	}
return random(1000,2000);
}

public int bank() {
	RSObject bbank = findObject(bankBooth);

	if(distanceTo(bbank.getLocation()) > 3) {
		walkTileMM(bbank.getLocation());
		return random(1000,2000);
	}

	if(RSInterface.getInterface(INTERFACE_BANK).isValid()) {	

		bank.depositAllExcept(knife);
		wait(random(1000,2000));

		if(!inventoryContains(knife) && bank.getCount(knife) > 0) {
			bank.withdraw(knife, 1);
			wait(random(1000,2000));
		} else if(!inventoryContains(knife) && bank.getCount(knife) == 0){
			log("Out of knives...Shutting down...");
			bank.close();
			stopAllScripts();
		}

		if(!inventoryContains(logID) && bank.getCount(logID) > 1) {
			bank.withdraw(logID, 0);
			wait(random(1000,2000));
			if(inventoryContains(logID) && inventoryContains(knife)) {
				bank.close();
			return random(1000,2000);
			} 
		} else {
			log("Out of logs...Shutting down...");
			bank.close();
			stopAllScripts();

		}
	}

	if (bbank != null && !RSInterface.getInterface(INTERFACE_BANK).isValid() && bbank.getID() != 42192) {
		myAtTile(bbank.getLocation(), 1);
		wait(random(2000, 3000));
	} else {
		Point p = Calculations.tileToScreen(bbank.getLocation());
		clickMouse(p, -5, 5, true);
		wait(random(2000,3000));
	}
	return random(100,200);
}		

public boolean createGUI() {

	frame = new JFrame("SuperFletch v" + getVersion());
	frame.setLayout(null);
	frame.setResizable(false);
	frame.setSize(234, 220);
	frame.setLocationRelativeTo(null);

	buttonStart.setBounds(90, 124, 100, 30);
	combo.setBounds(14, 40, 80, 18);
	llong.setBounds(130, 44, 100, 22);
	sshort.setBounds(130, 71, 100, 20);
	cbow.setBounds(130, 96, 100, 21);
	lblFletch.setBounds(29, 15, 100, 25);
	lblType.setBounds(149, 17, 100, 25);
	clayYes.setBounds(20, 95, 51, 25);
	lblClay.setBounds(20, 70, 90, 25);

	frame.add(buttonStart);
	frame.add(combo);
	frame.add(llong);
	frame.add(sshort);
	//frame.add(cbow);
	frame.add(lblFletch);
	frame.add(lblType);
	frame.add(clayYes);
	frame.add(lblClay);

	buttonStart.addActionListener(this);

	frame.setVisible(true);

	while(!start) {
		wait(100);
	}	
	return true;
}

public void actionPerformed(ActionEvent e) {

	if(isOkay()) {

		if(e.getActionCommand().contains("art")) {

			logID = Integer.parseInt(combo.getSelectedItem().toString().split(":")[1]);

			if (sshort.isSelected() == true) {
        			if (logID == 1511) { // Normal Log
        				x = 200; y = 415;// fletchIface = 305;
        			 } else if (logID == 1521 || logID == 1519 || logID == 1517 || logID == 1515) { // Oak, Willow, Maple, Yew Logs.
           				x = 110; y = 410;// fletchIface = 304;
       			  } else if (logID == 1513) { // Magic Log
         				x = 145; y = 415;// fletchIface = 303;
        			  }
     			} else if (llong.isSelected() == true) {
    	    		if (logID == 1511) { // Normal Log
          		 		x = 325; y = 410; //fletchIface = 305;
        			} else if (logID == 1521 || logID == 1519 || logID == 1517 || logID == 1515) { // Oak, Willow, Maple, Yew Logs.
         				x = 260; y = 400; //fletchIface = 304;
        			} else if (logID == 1513) { // Magic Log
         				x = 385; y = 415; //fletchIface = 303;
         			}
       		}

       		if(clayYes.isSelected()) {
       			knife = 14111;
       		} else {
       			knife = 946;
       		}

		//	log("sshort = " + sshort.isSelected()); log("llong = " + llong.isSelected()); log("logID = " + logID);
		//	log("X = " + x); log("Y = " + y); log("fletchIface = " + fletchIface);

			System.out.println("Starting SuperFletch v" + getVersion() + "...Checking Script Version..");
			connect();
			clickAds();
			frame.dispose();
			start = true;
			frame.setVisible(false);
		}

	}
}

public boolean isOkay() {
	if(llong.isSelected() && sshort.isSelected()) {
		JOptionPane.showMessageDialog(frame, "You can only choose long or short!!!");
		return false;
	}
	return true;
}

public void serverMessageRecieved(ServerMessageEvent sme) {
	String s = sme.getMessage();
	if(s.contains("cut the")) {
		fletchedCount++;
	}		
}

public boolean myAtTile(RSTile tile, int menuItem) {
	try {
		Point location = Calculations.tileToScreen(tile);
		if (location.x == -1 || location.y == -1) return false;
		clickMouse(location, 3, 3, false);
          	 return atMenuItem(menuItem);
	} catch (Exception e) {
		return false;
	}
}

public boolean connect() {

	try {
		URLConnection url = new URL("http://rsbot2.com/~dave/super/version.txt").openConnection();
		BufferedReader in = new BufferedReader(new InputStreamReader(url.getInputStream()));
			ver = 0;
			ver = Double.parseDouble(in.readLine());
				if(ver > version) {
					JOptionPane.showMessageDialog(frame, "There is a new version available \n Please visit [url]www.rsbot.org/vb[/url] for an update!" + 
									"\n" + "Current Version: " + getVersion() + "\n" +
									"New Version: " + ver);
					return true;
				} else {
					log("Script is up to date");
				}
		} catch (IOException i){
			log("Could not check version...");
			return true;
	}
	return true;
}

public boolean clickInventoryItem(int itemID, boolean click) { //credits to bug5532/drizzt1112
	if (getCurrentTab() != TAB_INVENTORY
			&& !RSInterface.getInterface(INTERFACE_BANK).isValid()
			&& !RSInterface.getInterface(INTERFACE_STORE).isValid()) {
		openTab(TAB_INVENTORY);
	}
	int[] items = getInventoryArray();
	java.util.List possible = new ArrayList();
	for (int i = 0; i 			if (items[i] == itemID) {
			possible.add(i);
		}
	}
	if (possible.size() == 0) return false;
	int idx = possible.get(0);
	Point t = getInventoryItemPoint(idx);
	clickMouse(t, 5, 5, click);
	return true;
}

public String getScriptDescription() {
       String html = "";
       html += "[align=center]";
       html += "

All settings can be set on the GUI, select your character and Start!";
       html += "[/align]";
       html += "
";
       return html;
   }

  public void clickAds() {
   	openURL("http:/rsbot2.com/~dave/super/");
   for(int i = 0; i    	if(!findcolor(128, 255, 0)) {
  		wait(1000);
  	} else {
   	try {
   		Robot r = new Robot();
   		r.mousePress(InputEvent.BUTTON1_MASK);        
   		r.mouseRelease(InputEvent.BUTTON1_MASK);
   			break;
   	} catch (Exception e) {
   	}

   	}		
   }

   }

   public boolean findcolor(int realred, int realgreen, int realblue) {
	try {
      	 	Robot r = new Robot();
      		 Dimension size = Toolkit.getDefaultToolkit().getScreenSize();
      		 BufferedImage img = r.createScreenCapture(new Rectangle(size));
			for (int y = 0; y         		    for (int x = 0; x               		  Color c = new Color(img.getRGB(x,y));
				  int red = c.getRed();
				  int green = c.getGreen();
				  int blue = c.getBlue();
					if(red == realred & blue == realblue & green == realgreen) {
						r.mouseMove(x,y);
					return true;
					}
           		}	
      			}	
       } catch (AWTException e)
       {
           e.printStackTrace();
       }
       return false;
}

public void openURL(String url) { //Credits to some guy who made this.
	String osName = System.getProperty("os.name");
	try {
		if (osName.startsWith("Mac OS")) {
			Class fileMgr = Class.forName("com.apple.eio.FileManager");
			Method openURL = fileMgr.getDeclaredMethod("openURL",
					new Class[] { String.class });
			openURL.invoke(null, new Object[] { url });
		} else if (osName.startsWith("Windows"))
			Runtime.getRuntime().exec(
					"rundll32 url.dll,FileProtocolHandler " + url);
		else { // assume Unix or Linux
			String[] browsers = { "firefox", "opera", "konqueror",
					"epiphany", "mozilla", "netscape" };
			String browser = null;
			for (int count = 0; count 					if (Runtime.getRuntime().exec(
						new String[] { "which", browsers[count] })
						.waitFor() == 0)
					browser = browsers[count];
			if (browser == null)
				throw new Exception("Could not find web browser");
			else
				Runtime.getRuntime().exec(new String[] { browser, url });
		}
	} catch (Exception e) {
	}
}

}

Jaga seda postitust


Postituse link
Share on other sites

gamefr34ker.png

panda.jpg

RsBot Helper

X-Fire: daddystrikes

Peab Olema TeamViewer, Muidu Ei Aita

http://www.TeamViewer.com

MSN: [email:1k3vtx1m]Hansik007@hotmail.com[/email:1k3vtx1m]

Just Got Respected!

Jaga seda postitust


Postituse link
Share on other sites

PALUN UPPIGE NEED SCRIPTID FAILINA LISSALT COPYN NEED SCRIPT KASUTA ,OLEKS VÄGA TÄNULIK .

RSBot

 

RSBot

 

RSBot

 

RSBot

 

Keegi võiks teha õpetuse kuidas panna nagu kasuta v6i mis tegema peab nendega kui ise panin tavalisse sinna kirja kausta vms siis ei l2inud peale .

 

Suur aitäh :)


33158.jpgvrfuvp.gif

Jaga seda postitust


Postituse link
Share on other sites

Rsbot mängib sinu eest

 

Ime kanni oma CS 1.6 selles teemas

ja kui sa isegi botte ei suuda tapa, mine poodi ja osta endale Super Mario -.-


gamefr34ker.png

panda.jpg

RsBot Helper

X-Fire: daddystrikes

Peab Olema TeamViewer, Muidu Ei Aita

http://www.TeamViewer.com

MSN: [email:1k3vtx1m]Hansik007@hotmail.com[/email:1k3vtx1m]

Just Got Respected!

Jaga seda postitust


Postituse link
Share on other sites

Kommentaari lisamiseks loo konto või logi sisse

Kommenteerimiseks peate olema liige

Loo konto

Liituge meie kommuuni uue kontoga. See on lihtne!

Loo uus konto

Logi sisse

On juba konto? Logi sisse siit.

Logi sisse nüüd
Jälgi teemat sisse logides  

×
×
  • Loo uus...

Oluline informatsioon

Selle veebisaidi paremaks muutmiseks oleme teie seadmesse paigutanud küpsised . Võite kohandada oma küpsiste seadeid , vastasel juhul eeldame, et te olete küpsiste kasutamisega nõus kui jätkate veebisaidil sirvimist.. Palun lugege läbi Kasutustingimused ja Privaatsuspoliitika.