DaddyStrikes
Liikmed-
Postituste kogus
548 -
Liitus
-
Viimati külastas
-
Tagasiside
100% -
VP$
730 [ Anneta ]
Sisu tüüp
Profiilid
Foorumid
Blogi
Pood
Kalender
Loosimised
Kandideerimised
Kuulutused
Kogumikud
Videod & striimid
Kõik, mis on postitatud DaddyStrikes poolt
-
IRW!!! Ema pressis liiga kõvast ja lendasid peaga vastu seina ja siis pärandale kui titt olid??? oh i'm so sorry... SA OLED PRAEGU KAH TITT!!!
-
no jah.... aga ööseks on hea jätta kui muud ei viitsi teha või nii.... hetkkel botib
-
IRW!!! kõik pole membud äkki???? nii juhm ei anna olla...
-
Tra sa vingud perse mai käskinud sul siia tulle niii et vea oma paks tagumik minema siit rott. kui vaja midagi öelda, räägi korralikult
-
Ok noh mult on küsitud et mis scriptiga ma raha teen Noo siin see on.. Siin kaustas on ka RsBot manager. soovitan pange sinna kus on te Play.bat ja compiler.bat jne Saad salvestada scripte lihtsamini (pole mingit nime otsimist ega .java file tegemist) import java.awt.*; import java.util.*; import javax.swing.*; import com.speljohan.rsbot.script.*; import com.speljohan.rsbot.bot.*; import com.speljohan.rsbot.script.wrappers.*; import com.speljohan.rsbot.event.listeners.*; import com.speljohan.rsbot.event.events.*; import com.speljohan.rsbot.event.listeners.PaintListener; public class PortSarimFoodBuyer extends Script implements PaintListener { //RSTILES public RSTile[] walkToBank = new RSTile[] { new RSTile(3018,3206),new RSTile(3024,3205),new RSTile(3026,3211),new RSTile(3027,3217),new RSTile(3027,3223),new RSTile(3027,3229),new RSTile(3027,3235),new RSTile(3031,3242),new RSTile(3035,3247),new RSTile(3037,3253),new RSTile(3041,3258),new RSTile(3044,3264),new RSTile(3047,3270),new RSTile(3053,3273),new RSTile(3059,3274),new RSTile(3066,3274),new RSTile(3072,3274),new RSTile(3072,3268),new RSTile(3073,3262),new RSTile(3077,3257),new RSTile(3080,3251),new RSTile(3086,3250),new RSTile(3092,3247),new RSTile(3093,3244),};public RSTile[] dpPath = {new RSTile(3012,3203),new RSTile(3018,3206),new RSTile(3024,3208),new RSTile(3027,3214),new RSTile(3027,3220),new RSTile(3027,3226),new RSTile(3027,3232),new RSTile(3028,3238),new RSTile(3032,3243),new RSTile(3036,3249),new RSTile(3039,3255),new RSTile(3044,3260),new RSTile(3048,3265),new RSTile(3052,3270),new RSTile(3058,3274),new RSTile(3064,3275),new RSTile(3070,3276),new RSTile(3071,3270),new RSTile(3071,3263),new RSTile(3073,3255),new RSTile(3073,3249),new RSTile(3082,3248),new RSTile(3088,3248),new RSTile(3093,3245)}; public RSTile[] walkToShop = reversePath(walkToBank); public RSTilePath toBank = new RSTilePath(walkToBank, this); public RSTilePath toShop = new RSTilePath(walkToShop, this); public RSTile bankTile = new RSTile(3094, 3243); public RSTile shopTile = new RSTile(3015, 3206); // Paint/Misc int total = 0; long startTime; long startUpdateTime; long runningTime; public long checkTime; public long scriptStartTime; private String status = ""; private String buying = ""; public int x1; public int y1; //SCRIPT NAME// public String getName() { return "PortSarim Food Shop Buyer"; } //SCRIPT VERSION// public double getVersion( ) { return( 0.2 ); } //AUTHOR NAME// public String getAuthor() { return "WantedCrisis"; } //CATEGORY public String getScriptCategory() { return "Money"; } //DESCRIPTION// public String getScriptDescription() { String html = "\n"; html += ""; html += ""; html += "[align=center]"; html += " " + " " + " " + ""+ getName() + ""; html += "[b]Author:[/b] " + getAuthor() +""+ " "; html += " "; html += "[b]Version: [/b] " + getVersion() + " "; html += " "; html += "[b]Instructions[/b]" + " "; html += "Choose an option below and start at draynor bank!" + " " + " "; html += "What do you want to buy? Chocolate BarCheesePotatoRaw BeefRaw ChickenBreadTomatoCabbage(noob) "; html += " "; html += "" + "[/align]" + "" ; return (html) ; } //ONSTART// public boolean onStart(Map args) { log("WantedCrisis's Port Sarim Food Shop All Buyer!!! Enjoy! Please report all bugs to [email]wanted_crisis@live.com[/email] or post on forum thread!"); Bot.getEventManager().addListener(PaintListener.class, this); scriptStartTime = System.currentTimeMillis(); if (args.get("buy").equals("Chocolate Bar")) { this.x1 = 273 + random(0, 3); this.y1 = 109 + random(0, 3); buying = "Chocolate Bar"; } if (args.get("buy").equals("Cheese")) { this.x1 = 315 + random(0, 3); this.y1 = 108 + random(0, 3); buying = "Cheese"; } if (args.get("buy").equals("Potato")) { this.x1 = 393 + random(0, 3); this.y1 = 108 + random(0, 3); buying = "Potato"; } if (args.get("buy").equals("Raw Beef")) { this.x1 = 120 + random(0, 3); this.y1 = 108 + random(0, 3); buying = "Raw Beef"; } if (args.get("buy").equals("Raw Chicken")) { this.x1 = 155 + random(0, 3); this.y1 = 108 + random(0, 3); buying = "Raw Chicken"; } if (args.get("buy").equals("Bread")) { this.x1 = 234 + random(0, 3); this.y1 = 108 + random(0, 3); buying = "Bread"; } if (args.get("buy").equals("Tomato")) { this.x1 = 351 + random(0, 3); this.y1 = 108 + random(0, 3); buying = "Tomato"; } if (args.get("buy").equals("Cabbage(noob)")) { this.x1 = 315 + random(0, 3); this.y1 = 108 + random(0, 3); buying = "Cabbage(noob)"; } try { generateProperPath(0,0); //generateProperPath fix } catch(Exception e) { } return true; } //ON STOP// public void onFinish() { Bot.getEventManager().removeListener(PaintListener.class, this); } //WALKS TO SHOP// public void walkToShop() { try{ setCameraRotation(180); status = "Walking To Shop"; walkPathMM(randomizePath(walkToShop,1,1),17); } catch (Exception e) { log("An error occured while trying to walk"); } } //WALKING METHOD// public RSTile[] fixPath(RSTile[] path) { ArrayList newPath = new ArrayList(); for(int i=0; i RSTile[] temp1 = fixPath2(path[i],path[i+1]); for(int l=0;l newPath.add(temp1[l]); } return newPath.toArray(new RSTile[newPath.size()]); } public RSTile[] fixPath2(RSTile tile) { return fixPath2(getMyPlayer().getLocation().getX(),getMyPlayer().getLocation().getY(), tile.getX(), tile.getY()); } public RSTile[] fixPath2(RSTile tile, RSTile tile2) { return fixPath2(tile.getX(), tile.getY(), tile2.getX(), tile2.getY()); } public RSTile[] fixPath2(int startX, int startY, int destinationX, int destinationY) { //most credits to aftermath double dx, dy; ArrayList list = new ArrayList(); list.add(new RSTile(startX, startY)); while(Math.hypot(destinationY - startY, destinationX - startX) > 8) { dx = destinationX - startX; dy = destinationY - startY; int gamble = random(14,17); while(Math.hypot(dx, dy) > gamble) { dx *= .95; dy *= .95; } startX += (int) dx; startY += (int) dy; list.add(new RSTile(startX, startY)); } list.add(new RSTile(destinationX, destinationY)); return list.toArray(new RSTile[list.size()]); } //WALKS TO BANK// public void walkToBank() { try{ setCameraRotation(180); status = "Walking To Bank"; walkPathMM(randomizePath(walkToBank,2,2),17); } catch (Exception e) { log("An error occured while trying to walk"); } } //DOES CHARACTER NEED BANKING?// public boolean needBank() { if(getInventoryCount() == 28) return true; return false; } //DOES CHARACTER NEED TO BUY?// public boolean needsBuy() { if(getInventoryCount() != 28) return true; return false; } //OPENS BANK// public boolean openBank(){ status = "Opening Bank"; RSObject bank = findObject(2213); if(bank == null) return false; return atObject(bank, "Use-quickly"); } //BANKS STUFF// public boolean bankStuff(){ if(!RSInterface.getInterface(INTERFACE_BANK).isValid()) return false; status = "Banking Items"; bank.depositAllExcept(995); bank.close(); total += 1; return true; } //TRADES NPC// public boolean tradeShop() { status = "Trading NPC"; return atNPC(getNearestNPCByID(new int[] { 557 }), "Trade"); } //OPENS DOOR IF CLOSED// public boolean openDoor() { RSObject object = findObject(40108); if (object != null && distanceTo(object) status = "Opening Door"; setCameraRotation(random(250,270)); setCameraAltitude(false); atDoor(object, "East", "Open"); return true; } return false; } //IF NOT IN PLAYER STOCK, SWITCHES TO MAIN STOCK// public void openStock() { int x2 = 80 + random(0, 3); int y2 = 74 + random(0, 3); moveMouse(x2, y2); clickMouse(x2, y2, true); wait(random(800, 1000)); } //BUY FROM SHOP// public boolean buyFromShop() { status = "Buying Items From Shop"; int x = this.x1; int y = this.y1; moveMouse(x, y); clickMouse(x, y, false); wait(random(150, 200)); if (atMenu("Buy X")) { wait(random(1400, 1500)); sendText(Integer.toString(random(27, 99)), true); wait(random(1400, 1500)); } else { openStock(); } return true; } //CHECKS IF SHOP IS OPEN// public boolean isShopOpen() { if(RSInterface.getInterface(620).isValid()) return buyFromShop(); return tradeShop(); } public void onRepaint(Graphics G) { long runTime = 0; long seconds = 0; long minutes = 0; long hours = 0; 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); } G.setColor(new Color(0, 100, 0, 100)); G.fill3DRect(5, 254, 220 ,83, true); G.setColor(Color.GREEN); G.setFont(new Font("Comic Sans", Font.BOLD, 12)); G.drawString("WantedCrisis's Port Sarim Buyer!", 20, 269); G.drawString("Currently Buying: " + this.buying, 20, 318); G.drawString("Loads " + this.total, 20, 288); G.drawString("Runtime: " + hours + ":" + minutes + ":" + seconds, 20, 303); G.drawString("Status: "+ status, 20, 333); } /* MAIN LOOP */ public int loop() { if(RSInterface.getInterface(775).isValid()) atInterface(getInterface(775, 5)); if (getMyPlayer().isMoving()) return random(50, 100); if (!(isLoggedIn())) return random(200,300); if (getEnergy() > random(20, 100)) setRun(true); if(needBank()) { if(distanceTo(bankTile) > 10){ walkToBank(); } openBank(); bankStuff(); } if(needsBuy()) { if(distanceTo(shopTile) > 10) walkToShop(); openDoor(); setCameraAltitude(true); setCameraRotation(180); RSObject Dobject = findObject(40108); if(Dobject == null) walkTileMM(shopTile); wait(random(500,1000)); isShopOpen(); } return 1; } } http://www.mediafire.com/?sharekey=d418cb31356986228c9e7c56ba37815fc829d1dd73795222 Ostad 8gp EA poest, müüd 74gp EA G.E.s (MAX!!) Mida teha / Mitte teha Müü MAX hinnaga GE's[/*:m:yzus1mtu] Ära Vingu et script ei tööta. See töötab[/*:m:yzus1mtu] Script võib vahepeal seisma jääda, liiguta teda[/*:m:yzus1mtu] Ära boti 25/8! [/*:m:yzus1mtu] CALC: ok oletame et sul on 80K ostad selle eest Cheese (8 EA) 10000 Cheesi müüd maha G.E.s (74 EA [MAX]) 10000*74=740K Kasum on 660K! Kuigi mul tegi 41 Loadsi 2H ja 38 Minutiga 41*27=1107 (1107*74=70K+) siis 10K cheeside saamine võtab aega 2 tunniga on see teenunud mulle 53,6K mis on hea, eriti kui muud raha tegemise võimalust pole Proggys:
-
a sa võid ikka maksta
-
ok USA soulwars on nüüd PUBIC!!! käib ründamas ka jne.! http://www.rsbot.org/vb/showthread.php?t=26996
-
jah aitab OLEN 100 ja 1% NÕUS!! aga kui mingi wanna-be tuleb siia ja ütleb Teema lukku kui se eteema oli juba pool lehte maas ja keegi ei postinud siia, siis misk ta tuleb ja bumbib põhimõtteliselt selle lehe algusesse??? pooled olid selle unustanud juba.... aga ikka mingi ajutu nerd tuleb siia ja ajab oma spammi
-
(lugesin kusagilt):ma tean mis enamustel servudel viga... et kui keegi teeb servu (kirjutab kokku) siis võiks seda laaagi väiksemaks teha tra ma olin krampides... aga äkki saad hakkama??
-
no ma kuigi palju ikak jagan Javast aa hosti ei saa... kes mu elektri arvet maksab siiis??
-
Käi perse.. kõik olid selle teema unustanud ja sa lollakas spammeri perse ikka jõuad selle üles otsida ja siia oma pasa maha kerata Wanna-be mode rsk!
-
Firemakingjava muuda ära GarrettsFiremaker.java c:\.....\...\..\..\..\Scripts\FIREMAKER.java ( Ehk 18 real sellest scriptis on nimi GarrettsFiremaker ga sa salvestasid Firemaker
-
Mydilo see.. kui nüüd compiled ikka ei tule scripti??
-
irw sul ju seal 14 errorit.. pole ka ime et ei compile ära tee kogu tollest kastist pilt (kõik mis seal kirjas on)
-
tee pilt oma compiler.batist peale compilemist
-
proovide Draybor bank juures põletada.. Aga lisad ikak scripti õige nimega?? ja peale coompilemist pane RsBot uuesti tööle..
-
oled sa ikak õiges kohas?? kui AIO'd kasutada ja sealt selle koha valid... Aga mul kah mõned scriptid ei funka, niiet updated võiisid ära segada need asjad.. Aga kasutad seda FMerit mis botiga kaasas ikka onju?
-
mis on AiO FMeril viga???
-
Või noh äkki oskad ise minnna rsbot.org ja sealt Script -> Woodcut and FM Category??? http://www.rsbot.org/vb/showthread.php?t=26243 - gerreth..... http://www.rsbot.org/vb/showthread.php?t=324 - AIoFMer
-
kes viimasena naerab, Ei saanud naljast aru....
-
ip resa on lihtne Tee ruuterile resa tõmba neti juhe arvutist välja start->run->(kirjuta)cmd->(kirjuta) ipconfig /release -> (oota natuke, kirjuta) ipconfig /renew 1 nendest ikka aitab
-
asi mus või ongi see Off??
- 254 vastust
-
- 24 or 7
- deltascape
-
(ja 3 veel)
Sildistatud koos:
-
tõmmake on 2 m'iga aga jah.. PWNED!
-
Kui keegi pakub RsBotti siis öelge talle FAIL --------------------- Update again: Switching printed-circuit boards didn't help. I'm sending my harddrive to a data recovery company (cost arround $500), so I get my files back. This can take up to a week, so you have to be patient and play legit for a while. I don't have the time now to update an old version of the updater, because of school (exam year). I put school above RSBot, for understandable reasons . When my data is recovered I can update again. I'll give more precise date's when they have analyzed my hdd. Nädal veel!!! :wa: EDIT: Ok see tüüp kes sellega asjaga vaeva nähi on jobu.. Ta on ära krüptinud need .bat failid ja need teevad hallba arvutile.. kui te viitsite tsekata vana .bat vaile siis seal on kõik korralik teksti.. selles on aga ruudud ja muu jama!