Everything posted by mariokiller64
-
Jagex Launcher
did you try uninstalling the jagex launcher like I posted earlier here?
-
Jagex Launcher
uninstall launcher and OSRS. Here's the old installer for normal client. https://www.runescape.com/downloads/oldschool.msi just install, if it doesn't work right off the bat, use the OSRS cleaner tool after uninstalling launcher and OSRS and do complete removal. *Have had accounts locked after using this because it thinks its a brand new computer -As in you have to unlock, email verification and change password, just a warning.-*
-
ai's ability to help create scripts
It made me this autohotkey script to left click cows using "cow.png", never tested it. Doubt it would work just based off of that one image but still kinda funny how detailed it went when asked. #NoEnv CoordMode, Mouse, Relative SetWorkingDir %A_ScriptDir% LoadLibrary("libsikulixapi.dll") global s, r s := Sikulix_Start() Random, randSleep1, 800, 2000 Random, randSleep2, 1500, 3000 Random, randSleep3, 2500, 5000 Random, randSleep4, 1000, 2000 Random, randSleep5, 500, 1500 Random, randSleep6, 800, 2500 Random, randSleep7, 2000, 4000 Loop { IfWinExist, runelite.exe { WinActivate, runelite.exe Random, randMouseMove1, -10, 10 Random, randMouseMove2, -10, 10 MouseMove, randMouseMove1, randMouseMove2, 50, R Sleep randSleep1 r := s.Find("cow.png") If r <> 0 { x := r.x + (r.w / 2) y := r.y + (r.h / 2) Random, randMouseMove3, -20, 20 Random, randMouseMove4, -20, 20 MouseMove, x + randMouseMove3, y + randMouseMove4, 50, R Sleep randSleep2 Random, randClick1, 100, 300 Random, randClick2, 50, 150 MouseClick, left, randClick1, randClick2, 0, 0, R Sleep randSleep3 Random, randMouseMove5, -15, 15 Random, randMouseMove6, -15, 15 MouseMove, randMouseMove5, randMouseMove6, 50, R Random, randMouseMove7, -3, 3 Random, randMouseMove8, -3, 3 MouseMove, randMouseMove7, randMouseMove8, 50, R Random, randMouseMove9, -5, 5 Random, randMouseMove10, -5, 5 MouseMove, randMouseMove9, randMouseMove10, 50, R Random, randMouseMove11, -3, 3 Random, randMouseMove12, -3, 3 MouseMove, randMouseMove11, randMouseMove12, 50, R Sleep randSleep4 Random, randMouseMove13, -10, 10 Random, randMouseMove14, -10, 10 MouseMove, randMouseMove13, randMouseMove14, 50, R } Sleep randSleep5 Random, randMouseMove15, -5, 5 Random, randMouseMove16, -5, 5 MouseMove, randMouseMove15, randMouseMove16, 50, R Sleep randSleep6 Random, randMouseMove17, -10, 10 Random, randMouseMove18, -10, 10 MouseMove, randMouseMove17, randMouseMove18, 50, R Sleep randSleep7 } } Sikulix_Stop(s) LoadLibrary(name) { static file if (file = "") file := DllCall("kernel32\GetModuleHandle", "str", name, "ptr") return file } Sikulix_Start() { Global s, r, hBmp s := {} s.RunCmd := Func("Sikulix_RunCmd") s.Find := Func("Sikulix_Find") s.Stop := Func("Sikulix_Stop") VarSetCapacity(bi, 40, 0) NumPut(40, bi, 0, "UInt") ;BITMAPINFOHEADER.biSize NumPut(1, bi, 4, "Int") ;BITMAPINFOHEADER.biPlanes NumPut(32, bi, 14, "UShort") ;BITMAPINFOHEADER.biBitCount hBmp := CreateDIBSection(0, &bi, 0, &Bits, 0, 0) hdc := CreateCompatibleDC(0) SelectObject(hdc, hBmp) ReleaseDC(0, hdc) return s } Sikulix_Stop(s) { Global hBmp DeleteObject(hBmp) } Sikulix_RunCmd(cmd) { run, %comspec% /c %cmd%, , hide return ErrorLevel } Sikulix_Find(img, timeout:=0) { Global s, r, hBmp, Bits if (IsObject(img)) { if img.hWnd := WinExist(img.Title . " ahk_id " . img.hWnd) img.Left := img.Top := 0 else img := ImageCreate(img) } else if (InStr(img, "\")) img := ImageCreate(img) else if (!s.defImg || !s.defImg.Title) { MsgBox, 262180, Sikulix, Select default image (cancel to skip): IfMsgBox OK s.defImg := ImageSelect() else s.defImg := {} } if (IsObject(s.defImg)) img := ImageFind(s.defImg, timeout, 1) if (!IsObject(img)) { MsgBox, 16, Sikulix, Image not found:%A_Space%%A_Space%%A_Space%%A_Space% return 0 } VarSetCapacity(ar, 16, 0) NumPut(16, ar, 0, "UInt") ;BITMAPFILEHEADER.bfSize NumPut(19778, ar, 0, "UShort") ;BITMAPFILEHEADER.bfType NumPut(54, ar, 2, "UInt") ;BITMAPFILEHEADER.bfOffBits NumPut(40, ar, 14, "UInt") ;BITMAPINFOHEADER.biSize NumPut(img.W, ar, 4, "Int") ;BITMAPINFOHEADER.biWidth NumPut(img.H, ar, 8, "Int") ;BITMAPINFOHEADER.biHeight NumPut(1, ar, 12, "UShort") ;BITMAPINFOHEADER.biPlanes NumPut(32, ar, 14, "UShort") ;BITMAPINFOHEADER.biBitCount NumPut(3, ar, 28, "UInt") ;BITMAPINFOHEADER.biCompression hdc := CreateCompatibleDC(0) hBmp1 := CreateDIBSection(0, &bi, 0, &Bits1, 0, 0) SelectObject(hdc, hBmp) BitBlt(hdc, 0, 0, img.W, img.H, img.hDC, 0, 0, SRCCOPY) dc := CreateCompatibleDC(0) SelectObject(dc, hBmp1) c := DllCall("gdi32\GetDIBits", "ptr", hdc, "uint", 0, "uint", img.H, "ptr", &Bits1, "ptr", &bi, "uint", 0) VarSetCapacity(bi1, 40, 0) NumPut(40, bi1, 0, "UInt") ;BITMAPINFOHEADER.biSize NumPut(1, bi1, 4, "Int") ;BITMAPINFOHEADER.biPlanes NumPut(32, bi1, 14, "UShort") ;BITMAPINFOHEADER.biBitCount hBmp2 := CreateDIBSection(0, &bi1, 0, &Bits2, 0, 0) SelectObject(dc, hBmp2) DllCall("gdi32\SetStretchBltMode", "ptr", dc, "int", 4) StretchBlt(dc, 0, 0, img.W * 2, img.H * 2, hdc, 0, 0, img.W, img.H, SRCCOPY) c := DllCall("gdi32\GetDIBits", "ptr", dc, "uint", 0, "uint", img.H * 2, "ptr", &Bits2, "ptr", &bi1, "uint", 0) DllCall("gdi32\DeleteDC", "ptr", hdc) DllCall("gdi32\DeleteDC", "ptr", dc) DllCall("gdi32\DeleteObject", "ptr", hBmp1) DllCall("gdi32\DeleteObject", "ptr", hBmp2) row1 := img.H * 2 - 1, row2 := img.H * 2 - 2, top := img.H * 2 for y, x in img.TranspPos DllCall("gdi32\SetPixelV", "ptr", img.hDC, "int", x, "int", y, "uint", 0xFFFFFF) x := 0, y := 0 Loop % img.W * 2 * img.H * 2 { if !(A_Index % (img.W * 2)) x := 0, y += 1 r1 := NumGet(Bits1, (row1 - y) * ((img.W * 2 * 32 + 31) >> 5) + (x * 32), "UInt") r2 := NumGet(Bits2, (row2 - y) * ((img.W * 2 * 32 + 31) >> 5) + (x * 32), "UInt") if (r1 & r2) img.TranspPos.Insert(x, top - y) x += 1 } img.W := img.W * 2, img.H := img.H * 2 img.hDC := hdc img.W := img.W * 2, img.H := img.H * 2 img.hDC := hdc ; Apply human-like anti-ban to the mouse clicks Random, randDelay, % (2000 - 1000) + 1 + 1000 ; Random delay between 1 to 2 seconds Sleep, randDelay ; Randomize the mouse movement within a range of 20 pixels to simulate human-like jittering Random, randX, % 20 Random, randY, % 20 CoordMode, Mouse, Screen MouseMove, img.TranspPos[1]+randX, img.TranspPos[2]+randY, 50 ; Randomize the mouse click position within a range of 10 pixels Random, randClickX, % 10 Random, randClickY, % 10 Click, % "Left", img.TranspPos[1]+randClickX, img.TranspPos[2]+randClickY, 1, 0 ; Randomize the delay after each click to simulate human-like clicking pattern Random, randClickDelay, % (500 - 200) + 1 + 200 ; Random delay between 0.2 to 0.5 seconds Sleep, randClickDelay ; Randomize the mouse movement again after the click Random, randMoveX, % 20 Random, randMoveY, % 20 CoordMode, Mouse, Screen MouseMove, img.TranspPos[1]+randMoveX, img.TranspPos[2]+randMoveY, 50 Return }
-
Perfect Pest Control
can I get a trial please?
-
Bot initialization error
2 days max, 6 hours minimum.
-
Khal Tutorial Island
my bad guess it was bugging out, had to restart osbot, working fine ^^.
-
Khal Tutorial Island
Still getting banned, was wondering why OSbot break times aren't working, are they disabled with your script?
-
Perfect Agility AIO
can I get a trial please?
-
Perfect Thiever AIO
Hello, can I get a trial? Thanks :).
-
Perfect Herblore AIO
Can I get a trial please?
-
Perfect Wintertodt
EDIT: My bad, need the .txt at the end of the CLI.
-
[Guide] Maximize creating OSRS accounts manually with Autofill + Proxy SwitchOmega
Hello, for this, I like to use Firefox, although you can use chrome for SOCKS5 support. I like to always start a new private browser for every account created. If you want to go a step further, sandboxie may help you go through account linking. No promises. I do 3 accounts per proxy, careful though, those 3 will have a higher chance of being linked than if you were to use different proxies. Unfortunately, all accounts have a chance to easily be linked, I've personally had minimal issues with this besides creating on the same IP, but mileage may vary. Bookmark this https://secure.runescape.com/m=account-creation/create_account?theme=oldschool Install these add-ons https://addons.mozilla.org/en-US/firefox/addon/autofill-quantum/ https://addons.mozilla.org/en-US/firefox/addon/switchyomega/ You can also find some captcha solving service to make it quicker for you, as I've been told, I personally haven't used any. Setting up Proxy SwitchyOmega To import bulk proxies into proxyswitch, your proxies have to be seperated by semi-colons like 127.0.0.1:1234:user:pass;ADRESS:PORT:user:pass You see the semi-colon? Go to the Add-on options (Top right corner of firefox > Click > Options OR Add-ons/extensions page > Options of add-on) You should see the SwitchyOmega interface. Right click anywhere on page > inspect *Or just press f12* > Find console tab. This is for HTTP *Using HTTPS didn't work for me sometimes for some reason*, Paste this Firefox: var changes = {}; window.prompt().split(';').forEach(function (proxy, i) { var parts = proxy.trim().split(':'); if (parts.length < 2) return; var profile = OmegaPac.Profiles.create({ name: "Proxy" + (i + 1), color: "#99ccee", profileType: "FixedProfile", fallbackProxy: OmegaPac.Profiles.parseHostPort(parts[0] + ':' + parts[1], 'http'), auth: parts[2] && {fallbackProxy: { username: parts[2], password: parts[3], }} }); OmegaPac.Profiles.updateRevision(profile); changes[OmegaPac.Profiles.nameAsKey(profile)] = profile; }); // Firefox-specific code var storageArea = browser.storage.local; storageArea.set(changes).then(function() { location.reload(); }, function(error) { console.log(error); }); Chrome: var changes = {}; window.prompt().split(';').forEach(function (proxy, i) { var parts = proxy.trim().split(':'); if (parts.length < 2) return; var profile = OmegaPac.Profiles.create({ name: "Proxy" + (i + 1), color: "#99ccee", profileType: "FixedProfile", fallbackProxy: OmegaPac.Profiles.parseHostPort(parts[0] + ':' + parts[1], 'http'), auth: parts[2] && {fallbackProxy: { username: parts[2], password: parts[3], }} }); OmegaPac.Profiles.updateRevision(profile); changes[OmegaPac.Profiles.nameAsKey(profile)] = profile; }); chrome.storage.local.set(changes, location.reload.bind(location)); A box should pop up and then you just paste your proxies. If you want them to be SOCKS5, you need to use chrome, firefox does not support it. You also have to change this part of the script fallbackProxy: OmegaPac.Profiles.parseHostPort(parts[0] + ':' + parts[1], 'http'), auth: parts[2] && {fallbackProxy: { Change the HTTP to SOCKS5 and the parts[2] to parts[5] (Keep the parts[2] next to the username) Now you should have a full list of proxies imported Setting up Autofill Go to the Autofill settings, you can do that by right clicking on the extension, hitting manage extension, then clicking on the 3 dots, then on options. Go to import/export, paste this, and hit import/replace ### AUTOFILL PROFILES ###,,,,,, Profile ID,Name,Site,Hotkey,,, c1,OSRS,secure.runescape.com/m=account-creation/create_account,,,, ### AUTOFILL RULES ###,,,,,, Rule ID,Type,Name,Value,Site,Mode,Profile r1,0,"^email1$","{@random_name}@{@choose_email}","",1,c1 r2,0,"^password1$","password","",1,c1 r26,1,"^password1$","password","",1,c1 r3,0,"^day$","{@day}","",1,c1 r4,0,"^month$","{@month}","",1,c1 r5,0,"^year$","{@year}","",1,c1 r6,3,"\bm-show-password__check\b","1","",1,c1 r7,3,"^agree_terms$","1","",1,c1 ### AUTOFILL OPTIONS ###,,,,,, advanced,"[]",,,,, exceptions,"[]",,,,, textclips,"[]",,,,, variables,"[""1to100 = javascript:Math.floor(Math.random()*(100-1+1)+1);"",""day = javascript:Math.floor(Math.random()*(28-1+1)+1);"",""month = javascript:Math.floor(Math.random()*(12-1+1)+1);"",""year = javascript:Math.floor(Math.random()*(2004-1980+1)+1980);"",""rand_alphanumeric = javascript:Math.random().toString(36).substring(2, 8);"",""# Example: random in-game name"",""random_name = javascript:names = [\""Nite\"", \""Meal\"", \""Play\"", \""Rise\"", \""Cave\"", \""Foil\"", \""Glow\"", \""Hoop\"", \""Jest\"", \""Knot\"", \""Lift\"", \""Maze\"", \""Nest\"", \""Oops\"", \""Pest\"", \""Quip\"", \""Rave\"", \""Sift\"", \""Tale\"", \""Unit\"", \""Vial\"", \""Walt\"", \""Xmas\"", \""Yawn\"", \""Zest\"", \""Aery\"", \""Bake\"", \""Cede\"", \""Dine\"", \""Ease\"", \""Fate\"", \""Gain\"", \""Halt\"", \""Iglo\"", \""Jive\"", \""Knot\"", \""Lift\"", \""Mend\"", \""Numb\"", \""Obey\"", \""Pond\"", \""Quit\"", \""Rive\"", \""Sift\"", \""Tame\"", \""Unve\"", \""Vest\"", \""Wist\"", \""Xray\"", \""Yard\"", \""Zest\"", \""Ache\"", \""Blip\"", \""Cute\"", \""Dash\"", \""Echo\"", \""Fizz\"", \""Glim\"", \""Halt\"", \""Iota\"", \""Jolt\"", \""Keep\"", \""Lend\"", \""Melt\"", \""Numb\"", \""Omen\"", \""Pole\"", \""Quip\"", \""Raze\"", \""Sift\"", \""Tome\"", \""Utop\"", \""Vale\"", \""Walt\"", \""Xmas\"", \""Yarn\"", \""Zest\"", \""Acre\"", \""Bend\"", \""Cave\"", \""Dote\"", \""Echo\"", \""Foil\"", \""Gone\"", \""Halt\"", \""Iglo\"", \""Jest\"", \""Knot\"", \""Lend\"", \""Mend\"", \""Numb\"", \""Obey\"", \""Pond\"", \""Quip\"", \""Rave\"", \""Sift\"", \""Tome\"", \""Unve\"", \""Vest\"", \""Wist\"", \""Xray\"", \""Yard\"", \""Zest\""];name1 = names[Math.floor(Math.random() * names.length)];name2 = names[Math.floor(Math.random() * names.length)];name3 = Math.floor(Math.random() * 10000);name1 + name2 + name3;"",""choose_email = javascript:var choice = Math.floor(Math.random()*2);choice == 0 ? \""hotmail.com\"" : \""outlook.com\"";""]",,,,, activecat,1,,,,, autoimport,0,,,,, backup,0,30,,,, badge,1,,,,, closeinfobar,1,1,,,, debug,0,,,,, delay,0,0.5,,,, fluid,1,,,,, hidebackup,0,,,,, manual,0,,,,, mask,0,,,,, menu,1,,,,, overwrite,1,,,,, sitefilters,1,,,,, skiphidden,0,,,,, sound,0,,,,, vars,1,,,,, voice,0,1,,,, Now everytime you go to the page I told you to bookmark, it's going to autofill all the fields with random info at either hotmail or outlook.com and you can change between proxies fairly easy through the proxy switchy. One proxy is usually good for 3 account creations before OSRS limits you. If you want to change the names, just copy and paste it in ChatGPT OpenAI from the variables tab and tell you to give you a list of new words lol. Write me out 250 unique words. Do not include anything longer than 5 letters. Write the list out just like this shown below. ["Nite", "Meal", "Play"];
-
Perfect Motherlode Miner
Yeah I mean 1k big bones at gilded altar can get 43 prayer over how ever long, shouldn't be a big issue. I'd accept it like that personally. Your prayer script is great, so there's a plus lol.
-
Khal Fishing Trawler
Edit: Sorry, though there were trials available.
-
Khal Tempoross
Hey, can I get a trial on this please? Thanks :).
-
Perfect Motherlode Miner
How do I get those ice gloves? Anything on OSbot available to get that easily? or do I just have to do that manually?
-
Perfect Blast Furnace
What are the best settings for this script? There seems to be a lot of extra "mouse speed" buttons that I don't really get what they do tbh. I uncheck them and the mouse looks quicker so not sure what that's about lol. Not sure if checking both of them is messing up the script lol. Also, can you have it always zoom out at the start of the script please? Yeah if you can add it to grab the bucket from the blast furance, that'd be great, plz and thx. Can you also have it click on the bucket of water as soon as you submit the ore please? So that it's ready to use on the furnace as soon as the ore hits. Getting this error on the new script with CLI CLI seems to be broken. [INFO][01/15 05:38:29 PM]: Welcome to OSBot 2.6.60! [INFO][01/15 05:38:29 PM]: Loaded 10 RS accounts! [INFO][01/15 05:38:33 PM]: Updated injection hooks for client revision : 210! [DEBUG][Bot #1][01/15 05:38:33 PM]: Initializing stealth injection bot... [INFO][Bot #1][01/15 05:38:33 PM]: Downloading latest RS2 old-school client parameters... [DEBUG][Bot #1][01/15 05:38:41 PM]: Injected bot reference into client! [DEBUG][Bot #1][01/15 05:38:41 PM]: Injected world accessors! [DEBUG][Bot #1][01/15 05:38:41 PM]: Injected 38 class and 347 field accessors! [DEBUG][Bot #1][01/15 05:38:41 PM]: Injected canvas! [DEBUG][Bot #1][01/15 05:38:46 PM]: Loading RS world : 57 [INFO][Bot #1][01/15 05:38:47 PM]: Initializing 39 API modules... [INFO][01/15 05:38:47 PM]: Started bot #1 [INFO][Bot #1][01/15 05:38:53 PM]: Loaded 5 built-in random solvers! [INFO][Bot #1][01/15 05:38:57 PM]: Started random solver : Auto Login [INFO][Bot #1][01/15 05:39:04 PM]: Successfully logged in, waiting for welcome screen. [INFO][Bot #1][01/15 05:39:14 PM]: Login completed. [INFO][Bot #1][01/15 05:39:14 PM]: Random solver exited : Auto Login [INFO][Bot #1][01/15 05:39:14 PM]: Started random solver : Welcome Screen [INFO][Bot #1][01/15 05:39:17 PM]: Random solver exited : Welcome Screen [INFO][Bot #1][01/15 05:39:17 PM]: Scheduling script background executors [INFO][Bot #1][01/15 05:39:17 PM]: Initialising guided state setup... [INFO][Bot #1][01/15 05:39:17 PM]: ... done! [INFO][Bot #1][01/15 05:39:17 PM]: Initialising modules... [INFO][Bot #1][01/15 05:39:19 PM]: BreakManager: We will bot for 178 minute(s) and break for 30 minute(s) [INFO][Bot #1][01/15 05:39:21 PM]: Item Definitions loaded: 27462 [INFO][Bot #1][01/15 05:39:21 PM]: Definitions loaded: 27462 [INFO][Bot #1][01/15 05:39:21 PM]: 20 modules loaded [INFO][Bot #1][01/15 05:39:21 PM]: "eq_loaded" changed to "1" [INFO][Bot #1][01/15 05:39:21 PM]: ... done! [INFO][Bot #1][01/15 05:39:21 PM]: "script_active" changed to "1" [INFO][Bot #1][01/15 05:39:28 PM]: Yay! [INFO][Bot #1][01/15 05:39:37 PM]: Initializing quest handlers... [INFO][Bot #1][01/15 05:39:37 PM]: ...complete! [INFO][Bot #1][01/15 05:39:37 PM]: "allow_multithreading" changed to "1" [INFO][Bot #1][01/15 05:39:37 PM]: 1 actionpoints ready [INFO][Bot #1][01/15 05:39:37 PM]: Just renewed the last payment to current timestamp! [INFO][Bot #1][01/15 05:39:37 PM]: "blasting" changed to "1" [INFO][Bot #1][01/15 05:39:37 PM]: "coal_trips_done" changed to "0" [INFO][Bot #1][01/15 05:39:37 PM]: "ss_ge_target_amount" changed to "0" [INFO][Bot #1][01/15 05:39:37 PM]: "ss_ge_energy_amount" changed to "0" [INFO][Bot #1][01/15 05:39:37 PM]: Initialising CLI... [INFO][Bot #1][01/15 05:39:37 PM]: "cli_mode" changed to "1" [ERROR][Bot #1][01/15 05:39:37 PM]: Error in script onStart(): Perfect Blast Furnace java.lang.ArrayIndexOutOfBoundsException: 1 at a.f.aux.j(xs:659) at java.util.Spliterators$ArraySpliterator.forEachRemaining(Unknown Source) at java.util.stream.ReferencePipeline$Head.forEach(Unknown Source) at a.f.aux.onStart(xs:1039) at org.osbot.rs07.event.ScriptExecutor.IIIiiiiiiII(lp:290) at org.osbot.rs07.event.ScriptExecutor.start(lp:328) at org.osbot.HB.IIIiiiiiiII(gu:246) at org.osbot.BotApplication.main(vt:170) [INFO][Bot #1][01/15 05:39:37 PM]: Terminating script Perfect Blast Furnace... [INFO][Bot #1][01/15 05:39:37 PM]: "blasting" changed to "0" [INFO][Bot #1][01/15 05:39:37 PM]: Attempting to save leaderboards... [INFO][Bot #1][01/15 05:39:37 PM]: Sending leaderboard data... [INFO][Bot #1][01/15 05:39:39 PM]: Got a success... [INFO][Bot #1][01/15 05:39:39 PM]: Script Perfect Blast Furnace has exited!
-
Perfect Blast Furnace
needs to add bucket of water or bucket to the grand exchange buyer. It doesn't buy any and gets stuck at blast furnace bank looking for one.
-
Khal AIO Agility
Anyway to add auto buy and equip graceful set after 260 tokens? Can I also get a trial please?
-
Perfect Motherlode Miner
Edit: I just bough it instead, but I'm wondering, where do I start it? I started it from Varrock but it just keeps trying to walk to no where. Keeps saying this. [INFO][Bot #1][01/11 11:47:55 AM]: Looks like we're not in the motherlode mine, let's go now! [INFO][Bot #1][01/11 11:47:55 AM]: WebWalkingEvent; No route found! Destinations = [[x=3726, y=5688, z=0]]; I don't really see any requirements or anything, can ya post them please? So how do you get the coal bag from this? I'm not really familiar with motherlode mining. Do you have to claim the bag from the NPC after? Does the script support that? If not, can you add something like that? Can I also get a trial please?
-
Czar Guardians of the Rift
I'm not exactly sure what it needs a pickaxe for as I don't really know how the minigame goes but he went into the minigame to mine something but couldn't. I'll try again to see what happens in 8.1 if I don't have a pickaxe. Thanks for the extension!
-
Czar Guardians of the Rift
so I started the script from the grand exchange and it didn't grab a pickaxe from the bank or anything, it just tried to do the minigame and kept trying to mine without a pickaxe. Kept saying needed pickaxe. I had nothing in my bank or inventory. Here are my settings. ss_pouch_1 1 ss_pouch_2 1 ab_move_mouse_outside 1 ss_pouch_0 1 ss_allow_tally_cat 1 ss_equalise_points 0 ss_gather_quest_items 1 ss_repair_mode Cordelia ss_break_length_1 20 ss_allow_loot 1 ss_dpa_special 1 ss_rune_strategy AUTO ss_bot_trip_amount_2 15 ss_break_length_2 60 ss_allow_deposit_runes 0 ss_prep_allow_quests 1 ss_bot_trip_amount_1 10 ss_strategy Auto ss_pouch_3 1 ss_pouch_4 1 ss_allow_break_x_games 0 ss_point_threshold 20 ss_rune_permission Deposit ss_fast_mode 0 ss_prep_upgrade_robes 1 ss_use_pouches 1 ss_uim_mode 0 ss_allow_cells 1 ss_rune_drop_list Air_rune,Mind_rune,Body_rune,Earth_rune,Fire_rune,Water_rune, ss_allow_assemble 1 ss_prep_world_hop 1 ss_prep_upgrade_pickaxe 1 ss_stop_at_set 0 ss_allow_drop_runes 0 And here's the log of it happening. [INFO][Bot #1][01/04 05:30:19 AM]: Using minigame teleport to get to the minigame zone... [INFO][Bot #1][01/04 05:30:19 AM]: Teleporting to CW area... [INFO][Bot #1][01/04 05:30:19 AM]: Opening tab for clan chat... [INFO][Bot #1][01/04 05:30:19 AM]: Did action? : false [INFO][Bot #1][01/04 05:30:20 AM]: Using minigame teleport to get to the minigame zone... [INFO][Bot #1][01/04 05:30:20 AM]: Teleporting to CW area... [INFO][Bot #1][01/04 05:30:20 AM]: Minigames teleports are not the current menu. Need to find the button! [INFO][Bot #1][01/04 05:30:20 AM]: Clicking the minigame teleport menu! [INFO][Bot #1][01/04 05:30:21 AM]: Did action? : false [INFO][Bot #1][01/04 05:30:22 AM]: Using minigame teleport to get to the minigame zone... [INFO][Bot #1][01/04 05:30:22 AM]: Teleporting to CW area... [INFO][Bot #1][01/04 05:30:22 AM]: Current minigame is invalid (Select an activity...), setting correct one... [INFO][Bot #1][01/04 05:30:22 AM]: Current scroll: 0 [INFO][Bot #1][01/04 05:30:23 AM]: Clicked the tele box [INFO][Bot #1][01/04 05:30:24 AM]: Scrolling down... [INFO][Bot #1][01/04 05:30:24 AM]: We need to scroll 1 times... [INFO][Bot #1][01/04 05:30:24 AM]: Pausing... [INFO][Bot #1][01/04 05:30:25 AM]: Now selecting... [INFO][Bot #1][01/04 05:30:26 AM]: Selected teleport! [INFO][Bot #1][01/04 05:30:26 AM]: Selected teleport! [INFO][Bot #1][01/04 05:30:26 AM]: Did action? : false [INFO][Bot #1][01/04 05:30:26 AM]: Using minigame teleport to get to the minigame zone... [INFO][Bot #1][01/04 05:30:26 AM]: Teleporting to CW area... [INFO][Bot #1][01/04 05:30:27 AM]: Correct minigame set, clicking button now... [INFO][Bot #1][01/04 05:30:27 AM]: Found the button! [INFO][Bot #1][01/04 05:30:27 AM]: Clicking teleport button from widget... [INFO][Bot #1][01/04 05:30:28 AM]: Clicked the teleport (1)! [INFO][Bot #1][01/04 05:30:28 AM]: "last_delay_name" changed to "Wait until we teleport via minigame teleports tab" [INFO][Bot #1][01/04 05:30:43 AM]: Did action? : false [INFO][Bot #1][01/04 05:30:43 AM]: Moving onto next state: [INITIAL_STATE] from [TRAVEL_MINIGAME] because: (We have entered the minigame zone.)! [INFO][Bot #1][01/04 05:30:44 AM]: Attaching breaks... [INFO][Bot #1][01/04 05:30:44 AM]: Moving onto next state: [AWAIT_START] from [INITIAL_STATE] because: (We're ready to join a new match.)! [INFO][Bot #1][01/04 05:30:45 AM]: We are missing some pouches! Checking bank... [INFO][Bot #1][01/04 05:30:45 AM]: "need_discover_pouches" changed to "1" [INFO][Bot #1][01/04 05:30:45 AM]: [POUCH-GETTER]: Need to discover pouches... [INFO][Bot #1][01/04 05:30:45 AM]: [POUCH-GETTER]: Discovering bank so we know which pickaxes we have... [INFO][Bot #1][01/04 05:30:45 AM]: "last_delay_name" changed to "PresetBank: Wait 3s until bank is open until bank/depo open 1.1" [INFO][Bot #1][01/04 05:30:46 AM]: [OPEN-BANK]: B: Successfully started moving! Appending new delay until bank is opened. [INFO][Bot #1][01/04 05:30:46 AM]: "last_delay_name" changed to "PresetBank: Wait 10s until bank is open until bank/depo open 1.1" [INFO][Bot #1][01/04 05:30:47 AM]: Successfully banked! [INFO][Bot #1][01/04 05:30:47 AM]: "last_delay_name" changed to "PresetBank: Wait up to 700ms after opening bank 3" [INFO][Bot #1][01/04 05:30:48 AM]: [POUCH-GETTER]: Need to discover pouches... [INFO][Bot #1][01/04 05:30:48 AM]: Checking Small pouch [INFO][Bot #1][01/04 05:30:49 AM]: "last_delay_name" changed to "Wait until pouch withdraw" [INFO][Bot #1][01/04 05:30:50 AM]: [POUCH-GETTER]: Need to discover pouches... [INFO][Bot #1][01/04 05:30:50 AM]: Checking Small pouch [INFO][Bot #1][01/04 05:30:50 AM]: Checking Medium pouch [INFO][Bot #1][01/04 05:30:52 AM]: [POUCH-GETTER]: Need to discover pouches... [INFO][Bot #1][01/04 05:30:52 AM]: Checking Small pouch [INFO][Bot #1][01/04 05:30:52 AM]: Checking Medium pouch [INFO][Bot #1][01/04 05:30:52 AM]: Checking Large pouch [INFO][Bot #1][01/04 05:30:55 AM]: Reached 10 seconds, match is definitely over. [INFO][Bot #1][01/04 05:30:55 AM]: [POUCH-GETTER]: Need to discover pouches... [INFO][Bot #1][01/04 05:30:55 AM]: Checking Small pouch [INFO][Bot #1][01/04 05:30:55 AM]: Checking Medium pouch [INFO][Bot #1][01/04 05:30:55 AM]: Checking Large pouch [INFO][Bot #1][01/04 05:30:55 AM]: Checking Giant pouch [INFO][Bot #1][01/04 05:30:57 AM]: [POUCH-GETTER]: Need to discover pouches... [INFO][Bot #1][01/04 05:30:57 AM]: Checking Small pouch [INFO][Bot #1][01/04 05:30:57 AM]: Checking Medium pouch [INFO][Bot #1][01/04 05:30:57 AM]: Checking Large pouch [INFO][Bot #1][01/04 05:30:57 AM]: Checking Giant pouch [INFO][Bot #1][01/04 05:30:57 AM]: Checking Colossal pouch [INFO][Bot #1][01/04 05:30:57 AM]: "need_discover_pouches" changed to "0" [INFO][Bot #1][01/04 05:30:58 AM]: "discovered_pickaxes" changed to "1" [INFO][Bot #1][01/04 05:30:58 AM]: [BANK]: Adding pickaxe 1265 to held list. [INFO][Bot #1][01/04 05:30:58 AM]: Missing chisel for assembling guardians... [INFO][Bot #1][01/04 05:31:01 AM]: "last_delay_name" changed to "Get chisel (5s)" [INFO][Bot #1][01/04 05:31:01 AM]: "ess_count_2" changed to "0" [INFO][Bot #1][01/04 05:31:01 AM]: "ess_count_4" changed to "0" [INFO][Bot #1][01/04 05:31:01 AM]: "ess_count_8" changed to "0" [INFO][Bot #1][01/04 05:31:01 AM]: "ess_count_16" changed to "0" [INFO][Bot #1][01/04 05:31:01 AM]: "ess_count_32" changed to "0" [INFO][Bot #1][01/04 05:31:01 AM]: We need to discover points for looting later. [INFO][Bot #1][01/04 05:31:01 AM]: Searching rewards... [INFO][Bot #1][01/04 05:31:01 AM]: Selecting [Check] on the rewards object... [INFO][Bot #1][01/04 05:31:03 AM]: "last_delay_name" changed to "Wait up to 5s for check" [INFO][Bot #1][01/04 05:31:07 AM]: We need to discover points for looting later. [INFO][Bot #1][01/04 05:31:07 AM]: Dissect dialogue!! [INFO][Bot #1][01/04 05:31:07 AM]: Dialogue exists [INFO][Bot #1][01/04 05:31:07 AM]: You have 0 catalytic energy and 5 elemental energy. You can use<br>them to search the rift 0 times. You have searched the rift 52 times. [INFO][Bot #1][01/04 05:31:07 AM]: Cata: [You have 0 catalytic energy] [INFO][Bot #1][01/04 05:31:07 AM]: Ele: [5 elemental energy] [INFO][Bot #1][01/04 05:31:07 AM]: "total_score_cat" changed to "0" [INFO][Bot #1][01/04 05:31:07 AM]: "total_score_ele" changed to "5" [INFO][Bot #1][01/04 05:31:07 AM]: "discovered_points" changed to "1" [INFO][Bot #1][01/04 05:31:07 AM]: Attempting to enter new match... [INFO][Bot #1][01/04 05:31:07 AM]: [PREP-ROBES]: Discovering bank so we know how many pearls we have... [INFO][Bot #1][01/04 05:31:09 AM]: "last_delay_name" changed to "PresetBank: Wait 3s until bank is open until bank/depo open 1.1" [INFO][Bot #1][01/04 05:31:09 AM]: [OPEN-BANK]: B: Successfully started moving! Appending new delay until bank is opened. [INFO][Bot #1][01/04 05:31:09 AM]: "last_delay_name" changed to "PresetBank: Wait 10s until bank is open until bank/depo open 1.1" [INFO][Bot #1][01/04 05:31:11 AM]: Successfully banked! [INFO][Bot #1][01/04 05:31:11 AM]: "last_delay_name" changed to "PresetBank: Wait up to 700ms after opening bank 3" [INFO][Bot #1][01/04 05:31:13 AM]: Attempting to enter new match... [INFO][Bot #1][01/04 05:31:13 AM]: Saving bank... CHA-CHING! [INFO][Bot #1][01/04 05:31:13 AM]: "banked_pearls" changed to "65" [INFO][Bot #1][01/04 05:31:13 AM]: Successfully discovered the bank [INFO][Bot #1][01/04 05:31:13 AM]: "discovered_bank" changed to "1" [INFO][Bot #1][01/04 05:31:13 AM]: Determining keep list [INFO][Bot #1][01/04 05:31:13 AM]: We need to withdraw all pearls for repair pouches! [INFO][Bot #1][01/04 05:31:14 AM]: "last_delay_name" changed to "Wait until we withdraw all pearls" [INFO][Bot #1][01/04 05:31:15 AM]: Attempting to enter new match... [INFO][Bot #1][01/04 05:31:15 AM]: Saving bank... CHA-CHING! [INFO][Bot #1][01/04 05:31:15 AM]: "banked_pearls" changed to "0" [INFO][Bot #1][01/04 05:31:15 AM]: We need to withdraw all pearls for repair pouches! [INFO][Bot #1][01/04 05:31:15 AM]: "did_withdraw_pearls_repair" changed to "1" [INFO][Bot #1][01/04 05:31:15 AM]: Attempting to enter new match... [INFO][Bot #1][01/04 05:31:15 AM]: Saving bank... CHA-CHING! [INFO][Bot #1][01/04 05:31:15 AM]: Selecting [Peek] on the barrier... [INFO][Bot #1][01/04 05:31:19 AM]: "last_delay_name" changed to "Wait up to 5s for dialogue" [INFO][Bot #1][01/04 05:31:23 AM]: Attempting to enter new match... [INFO][Bot #1][01/04 05:31:23 AM]: Line contains power! [INFO][Bot #1][01/04 05:31:23 AM]: Found percent, set to 12 [INFO][Bot #1][01/04 05:31:23 AM]: Waiting a few seconds... [INFO][Bot #1][01/04 05:31:23 AM]: Attempting to enter new match... [INFO][Bot #1][01/04 05:31:23 AM]: Line contains power! [INFO][Bot #1][01/04 05:31:23 AM]: Found percent, set to 12 [INFO][Bot #1][01/04 05:31:23 AM]: Waiting a few seconds... [INFO][Bot #1][01/04 05:31:24 AM]: Attempting to enter new match... [INFO][Bot #1][01/04 05:31:24 AM]: Waiting a few seconds... [INFO][Bot #1][01/04 05:31:25 AM]: Attempting to enter new match... [INFO][Bot #1][01/04 05:31:25 AM]: Waiting a few seconds... [INFO][Bot #1][01/04 05:31:25 AM]: Attempting to enter new match... [INFO][Bot #1][01/04 05:31:25 AM]: Waiting a few seconds... [INFO][Bot #1][01/04 05:31:26 AM]: Attempting to enter new match... [INFO][Bot #1][01/04 05:31:26 AM]: Waiting a few seconds... [INFO][Bot #1][01/04 05:31:26 AM]: Attempting to enter new match... [INFO][Bot #1][01/04 05:31:26 AM]: Waiting a few seconds...
-
Czar Guardians of the Rift
What are the item requirements for the quests? Oh, for some reason, I didn't see the gather items for quests option. My bad.
-
Czar Guardians of the Rift
Trial please?
-
$1000.00 in OSBot Credit Holiday Giveaway
I got a smart watch, some head phones, and some home made baked sweets.