Difference between revisions of "UO.GetJournal"
From OpenEUO
TheGreenGod (Talk | contribs) |
m (spelling) |
||
Line 1: | Line 1: | ||
local sLine,nCol = UO.GetJournal(nIndex) | local sLine,nCol = UO.GetJournal(nIndex) | ||
− | Used to | + | Used to read the content fetched by [[UO.ScanJournal]]. nIndex is what line of the journal you wish to get, 0 is the most recent line with 1 being the next most recent and so on. sLine will hold the line of text. nCol will be the color of the text. |
A simple block that will print the journal line and color from 0 to top of the journal. | A simple block that will print the journal line and color from 0 to top of the journal. |
Revision as of 14:41, 11 April 2012
local sLine,nCol = UO.GetJournal(nIndex)
Used to read the content fetched by UO.ScanJournal. nIndex is what line of the journal you wish to get, 0 is the most recent line with 1 being the next most recent and so on. sLine will hold the line of text. nCol will be the color of the text.
A simple block that will print the journal line and color from 0 to top of the journal.
local nNewRef,nCnt= UO.ScanJournal(0) for i=0,nCnt do local sLine,nCol = UO.GetJournal(i) print(sLine) print(nCol) end
See Kal In Ex's Journal Scanning Routine.