-
Posts
210 -
Joined
-
Last visited
-
Days Won
2 -
Feedback
100%
Everything posted by Ragnar Lothbrok
-
WTB means Willing To Buy - he's buying accounts with 15HP
-
Ragnars Giant Mole -「Source Code」「Dharok's Only」
Ragnar Lothbrok replied to Ragnar Lothbrok's topic in Combat & Prayer
Just pushed a fix -
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.
-
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.
-
After initially stating that the account would not be botted:
-
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.
-
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 Giant Mole -「Source Code」「Dharok's Only」
Ragnar Lothbrok replied to Ragnar Lothbrok's topic in Combat & Prayer
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 Lothbrok replied to Ragnar Lothbrok's topic in Combat & Prayer
It will walk to a random position in the cave - if at anytime the mole is located it will stop the WalkingEvent. If the mole is not found another random position that is not within 25 tiles of the current position is generated. This will repeat until the mole is located. -
Ragnar's NMZ - Need some help testing
Ragnar Lothbrok replied to Ragnar Lothbrok's topic in Spam/Off Topic
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
Ragnar Lothbrok replied to Ragnar Lothbrok's topic in Spam/Off Topic
Still looking for one or two more to help test! -
Ragnars Giant Mole -「Source Code」「Dharok's Only」
Ragnar Lothbrok replied to Ragnar Lothbrok's topic in Combat & Prayer
It only loots basic items atm - full source code is on git so you can easily go in and add items to the lootable items array. I don't have an account with a fally shield but if you're happy to let me test using an account with one I can add this feature. -
Would prefer at least flat 70's at least so it doesn't power through absorption pots
-
Need something ready made in that case - thanks anyway man
-
Time frame?
-
Is account ready made or you offering a service?