Everything posted by Ragnar Lothbrok
-
WTB Accounts with 15 HP
WTB means Willing To Buy - he's buying accounts with 15HP
- Ragnars Warrior Guild - 「Collect Tokens」「Progressive Defender Looting」「Camp Top/Bottom Floors」
- Ragnars Giant Mole -「Source Code」「Dharok's Only」
-
Dispute Against Gearing
It was stated that he would be training the account - afking via mobile. I think if a worker was going to be taking on the account it should have been clarified before hand and maybe all of this could have been avoided: He did later state that he had to hand it over to the worker however it wasn't mentioned before the trade began or payment etc was made.
-
Dispute Against Gearing
An account has been provided that matches the requirements however it's not the original account - either way I'm happy to take the account and consider this trade complete.
-
Dispute Against Gearing
After initially stating that the account would not be botted:
-
Dispute Against Gearing
Disputed member: [member=@gearing] Thread Link: No thread - sale was sorted via discord. Explanation: I bought an account from gearing for 30m 07 gp. He would then level the account to flat 60 melee stats to allow me to use the account for testing my nmz script. After payment was made he stated a time frame of around 24 hours and my email address was registered against the account. Because my email was now registered I know the username as it's part of the validation email Jagex send when verifying the address. 24 hours later the account still isn't ready but communication is good so I'm not worried and wait patiently. He states that Friday (today) the account will be ready. This morning when I log on I ask for an update on the account status. I asked several times throughout today actually to which I received something along the lines of: "let me ask the venezuelan". All I was looking for was a simple update on the account status. I began to grow suspicious so I look up the account on the highscores page to find no results - for an account that's supposed to be flat 60's by today this is weird because there should at least be something up there. I asked him after I notice this to confirm the account username so I can see the status or provide me one. Again a reply that's not very useful or settling. Upon asking @Decode for advise on what action to take to try and avoid bringing this to a dispute I attempted to reset the password of the account using my email that was registered to the account. According to Jagex no account is registered to the email address. This suggests he's recovered the account as he can't change the email address back without my verifying via my email? Evidence: OSBot pm confirming that it is in fact gearing I'm speaking with on discord: As you can see in the second screen shot it is in fact my account he's trading with as per the following discord conversation: Him confirming that payment was received and account will be ready in 24 hours: Him asking for me email to set against the account: Email from Jagex to verify my email: Him Confirming that the account will not be botted: Me asking for account status updates: *All pictures hidden* Anything else you might need let me know.
- Ragnars Warrior Guild - 「Collect Tokens」「Progressive Defender Looting」「Camp Top/Bottom Floors」
-
Ragnars Warrior Guild - 「Collect Tokens」「Progressive Defender Looting」「Camp Top/Bottom Floors」
version before looted bronze but nothing else as there was a typo in the code that caused it to always think you were currently looking for a bronze defender. The increase in CPU will likely be due to the changes I made to defender detection - I'll refactor this just now to fix that increase.
-
Malcolm's Cabbage Picker
I refactored this for you - should give you an idea of how and when to use conditional sleeps Good job for your first script however! I was unsure on the distances as I didn't test this so used web walking - if the distances are short enough that can be changed back to: getWalking.walk(); import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.utility.ConditionalSleep; import org.osbot.rs07.api.map.Area; import org.osbot.rs07.api.map.constants.Banks; import org.osbot.rs07.api.model.Entity; @ScriptManifest(author = "Malcolm", info = "Pick Cabbage", name = "Cabbage Picker", version = 0.1, logo = "") public class Main extends Script { private Area cabbagePatch = new Area(3057, 3508, 3046, 3501); public void onStart() { log("Cabbage Picker"); } public void onExit() { log("Enjoy your Cabbages!"); } public int onLoop() throws InterruptedException { if (getInventory().isFull()) { if (!Banks.EDGEVILLE.contains(myPosition())) { getWalking().webWalk(Banks.EDGEVILLE); } else { if (!getBank().isOpen()) { if (getBank().open()) { new ConditionalSleep(5000) { @Override public boolean condition() throws InterruptedException { return getBank().isOpen(); } }.sleep(); } } else { if (getBank().depositAll()) { new ConditionalSleep(10_000) { @Override public boolean condition() throws InterruptedException { return getInventory().isEmpty(); } }.sleep(); } } } } else { if (!cabbagePatch.contains(myPosition())) { getWalking().webWalk(cabbagePatch); } else { Entity cabbage = objects.closest("Cabbage"); long cabbagesBefore = getInventory().getAmount("Cabbage"); if (cabbage != null) { if (cabbage.interact("Pick")) { new ConditionalSleep(10_000) { @Override public boolean condition() throws InterruptedException { return getInventory().getAmount("Cabbage") > cabbagesBefore; } }.sleep(); } } } } return 500; } }
- Ragnars Warrior Guild - 「Collect Tokens」「Progressive Defender Looting」「Camp Top/Bottom Floors」
- Ragnars Warrior Guild - 「Collect Tokens」「Progressive Defender Looting」「Camp Top/Bottom Floors」
-
Ragnars Giant Mole -「Source Code」「Dharok's Only」
Area area = null; if (lastCheckedArea != null) { area = buildArea(moleLair.getRandomPosition(), 10); } else { area = buildArea(moleLair.getRandomPosition(), 10); while (api.getMap().realDistance(area.getRandomPosition()) < 25) { area = buildArea(moleLair.getRandomPosition(), 10); } } if (!inArea(area)) { lastCheckedArea = area; settings.setCurrentAction("Walking to random position in mole lair"); if (api.getConfigs().get(staminaConfig) < 1 && api.getSettings().getRunEnergy() <= 70) { settings.setCurrentAction("Drinking stamina potion"); drinkPotion.drink("Stamina potion"); } WalkingEvent walkingEvent = new WalkingEvent(area); walkingEvent.setMinDistanceThreshold(0); walkingEvent.setBreakCondition(new Condition() { @Override public boolean evaluate() { return findMole() != null; } }); api.execute(walkingEvent); }
- Ragnars Giant Mole -「Source Code」「Dharok's Only」
-
Ragnar's NMZ - Need some help testing
Think mirror mode is broken atm so haven't tested however you can try - if not use injection for now.
-
Ragnar's NMZ - Need some help testing
Still looking for one or two more to help test!
- Ragnars Warrior Guild - 「Collect Tokens」「Progressive Defender Looting」「Camp Top/Bottom Floors」
- Ragnars Giant Mole -「Source Code」「Dharok's Only」
- Ragnars Warrior Guild - 「Collect Tokens」「Progressive Defender Looting」「Camp Top/Bottom Floors」
-
Need NMZ Account
Would prefer at least flat 70's at least so it doesn't power through absorption pots
-
Need NMZ Account
- Need NMZ Account
Need something ready made in that case - thanks anyway man- Need NMZ Account
Time frame?- Need NMZ Account
Is account ready made or you offering a service?- Halicarnassus's Custom account / Combat Powerleveling service |Active|
NMZ account from scratch - price? - Need NMZ Account