Everything posted by Polymorphism
- Oh snap, Poly what?
- Oh snap, Poly what?
-
Oh snap, Poly what?
Coming soon to VIP+ https://puu.sh/ur0Ax/9c3c6e82a4.png http://puu.sh/ur1e0/66b7ef8065.png 5.5hr prog https://puu.sh/uwsoF/bd84cbd681.png Updates Done In progress Not started/having issues 03/24/17 Revised special attacking Add preset special attacks Walking to preset Positions for AFK (such as SE corner, or center, etc) Super potion support(non NMZ) Toxic blowpipe w/recharging Idle prevention Praying melee with prayer/s restore potion support Eagle eye, piety, etc Runtime stat tracking
-
[Help] Conditional Sleep
No problem, hadn't noticed he already put down pretty much what i did lol. Mustve been writing it up nearly the same time.
-
[Help] Conditional Sleep
From what I understand you're simply trying to make the script wait until the wine is back on the table? This isn't perfect, but you could definitely build on it In your onLoop you shouldn't make the script DyanmicSleep while waiting, just don't make it do anything. onLoop(){ GroundItem item = groundItems.closest("item"); if(item != null || item.exists()){ //grab that shit } if(item == null || !item.exists()){ if(!magic.isSpellSelected()){ //check if can cast, then cast spell } if(magic.isSpellSelected()){ if(!magic.getSelectedSpellName().equalsIgnoreCase(NormalSpells.TELEKINETIC_GRAB.name())){ //deselect spell only } if(!hoverTile.getPolygon(bot).contains(mouse.getPosition()){ // hover the tile //return 600 or whatever here. Just make the script return inside onLoop() when waiting } } } }
-
Applet is tiny on high resolution screen
I don't have this problem on my laptop, but anyone who has this issue please try this. I may or may not work. Essentially disabling Java dpi awareness http://stackoverflow.com/questions/30555401/java-disable-dpi-aware-not-working
-
๐ฅ KHAL SCRIPTS TRIALS ๐ฅ HIGHEST QUALITY ๐ฅ BEST REVIEWS ๐ฅ LOWEST BANRATES ๐ฅ TRIALS AVAILABLE ๐ฅ DISCORD SUPPORT ๐ฅ ALMOST EVERY SKILL ๐ฅ CUSTOM BREAKMANAGER ๐ฅ DEDICATED SUPPORT
I would like to try out Khal Warrior Guild please.
-
nmz prayer flciking vs rock cake to keep hp down
I've noticed that a lot of scripts flick prayer to keep hp at 1. but why dont they just guzzle rock cake? I dont see a benefit over either one, just that for a split second you might have 2 hp using the rock cake method.
-
Need a new show..
Stranger Things - You'll be pissed about the way S1 ends, but the show is OMG good DCs Legends of Tomorrow Justice League/JL Unlimited/Young Justice
-
Closest attackable npc
I just set a field variable for the filter such as below private Predicate<NPC> npcFilter = n -> n != null && myPlayer().getArea(6).contains(n) && n.getName().contains("name") && n.hasAction("Attack") && n.isAttackable() && !n.isUnderAttack(); NPC npc = s.npcs.getAll().stream().filter(npcFilter).findFirst().get(); if (npc.interact("Attack")) { new ConditionalSleep(6500, 500) { @Override public boolean condition() throws InterruptedException { return combat.isFighting() || myPlayer().isInteracting(npc); } }.sleep(); //max sleep 6.5s, recheck every 500ms. Stops sleeping if fighting or interacting with the filtered npc } Edit: It'd also be useful to add map#canReach to the Predicate and sort the NPCs in the stream by distance .sorted((n1, n2) -> Integer.compare(s.map.realDistance(n1), s.map.realDistance(n2)))
-
Closest attackable npc
I just set a field variable for the filter such as below private Predicate<NPC> npcFilter = n -> n != null && myPlayer().getArea(6).contains(n) && n.getName().contains("name") && n.hasAction("Attack") && n.isAttackable() && !n.isUnderAttack(); NPC npc = s.npcs.getAll().stream().filter(npcFilter).findFirst().get(); if (npc.interact("Attack")) { new ConditionalSleep(6500, 500) { @Override public boolean condition() throws InterruptedException { return combat.isFighting() || myPlayer().isInteracting(npc); } }.sleep(); //max sleep 6.5s, recheck every 500ms. Stops sleeping if fighting or interacting with the filtered npc }
-
EngineerThieving
Dwarven Rock cake yourself to 1 while the script runs and let the let 'man' KO you.
-
how to walk a random path to destination?
For completely random paths for each run, just have a few hardcoded and chose which one randomly. This below will take a path and randomize the actual tile it's walked to by an offset. It's not tested, nor probably the way to do things. //add inside the for loop camera controlls //also helps to check the distance, if so far then use the minimap //also if distance of position is so close (ie distance=4) skip to next position public void walkRandom(Position... pos, int minX, int maxX, int minY, int maxY){ Position tmpPos = null; for(Position p : pos) { int xrand = p.getX() + random(minX, maxX); //min,max are offsets of the position int yrand = p.getY() + random(minY, maxY); //Can use negative integer tmpPos = new Position(xrand, yrand, p.getZ()); //if canReach tmpPos //walk to tmpPos } }
-
SMS Updates?
That's the only hard part of it. The rest is essentially store encrypted phone numbers in a db, have the script query based on OSB name with the text to be sent. (that's how i'd do it for a multi-script api)
-
Old bot from years ago, can't remember its name...
72h nothing, ran perfect fighter ( i think that was the name) for 21 days straight. Was too OP
-
SMS Updates?
this is why this isn't a priority for me. I have to gather the different carrier addresses for as many countries as possible.
-
SMS Updates?
That's what I thought. Yeah I kinda have that being worked on, but I'm full on projects between irl duties atm. Should be finished with one of a big private scripts in a few days, so that will become a priority.
-
Best method for breaking
You've got quite the vocabulary! To myself and many of other users, it will further customize antiban options. Even though it may not work (breaking to delay bans) if Jagex does have "bot detection" software or if they just analyze playing patterns
-
SMS Updates?
Did they allow the user to tell the script what to do at all? If not, I'm working on something similar. However, mine isn't particularly a priority since I feel it won't gather a lot of attention.
-
Best method for breaking
Essentially, yes. However I tend to write scripts where the client cant/wont do it such as being in a heavy combat zone. I want it internally done with my script so that it'll go to a safe zone or whatever.
-
Best method for breaking
I will be adding built in break manager to some of my scripts and I'd like ya'lls input on the best method. Currently I am planning to use a Timer class which basically counts down and break when it stops, restarting timer while it is breaking, then stop breaking and resume when the timer stops and reset for next break period. Kinda confusing but the time ranges will come from user input and just utilised the same timer over and over
-
Save Script Runtime Data (Java Class + PHP + MySQL Included)
This isn't a bad write up, very descriptive too There are many people who lack to knowledge on how data tracking works and this will certainly assist them
-
Gimme Stronghold Answers
From what I've read, webwalker does not current or plan on ever supporting the stronghold Thank you @Chris, this is a big help, did you collect this yourself, or may I ask for credits(if due), please
-
Gimme Stronghold Answers
I am planning an API that will traverse the stronghold (a mid-long term project ofc), but before I start I will need all of the answers. If you guys would be so kind as to post any collection of answers, I would love you forever This is srs! Note: I will begin collecting them myself if need be, but i'm sure someone has that info laying around
-
Get bounding tiles of Area
In my case it's simply for drawing the outside of an area vs all tiles of the area. My script uses a max travel distance , so in my case all i gotta do is draw tiles that are so far away. But this will be a bit different if the radius (circles I know, but relative enough) is unknown