![]() |
|
#1
|
|||
|
|||
|
Well, I got tired of looking for a premmy script to get chicken feathers so I made one myself, it's not the best script ever but it works fine, I'm using it atm
I'll give you some tips. - Cut off the wheat close to Billy (The food NPC), you'll need a sythe. -Don't use/make a waypoint script that goes from premmy side to free side all the way, it'll be a waste of time, use a free account to hunt chickens on the free area, and your premmy acc to hunt 'em on the premmy side, it'll save you a lot of time. In case you don't know it, the chicken feather ID is 5890 Here is my wpt script premmychickens.wpt Here's the free area chicken wpt script, all credits to Ziwe free rook chicken.wpt In order to attack the chickens you must add this to your Scripter (All credits to Elwineyok nor): Code:
var
MotherSlime: integer;
function Attacking: boolean;
var
x: integer;
begin
Result := False;
for x := 0 to Creatures.Count - 1 do
begin
if x >= Creatures.Count then Break;
if Creatures.Creature[x].Attacking then
begin
Result := True;
Exit;
end;
end;
end;
function GetFollowedCreatureID: integer;
var
x: integer;
begin
Result := False;
for x := 0 to Creatures.Count - 1 do
begin
if x >= Creatures.Count then Break;
if Creatures.Creature[x].Following then
begin
Result := Creatures.Creature[x].ID;
Exit;
end;
end;
end;
function GetCreatureByNameExcludeID(Name: string; ID: integer): TCreature;
var
x: integer;
begin
Result := nil;
for x := 0 to Creatures.Count - 1 do
begin
if x >= Creatures.Count then Break;
if ((Creatures.Creature[x].Name = Name) and (Creatures.Creature[x].ID <> ID)) then
begin
Result := Creatures.Creature[x];
Exit;
end;
end;
end;
begin
UpdateWorld;
MotherSlime := GetFollowedCreatureID;
while not Terminated do
begin
UpdateWorld;
if not Attacking then
begin
Creature := GetCreatureByNameExcludeID('Chicken', MotherSlime);
if Creature <> nil then
begin
Creature.Attacking := True;
end;
end;
Sleep(1000);
end;
end;
Last edited by Casey; 11-12-2006 at 08:56 PM. |
|
#2
|
|||
|
|||
|
Great! Just what I want. Thanks
|
|
#3
|
|||
|
|||
|
mine is a combination of both premmy and rook, i got 60 feathers in one night
|
|
#4
|
|||
|
|||
|
Two days straight of hunting chickens
|
|
#5
|
|||
|
|||
|
Hail
|
|
#6
|
|||
|
|||
|
using it right now
|
|
#7
|
|||
|
|||
|
im using too
|
|
#8
|
|||
|
|||
|
awesome scripts im using both
|
|
#9
|
|||
|
|||
|
hey...
nice scripts... but on the premmy side its some fault with me... he don't go thw whole way down... it goes so it can see the chicken and then take atk on it.. but i just follows the bot too the next place.... is this only happenig with me :S.... Tazzi |
|
#10
|
|||
|
|||
|
Very nice
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|