I have always wanted to write chicken for D2 but I lately discovered method to write code that works effectively. So here's what i've got. This chicken is little different from others because it allows you to create character specific settings.
Setup tutorial:1) Open
Settings.lua2) You will find section
["YourCharacterName"]. You can edit this if you wish.
YourCharacterName is what chicken uses when it cant fund proper section for your character. so DO NOT remove or rename this section.
3) copy this section:
["YourCharacterName"] = {
DrinkRed = 75,
DrinkBlue = 50,
DrinkPurpleForMana = 0,
DrinkPurpleForLife = 50,
ChickenToTown = 30, --life only
ChickenExit = 20, --life only
OnHostile = true,
UseTeleport = false,
Belt = {"Blue", "Red", "Purple", "Purple"},
},
and paste it after last },
4) in newly pasted section rename YourCharacterName to your Diablo II character name and edit values for your your needs.
Here's 1 example done for you:
Settings = {
["YourCharacterName"] = {
DrinkRed = 75,
DrinkBlue = 50,
DrinkPurpleForMana = 0,
DrinkPurpleForLife = 50,
ChickenToTown = 30, --life only
ChickenExit = 20, --life only
OnHostile = true,
UseTeleport = false,
Belt = {"Blue", "Red", "Purple", "Purple"},
},
["lol"] = {
DrinkRed = 75,
DrinkBlue = 50,
DrinkPurpleForMana = 0,
DrinkPurpleForLife = 50,
ChickenToTown = 30, --life only
ChickenExit = 20, --life only
OnHostile = true,
UseTeleport = false,
Belt = {"Blue", "Red", "Purple", "Purple"},
},
}
This example above demonstrates how create settings section your character named "lol" .
Download:Binary:
http://autoit.net.ee/downloads/Chicken.zipSource:
http://autoit.net.ee/downloads/Chicken-src.zipNote: Program is Tabbed Dia completable
You can discuss this chicken in it's discussion topic :
http://www.blizzhackers.cc/viewtopic.php?f=182&t=483931