Jump to content

DeadPk3r

Trade With Caution
  • Posts

    325
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by DeadPk3r

  1. Actually a interesting script be useful for someone who has a few zulrah bots going on and doesn't want to manually buy everything. Good work.
  2. Nice to hear could you look into maybe allowing the user to drag multiple items around?, so if i shift click on 3 items that will select them but if i go to drag them ill only drag top item, and could you add a button on the UI to add a tab if user by mistake removes one or make it where tab categories cant be removed?
  3. Anyone got any custom sets that are good if so please upload, looking for better setups.
  4. Just bought looks great. Edit: Bought script works fast. Edit2: If someone makes there own preset upload them would like to see other layouts. @ProjectPact If anyone uploads there presets could you add them to OP?
  5. I am the original owner of the account just looking for a price check i don't think im going to sell but made me curious to see what i could get. Account features: Never banned/Muted. Full elite void Fire cape Rigour / Augury Avas Assembler Torso / Dragon defender Rogue / Pyromancer set Pets (Venenatis, Mole, Zulrah) Screenshots
  6. DeadPk3r

    Phony's Walker

    You will need to edit my script above, and then compile it after that just add it to folder below change your username first though, if you don't know how to compile it look in the tutorial section there are a few tutorials on how to set it up. C:\Users\USERNAME\OSBot\Scripts
  7. Your trolling right?, its 0.79/m (usd), i see ur check euros this guy here is selling for usd.
  8. Hmm alright yeah i don't know if it still happens or if jagex removed it but i remember a few years back if you did too many failed logins you would get a few minute wait timer before you could try again.
  9. Wouldn't you still run into the issue of too many failed attempts if you were to check a decent size list, and most end up invalid?
  10. I would just do gold basically buy low sell high so get a little bit of profit, and feedback for each sale,purchase really doesn't even have to be big amounts.
  11. If you still have it all ill buy all of it (paypal).
  12. Alright will be another one of your scripts i buy ;)
  13. I don't fully understand but if you are asking how long can you bot for with a script you made the answer is you have no limit not like other bots that let you bot 5 minutes then you need to become vip. No limit on any scripts made by you, or sdn etc.
  14. A nice goal my advice is find a method that you believe will work test it out abit if unless before committing to it doubt you wanna make like 20-30 accounts on a method that dies after x users do it anyways good luck!
  15. Man your crazy as fuck for keeping that much on ur zulrah bots lol.
  16. @MarWo22 I have a looting script i can just give you the source code too its not completed still needs to have banking completed, and some other stuff but u can rip what u want from it, it can grab prices of all in game items, and has a price setting in GUI so it will only loot items that are more then whatever you set it too, just send me a PM if u want it or not.
  17. If the script isn't appearing in the script selection its probably because its not using the correct manifest skeleton or you are not exporting the script itself to correct folder and or it has errors in which it wouldn't actually export, posted skeleton / folder location below so u can check, besides that not much anyone else can tell you unless you provided the code itself, also i don't know how you are compiling but if your putting the .class or .java or both in the osbot scripts folder it will not work needs to be a .jar format. Additionally make sure you have osbot.jar set as external library. Folder: C:\Users\YOURACC\OSBot\Scripts Skeleton: import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.awt.*; @ScriptManifest(name = "Skeleton", author = "Alek", version = 1.0, info = "", logo = "") public class Skeleton extends Script { @Override public void onStart() { //Code here will execute before the loop is started } @Override public void onExit() { //Code here will execute after the script ends } @Override public int onLoop() { return 100; //The amount of time in milliseconds before the loop starts over } @Override public void onPaint(Graphics2D g) { //This is where you will put your code for paint(s) } }
  18. Great looking forward to this script i cant remember if i asked before or not but will this be free or paid?.
  19. DeadPk3r

    Phony's Walker

    @zekeria Just create your own if you need one here is code to do it this example checks if player is at the small varrock bank if they are will walk to square then to ge, but if its not at small bank to start will walk there then go to square then ge after just example if u wanted it to go multiple places before stopping or could edit it to only got one spot. import org.osbot.rs07.api.map.Area; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(name = "Walking Script", author = "", version = 1.0, info = "", logo = "") public class Main extends Script { // Get area codes here - https://explv.github.io/ Area varrockSquare = new Area(3207, 3434, 3219, 3422); Area grandExchange = new Area(3161, 3492, 3167, 3487); Area varrockSmallBank = new Area(3250, 3422, 3257, 3419); @Override public void onStart() throws InterruptedException { } @Override public void onExit() { } @Override public int onLoop() throws InterruptedException { // checks if player is at first location, if they are then will walk to second location, but if player isnt at first location will walk to first, once player is at second // location, it will then walk to final location. if(varrockSmallBank.contains(myPlayer())) { log("At first location walking to second."); getWalking().webWalk(varrockSquare); } else { getWalking().webWalk(varrockSmallBank); log("was not at first location walking to it."); } if(varrockSquare.contains(myPlayer())) { log("At second location walking to final"); getWalking().webWalk(grandExchange); } if(grandExchange.contains(myPlayer())) { stop(); log("At final location stopping"); } return random(800); } }
  20. This , most are paid but can get them cracked if u look around.
  21. If you need a walking script, and have a $1 you can buy @Explv walker on store here its pretty good and can walk almost anywhere. https://osbot.org/forum/topic/89947-explvs-walker/
  22. I would just use https://www.boglagold.com/ there livechat does have poor grammar but they are legit, i sold them 2.3B about a month ago did it in two sales to be least semi-safe and all went through fine and i still haven't been disputed against, Additionally you could sell in smaller batches or try selling on playerauctions i've never sold there but i believe even if buyer disputes it won't effect you.
  23. If you get unbanned let us know kinda curious if this will actually work.
  24. Will this be free or paid script?
×
×
  • Create New...