UnshrinkPet
Datum: 20/06/2012 19:50:22
Staženo: 324x
Popis:
Příkazy:
- ,exec unshrinkpet
Kód:
[Executable]
public void UnshrinkPet()
{
UO.Warmode(true);
UO.Wait(50);
foreach (UOItem item in UO.Backpack.AllItems) {
var jezditka = new[] { 0x2127, 0x2121, 0x0675, 0x20F6 };
if (item.Graphic >= 0x20C8 && item.Graphic <= 0x2137 && Array.IndexOf<int>(jezditka, item.Graphic) < 0) {
item.Use();
return;
}
}
}

