[Python] example for Journal reading (solved)
Posted: 27.11.2018 23:30
Hi,
The first example, from nah nah's suggestion is just a couple of posts under.
The first example, from nah nah's suggestion is just a couple of posts under.
Альтернативный клиент Ultima Online
https://stealth.od.ua/forum/
Code: Select all
import datetime
now = datetime.datetime.now()Code: Select all
import datetime
def scanJournal():
start = datetime.datetime.now()
Wait(500)
UOSay('Hello')
Wait(100)
if InJournalBetweenTimes('Hello', start, datetime.datetime.now())) != -1:
AddToSystemJournal('Matching words')
else:
AddToSystemJournal('Not a match')