Kartografie
Datum: 22/11/2014 23:54:54
Staženo: 412x
Popis:
nevim jestli funguje
Příkazy:
- ,exec cartography
Kód:
[Executable]
public static void Cartography()
{
while (!World.Player.Dead)
{
UO.WaitTargetSelf();
UO.UseType(0x0FBE);
do
{
UO.Wait(800);
}
while (UO.InJournal("Vyjmul jsi mapu z atlasu"));
UO.Wait(1300);
do
{
UO.DeleteJournal();
UO.WaitMenu("What sort of map","Detail Map");
UO.UseType(0x14EB);
UO.Wait(800);
do
{
UO.Wait(1000);
}
while (UO.InJournal("Thy trembling hand") || UO.InJournal("You put the map"));
UO.Wait(1300);
}
while (UO.InJournal("You put the map"));
UO.Wait(1000);
MapToAtlas();
}
}
public static void MapToAtlas()
{
while (UO.Count(0x14EB) > 0)
{
UO.DeleteJournal();
UO.WaitTargetType(0x14EB) ;
UO.UseType(0x0FBE) ;
do
{
UO.Wait(800);
}
while (UO.InJournal("Zrecykloval jsi mapu.") || UO.InJournal("Uschoval jsi mapu do atlasu"));
UO.Wait(800);
}
}

