hi guys, im currently working on a masterfarmer bot
just wondering if theres some kind of funtion to check if you are stunned
also, how do i get the bot to click somewhere on the minimap
any help i would love cheers,
hi guys, im currently working on a masterfarmer bot
just wondering if theres some kind of funtion to check if you are stunned
also, how do i get the bot to click somewhere on the minimap
any help i would love cheers,
I dunno if it's exactly possible. Stunned being the little yellow birds? You could do a check for that itself? Just for the colours.
Tutorials:
| Utilizing the tools in Villavu | How to create Pythagoras theorem calculator in JavaScript | How to make a live signature of your Pascal Script | Concepts of Programming Tutorial | Worked on Frog Random with Justin for RS07
Yeah, look for the yellow in a box around your player's head. And to click on the mimimap you can look for colors in a box around the minimap and then move the mouse to those coordinates and click.![]()
Do a color count for yellow in the area above the character's head, where the birds appear.
Flight's thieving guild had a nice stun function for the live game, you might want to check that out.
Miner & Urn Crafter & 07 Chicken Killer
SPS BlindWalk Tutorial
Working on: Nothing
teacher in every art, brought the fire that hath proved to mortals a means to mighty ends
okay thanks, but how do i do a box with the colours?
Simba Code:if (CountColorTolerance(YellowBirdColor, xs, ys, xe, ye, Tolerance) > 20) then
WriteLn('Birds! We are stunned!')
Find YellowBirdColor by using the color picker tool and clicking the yellow birds.
Find xs and ys by using the color picker tool and clicking the top left corner of the box around your player's head.
Find xe and ye by using the color picker tool and clicking the bottom right corner of the box around your player's head.
Find Tolerance using guess and check. (Try 5 or 10, higher number means it will find more similar colors)
20 is the number of pixels that will have to be yellow for it to think it's stunned. You can find it out by counting the colors in the box, but you should go with a number that is less than the number that are yellow just to be safe.
ok cheers
There are currently 1 users browsing this thread. (0 members and 1 guests)