How get color of text in journal?
Moderators: Murderator+, Murderator
How get color of text in journal?
Hello, please tell me how i can get color of text in journal.
Re: How get color of text in journal?
color = uo.GetColor(uo.JournalSerial(uo.InJournal("")-1)) ;последняя фраза
color = uo.GetColor(uo.JournalSerial(uo.InJournal("какаято фраза")))
color = uo.GetColor(uo.JournalSerial(uo.InJournal("какаято фраза")))
Re: How get color of text in journal?
It returns color of object which generated the text instead of color of text 

Re: How get color of text in journal?
Code: Select all
sub zzzzzzzz()
var i
uo.textclear()
for i=10 to 0 step -1
uo.textprint(uo.JournalSerial(i)+"| "+uo.JournalColor(i)+"| "+uo.Journal(i))
next
uo.textopen()
end sub

Re: How get color of text in journal?
Uo.JournalColor() is exactly i looked for. Thank You 
