PDA

View Full Version : [Request] Feather buy



spin3x
03-19-2013, 05:26 PM
Just a simple feather buy with or without world switching (World switching would make it 10x faster)

I've got this VERY basic feather buy I tried making (I'm a real novice at this)

program Theiving;
var
time: integer;
{$define srl5}
{$i srl/srl.simba}

Procedure StartTheiving;
var
x, y:Integer;
begin
if FindColorSpiralTolerance(x, y, 12237764, 116, 65, 160, 100, 179) then
MoveMouse(x, y); //Don't use Move Mouse (see below)
Mouse(x, y, 1, 1, Mouse_Right);
Wait(164);
begin
if FindColorSpiralTolerance(x, y, 2070783, 96, 144, 186, 152, 179) then
MoveMouse(x, y); //Don't use Move Mouse (see below)
wait(173);
ClickMouse(631, 402, 1)
wait(2000);
end;
end;

begin
StartTheiving
repeat
StartTheiving;
until(false);
end.program new;
begin
end.

Or could someone maybe edit it and make it less botlike?

Thanks

Le Jingle
03-19-2013, 06:34 PM
Is there any more information about this to share?
I'd be willing to help you out, giving examples of better formatted/techniques, but from the program title/procedure names and the short description, about all I know (I think) is that you want to buy feathers from a shop?

spin3x
03-19-2013, 06:40 PM
Sorry about the no information. The title and procedure names are wrong xD I just used my old script and edited it to fit with these id's. Yh it's just buying feathers from the shop.

nickyvh
03-19-2013, 10:16 PM
from witch shop must it buy ?

rj
03-19-2013, 10:19 PM
I could do this

spin3x
03-19-2013, 11:03 PM
I could do this

If you have time and would like to help out the community, we would greatly appreciate it.


from witch shop must it buy ?

Either port sarim which requires no skills or Fishing guild which requires 68 fishing. Port sarim one is 60% empty.

Fishing guild is 99% full stock.

nickyvh
03-20-2013, 07:15 PM
I will make it

Update:


Here I have it
20035

Its for Portsarim shop

spin3x
03-20-2013, 09:46 PM
Nikaa, I get this error:

Exception in Script: Unable to find file 'SRL-OSR/SRL.Simba' used from 'C:\Documents and Settings\Administrator\My Documents\Downloads\fff.simba'

I think it's with every script I use :/

sahibjs
03-20-2013, 10:41 PM
Nikaa, I get this error:

Exception in Script: Unable to find file 'SRL-OSR/SRL.Simba' used from 'C:\Documents and Settings\Administrator\My Documents\Downloads\fff.simba'

I think it's with every script I use :/

Its because you don't have the SRL OSR include.

Get it here: https://github.com/SRL/SRL-OSR
I don't think it is officially released, so there might not be a guide for properly setting up. Here is my short guide:
You need to extract the folder you just downloaded off the github (SRL-OSR-master) to Simba/Includes. Rename the folder to "SRL-OSR".