PDA

View Full Version : iFletcher



Hexless
03-08-2013, 09:22 PM
Features:
Supports All Logs!
Random Antiban!
Pest Control Bank so NO randoms!


ToDo:
Better colour finding (its kinda static atm)
Add More Bank Support
Basically IMPROVE the WHOLE SCRIPT


19789
19785

Peakay
03-08-2013, 10:16 PM
SMART is not working at all, it's just using the mouse as normal.

harloe
03-08-2013, 10:27 PM
SMART is not working at all, it's just using the mouse as normal.

Didnt test. But look at line 9?

Hexless
03-08-2013, 10:28 PM
SMART is not working at all, it's just using the mouse as normal.
have you removed the // before the smart at the top? if not remove them then run as admin and it should work
(i forgot to delete the // before posting as i was testing out parts of the script and didnt need smart to open)

Rand
03-08-2013, 10:29 PM
Tips for your script:

1. Change your banking method, use colours, not MMouse.
2. Use Wait(randomrange(*,*)), looks tidier, also I wouldn't use sleep(). (* being your values you want inbetween)
3. With your banking method, use P07_ChooseOptionMulti, waiting isn't necessary when opening your bank (perhaps it is if you lagg).
4. Never use your X, Y limits as 0. EG: MMouse(486, 43,0,0); change this to MMouse(486, 43,5,5); the 5's repesent how many pixels the mouse can move away from the point, if it's clicking the exact same pixels then it is extremely bot like.
5. If you want it to work with SMART, use a different method than SendKeys.
6. Your antiban happens too frequently, every inventory it does 1 antiban, change the case to:

Case Random(300) Of
1..5: P07_HoverSkill('Fletching',RandomRange(5000,6000)) ;
5..10:begin
mmouse(365,31,10,10);
ClickMouse2(Mouse_Right);
end;

(I think that's how you state 1 to 5, haven't tried).
7. Remove ActivateClient if you want to use SMART.
8. Perhaps add a GUI/Form that loads on Start for users to be able to select Longbows/Shortbows instead of having to edit the code.
9. Perhaps at the end change your:

until(false);

to

until(NOT P07_LoggedIn);

when the persons account logs out it will stop the script, stops it from clicking on the main screen (either this or add your log in IF statement to the main loop).

Hope this help! Good luck with the script!

Hexless
03-08-2013, 10:31 PM
Tips for your script:

1. Change your banking method, use colours, not MMouse.
2. Use Wait(randomrange(*,*)), looks tidier, also I wouldn't use sleep(). (* being your values you want inbetween)
3. With your banking method, use P07_ChooseOptionMulti, waiting isn't necessary when opening your bank (perhaps it is if you lagg).
4. Never use your X, Y limits as 0. EG: MMouse(486, 43,0,0); change this to MMouse(486, 43,5,5); the 5's repesent how many pixels the mouse can move away from the point, if it's clicking the exact same pixels then it is extremely bot like.
5. If you want it to work with SMART, use a different method than SendKeys.
6. Your antiban happens too frequently, every inventory it does 1 antiban, change the case to:

Case Random(300) Of
1..5: P07_HoverSkill('Fletching',RandomRange(5000,6000)) ;
5..10:begin
mmouse(365,31,10,10);
ClickMouse2(Mouse_Right);
end;

(I think that's how you state 1 to 5, haven't tried).
7. Remove ActivateClient if you want to use SMART.
8. Perhaps add a GUI/Form that loads on Start for users to be able to select Longbows/Shortbows instead of having to edit the code.
9. Perhaps at the end change your:

until(false);

to

until(NOT P07_LoggedIn);

when the persons account logs out it will stop the script, stops it from clicking on the main screen (either this or add your log in IF statement to the main loop.

Hope this help! Good luck with the script!

I know it isnt perfect but ty for the help but its kinda hard to get the colours correct in the PC bank as many npcs/objects are white-ish including the bank

Hexless
03-08-2013, 10:33 PM
Tips for your script:

1. Change your banking method, use colours, not MMouse.
2. Use Wait(randomrange(*,*)), looks tidier, also I wouldn't use sleep(). (* being your values you want inbetween)
3. With your banking method, use P07_ChooseOptionMulti, waiting isn't necessary when opening your bank (perhaps it is if you lagg).
4. Never use your X, Y limits as 0. EG: MMouse(486, 43,0,0); change this to MMouse(486, 43,5,5); the 5's repesent how many pixels the mouse can move away from the point, if it's clicking the exact same pixels then it is extremely bot like.
5. If you want it to work with SMART, use a different method than SendKeys.
6. Your antiban happens too frequently, every inventory it does 1 antiban, change the case to:

Case Random(300) Of
1..5: P07_HoverSkill('Fletching',RandomRange(5000,6000)) ;
5..10:begin
mmouse(365,31,10,10);
ClickMouse2(Mouse_Right);
end;

(I think that's how you state 1 to 5, haven't tried).
7. Remove ActivateClient if you want to use SMART.
8. Perhaps add a GUI/Form that loads on Start for users to be able to select Longbows/Shortbows instead of having to edit the code.
9. Perhaps at the end change your:

until(false);

to

until(NOT P07_LoggedIn);

when the persons account logs out it will stop the script, stops it from clicking on the main screen (either this or add your log in IF statement to the main loop).

Hope this help! Good luck with the script!
sorry for double replying but how to i create a GUI ive seen a guide but i still dont really understand it :\?

Rand
03-08-2013, 10:33 PM
I'll give you 3 colours that work IF your character is facing south they are here:

bankcolour:= 5468283 //PEST CONTROL 1
bankcolour:= 4673371 //PEST CONTROL 2
bankcolour:= 5534076 //PEST CONTROL 3


I used them in my old scripts, I now use a different colour.

Rand
03-08-2013, 10:36 PM
sorry for double replying but how to i create a GUI ive seen a guide but i still dont really understand it :\?

If you don't understand it I can make a GUI for you.

Hexless
03-08-2013, 10:40 PM
If you don't understand it I can make a GUI for you.

Really man? That would be soooooo epic if you would! :)
Once I've editted my script a little so its a bit more unbot like ill pm you it :)

rj
03-08-2013, 10:53 PM
Really man? That would be soooooo epic if you would! :)
Once I've editted my script a little so its a bit more unbot like ill pm you it :)

Watch out if you mess up the slightest thing with Tforms simba will crash

Hexless
03-08-2013, 11:04 PM
Watch out if you mess up the slightest thing with Tforms simba will crash
Oh okay

zyzz0r
03-08-2013, 11:25 PM
can it string?

Hexless
03-09-2013, 06:22 AM
can it string?

not yet but it should be able to sooon

guifrz
02-19-2014, 11:09 PM
22966

dunno what to do dude, help me