1 Attachment(s)
[F-Include] Chicken Slayer, Featherer, Prayer, and Cooker
Hey guys! I originally joined SRL forever ago, but never contributed anything (Except for a few VERY dodgy fixes to old scripts), and now I'm back with something marginally useful!
This is a Chicken Slayer for the Chicken Pen that has the cooking pot in the nearby house in Lumbridge. This script will train combat, prayer, and cooking skills while collecting feathers.
The cooking portion needs some work to help with efficiency, but it works as it is.
This script has some anti-ban in it, but not a ton. Breaking has not been implemented yet.
Road map
Quote:
- Drop FInclude
- Improve Cooking
- Improve Walking Procedure
- More "humanness"
Long term goals
- Add Woodcutting training
- Add Firemaking training
- Add Fighting other mobs (cows/goblins)
- Add Food Consumption
- Add Mining?
- Add Fishing?
Changelog
Quote:
V1.1
- Added breaking
- Fixed typo "Defense" to "Defence"
- Minor improvement to the cooking phase. Detects when it gets lost and tries to fix it.
V1.0
F-Include
You will need Fitta's F-Include.
To install, download the file at this link, then extract the zip file to "finclude" inside of the Simba Includes directory.
SEND EMAIL ISSUES / Pro_InitSocket
If you use the revision of unofficial F-include i have linked, you will not have this issue, otherwise read below.
There is currently a PR open to fix this https://github.com/FittaVillavu/finclude/pull/1/files
Go vote for that first, then read below.
If you are having an Error with the SendEmail procedure / Pro_InitSocket, you can get around it by fixing the procedure body for the SendEmail procedure whose definition begins on Line 4 of the Socks file.
Simba Code:
procedure SendEmail(URL, Email, Password, Name, Recipient, CC, BCC, Subject, Message, Attachment, AttachmentMime: String);
var
Sock: SSLSocket;
begin
Sock.Init();
Sock.SetSecurityPolicy(false, false, true);
Sock.SetVerbose(true);
Sock.SMTP(PChar(URL), PChar(Email), PChar(Password), PChar(Name), PChar(Recipient), PChar(CC), PChar(BCC), PChar(Subject), PChar(Message), PChar('text/plain; charset=UTF-8'), PChar(Attachment), PChar(AttachmentMime));
Sock.Free();
end;
Sample Report
Code:
[15:40:06:655] [Chicken Slayer] [Status] +---------------------------------v1.1-+
[15:40:06:656] [Chicken Slayer] [Status] | |
[15:40:06:658] [Chicken Slayer] [Status] | Chickens Killed: 804 |
[15:40:06:660] [Chicken Slayer] [Status] | Feathers Collected: 3870 |
[15:40:06:662] [Chicken Slayer] [Status] | Bones Buried: 370 |
[15:40:06:665] [Chicken Slayer] [Status] | |
[15:40:06:668] [Chicken Slayer] [Status] | Attack Levels Gained: 11 |
[15:40:06:671] [Chicken Slayer] [Status] | Strength Levels Gained: 0 |
[15:40:06:674] [Chicken Slayer] [Status] | Defence Levels Gained: 0 |
[15:40:06:678] [Chicken Slayer] [Status] | Prayer Levels Gained: 8 |
[15:40:06:681] [Chicken Slayer] [Status] | Cooking Levels Gained: 13 |
[15:40:06:685] [Chicken Slayer] [Status] | |
[15:40:06:689] [Chicken Slayer] [Status] | Time Elapsed: 0d 9h 38m 50s |
[15:40:06:693] [Chicken Slayer] [Status] | Breaking In: 0d 0h 29m 32s |
[15:40:06:697] [Chicken Slayer] [Status] | |
[15:40:06:701] [Chicken Slayer] [Status] +---------------------------------v1.1-+