Spirit Speak
Napsal: 02 říj 2011 10:49
Jednoduchý script na trénink Spirit Speaku.
Kód: Vybrat vše
[Executable]
public void spiritspeak()
{
for (;;) {
UO.DeleteJournal();
UO.UseSkill("Spirit Speak");
do {
UO.Wait(100);
} while ( !UO.InJournal("You fail your attempt at contacting the netherworld.") && !UO.InJournal("You establish a connection to the netherworld.") );
UO.Wait(500);
}
}