Mine sisusse
Otsi siit
  • Rohkem valikuid...
Otsi tulemusi mis sisaldab...
Otsi tulemusi...

Genius

Blokeeritud
  • Postituste kogus

    448
  • Liitus

  • Viimati külastas

  • Tagasiside

    100%
  • VP$

    0 [ Anneta ]

Kõik, mis on postitatud Genius poolt

  1. Keegi ei saa mängida, sest mul tühi source, ning ma loon uue linna ning objekti ka, muidugi mul vaja abi, Üks ütles et võta mervv või toxic abi. Ehk saate ? Aga muidugi keegi saab sisse joinida, et keegi võiks öelda, kus kohas npc lisada ja millist jne! Tänx.
  2. Proovi import java.awt.*; import java.awt.event.KeyEvent; import com.speljohan.rsbot.bot.Bot; import com.speljohan.rsbot.event.listeners.PaintListener; import com.speljohan.rsbot.script.Script; import com.speljohan.rsbot.script.wrappers.*; public class DPNewtEyes extends Script implements PaintListener { public double getVersion() { return(1.0); } public String getName() { return("Dontpanic's Newt Eye Buyer"); } public String getAuthor() { return("Dontpanic - [email]contact@tsrk.net[/email]"); } public String getScriptCategory() { return("Dontpanic Scripts"); } public String getScriptDescription( ) { String html = ""; html += "\n"; html += "\n"; html += "" + getName() + " v" + getVersion() + " \n"; html += "Author: " + getAuthor() + " \n"; html += "Start anywhere with money in your inventory."; //html += "[align=center]\n"; //html += "Arguments:\n"; //html += "[/align]\n"; html += "\n"; html += "\n"; return(html); } public boolean onStart(String[] args) { Bot.getEventManager( ).addListener(PaintListener.class, this); return(true); } public void onFinish() { Bot.getEventManager().removeListener(PaintListener.class, this); } int waitAfterMoving = -1; int failCount = 0; public int loop() { if(!isLoggedIn()) { return random(100,200); } if(checkCamera()) { return random(500, 800); } if(getMyPlayer().isMoving()) { return random(150, 200); } if(waitAfterMoving != -1) { int toReturn = waitAfterMoving; waitAfterMoving = -1; return toReturn; } if(checkAttack()) { return random(800, 1000); } if(getMyPlayer().getAnimation() != -1) { return random(150, 200); } int result = work(); if(result != -1) { failCount = 0; return result; } if(walkBack()) { failCount = 0; return random(500, 800); } failCount ++; if(failCount >= 10) { failCount = 0; homeTele(); return random(2000, 3000); } return random(1000, 2000); } boolean cameraMoving = false; public boolean checkCamera() { if(cameraMoving) { if(Bot.getClient().getCameraCurveY() >= 380) { Bot.getInputManager().releaseKey((char) KeyEvent.VK_UP); cameraMoving = false; } return true; } else if (Bot.getClient().getCameraCurveY() Bot.getInputManager().pressKey((char) KeyEvent.VK_UP); cameraMoving = true; return true; } return false; } public boolean checkAttack() { if(getMyPlayer().isInCombat()) { return runFromCombat(); } else { return false; } } public boolean runFromCombat() { if(atShop()) { shopToBank(); return true; } if(atBank()) { bankToShop(); return true; } return false; } int loads = 0; public void onRepaint(Graphics g) { g.setColor(Color.YELLOW); g.drawString("Dontpanic's Newt Eye Buyer", 260, 20); g.drawString("Loads: " + loads, 260, 38); } public int work() { if(getInventoryCount() != 28) { return buy(); } else { triedBuy = false; return bank(); } } public void runOn() { setRun(true); } public int buy() { if(atShop()) { if(shopOpen()) { if(triedBuy) { openStock(); } buyFromShop(); triedBuy = true; return random(800, 1000); } else { runOn(); if(openDoor()) { return random(500, 800); } if(openShop()) { waitAfterMoving = random(200, 300); return random(500, 800); } else { dpWalkTile(shopTile); waitAfterMoving = random(300, 400); return random(500, 800); } } } else { if(bankToShop()) { return random(500, 800); } else { return -1; } } } public int bank() { if(atBank()) { if(RSInterface.getInterface(INTERFACE_BANK).isValid()) { bank.depositAllExcept(coinID); loads ++; return random(500, 800); } else { if(distanceTo(bankTile) > 1) { if(dpWalkTile(bankTile)) { waitAfterMoving = random(200, 300); return random(500, 800); } else { return -1; } } else { RSObject object = findObject(bankBoothID); if(atObject(object, "uickly")) { return random(500, 800); } else { if(dpWalkTile(bankTile)) { return random(500, 800); } else { return -1; } } } } } else { if(openDoor()) { return random(500, 800); } if(shopToBank()) { return random(500, 800); } else { return -1; } } } public boolean dpWalkPath(RSTile[] path) { for(int i = path.length - 1; i >= 0; i--) { if(dpWalkTile(path[i])) { return true; } } return false; } public boolean dpWalkTile(RSTile tile) { if(distanceTo(tile) walkTileMM(tile); return true; } else { return false; } } public void homeTele() { openTab(Script.TAB_MAGIC); castSpell(1); } public boolean walkBack() { return dpWalkPath(walkBackPath); } public boolean shopToBank() { return dpWalkPath(shopToBankPath); } public boolean bankToShop() { return dpWalkPath(bankToShopPath); } public boolean shopOpen() { return RSInterface.getInterface(620).isValid(); } public boolean openShop() { return atNPC(getNearestNPCByID(583), "Trade"); } public boolean openDoor() { RSObject object = findObject(1533); if (object !=null) { if (distanceTo(object) atDoor(object, "East", "Open"); return true; } } return false; } boolean triedBuy = false; public void openStock() { int x = 61 + random(0, 3); int y = 72 + random(0, 3); moveMouse(x, y); clickMouse(x, y, true); wait(random(800, 1000)); } public void buyFromShop() { int x = 384 + random(0, 3); int y = 105 + random(0, 3); moveMouse(x, y); clickMouse(x, y, false); wait(random(150, 200)); if(atMenu("Buy X")) { wait(random(700, 800)); sendText("99", true); } } public boolean atShop() { return distanceTo(shopTile) } public boolean atBank() { return distanceTo(bankTile) } public RSTile bankTile = new RSTile(3092, 3245); public RSTile shopTile = new RSTile(3014, 3259); public int coinID = 995; public static int bankBoothID = 2213; public RSTile[] bankToShopPath = {new RSTile(3092,3245),new RSTile(3087,3249),new RSTile(3083,3254),new RSTile(3082,3260),new RSTile(3078,3266),new RSTile(3075,3272),new RSTile(3070,3276),new RSTile(3064,3276),new RSTile(3058,3276),new RSTile(3052,3276),new RSTile(3046,3276),new RSTile(3040,3276),new RSTile(3034,3276),new RSTile(3030,3271),new RSTile(3025,3267),new RSTile(3021,3262), new RSTile(3017,3259),}; public RSTile[] shopToBankPath = {new RSTile(3017,3259),new RSTile(3021,3265),new RSTile(3027,3267),new RSTile(3032,3272),new RSTile(3037,3276),new RSTile(3043,3276),new RSTile(3049,3276),new RSTile(3055,3276),new RSTile(3061,3276),new RSTile(3067,3276),new RSTile(3072,3271),new RSTile(3077,3267),new RSTile(3080,3261),new RSTile(3081,3255),new RSTile(3086,3250),new RSTile(3092,3247), new RSTile(3092,3245),}; public RSTile[] walkBackPath = {new RSTile(3222, 3219), new RSTile(3232, 3224), new RSTile(3227, 3234), new RSTile(3222, 3244), new RSTile(3211, 3246), new RSTile(3200, 3247), new RSTile(3189, 3246), new RSTile(3178, 3243), new RSTile(3168, 3238), new RSTile(3157, 3236), new RSTile(3146, 3232), new RSTile(3136, 3227), new RSTile(3125, 3227), new RSTile(3114, 3228), new RSTile(3108, 3238), new RSTile(3103, 3248), new RSTile(3092, 3245)}; } Sript minu tehtud aga koodid copitud. Kõike fishe (catherby, barbian village jne)
  3. T@nel on parim nuga, nagunii ta omab teid kõiki ära. ^^
  4. Hamachi vaja. Network: name: Klassivennad pass: 123 kui full siis name: Klassivennad2 pass: 123
  5. EstFisher minu poolt muidugi, ainuke ma copisin ProFisher koodid ning muutsin kogu ära (panin ka eestikeelseks) Kui ei usu siis ära usu.
  6. Müüdud acc! Luthanile.
  7. come to play... http://moparscape.org/smf/index.php/topic,306025.0.html Delta scoure! Client on olemas! Mille item pole null enam! http://www.speedyshare.com/591440405.html
  8. Praegu scoure on: AllStar-Scape v2 Ma muudan sealt ja editin. Client olemas! Download link: http://www.speedyshare.com/436809739.html
  9. Hale, lollitaja, ma olen rõõmus, sa banned haha irf
  10. No banni mind. Thnx for bump. Bump! autowin 20.-
  11. vahetasin, kuna see enne scoure sitt, panin DeltaScoure. 3 players sees.
  12. Tahad kamajooki ? ok anna raha siis ostan, ning viin kamajooki ukse taha.
  13. Tere, Tulge mängima serverisse! Hamachi; Network name: Klassivennad Network pass: 123 ja Server IP on 5.46.113.16 Default port või 5555 (mõlemad kasvõi (ma ei tea kumb).) Nautige! Muidugi jätan sisse niikaua kui tahad. Vahetasin scoure välja! Tahad teada mis scoure on ? RichScape!
  14. Genius

    Khrao

    Pangal umbes 300k, ja teen craft leveli 30. või ka 40
  15. Kui http://www.rsbot.com alles SIIS BOT TÖÖTAB idoot, kui http://www.rsbot.com pole siis bot pole enam ja ei lähe tööle.
×
×
  • 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.