<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://www.easyuo.com/openeuo/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=TheGreenGod</id>
		<title>OpenEUO - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://www.easyuo.com/openeuo/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=TheGreenGod"/>
		<link rel="alternate" type="text/html" href="http://www.easyuo.com/openeuo/wiki/index.php/Special:Contributions/TheGreenGod"/>
		<updated>2026-05-01T14:03:21Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.26.3</generator>

	<entry>
		<id>http://www.easyuo.com/openeuo/wiki/index.php?title=Table.getn&amp;diff=4855</id>
		<title>Table.getn</title>
		<link rel="alternate" type="text/html" href="http://www.easyuo.com/openeuo/wiki/index.php?title=Table.getn&amp;diff=4855"/>
				<updated>2012-04-15T15:22:15Z</updated>
		
		<summary type="html">&lt;p&gt;TheGreenGod: Created page with &amp;quot; tableSize = table.getn(table)  Returns the size of a table.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; tableSize = table.getn(table)&lt;br /&gt;
&lt;br /&gt;
Returns the size of a table.&lt;/div&gt;</summary>
		<author><name>TheGreenGod</name></author>	</entry>

	<entry>
		<id>http://www.easyuo.com/openeuo/wiki/index.php?title=Getkey&amp;diff=4844</id>
		<title>Getkey</title>
		<link rel="alternate" type="text/html" href="http://www.easyuo.com/openeuo/wiki/index.php?title=Getkey&amp;diff=4844"/>
				<updated>2012-04-08T20:46:15Z</updated>
		
		<summary type="html">&lt;p&gt;TheGreenGod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; local bpressed = getkey(str)&lt;br /&gt;
Returns a boolean based upon whether a key or key combination as specified by the string str is depressed or not.  The key-specifier string str can contain A-Z, 0-9, F1-F12 and ESC, BACK, TAB, ENTER, PAUSE, CAPSLOCK, SPACE, PGDN, PGUP, END, HOME, LEFT, RIGHT, UP, DOWN, PRNSCR, INSERT, DELETE, NUMLOCK, SCROLLLOCK, CTRL, ALT, or SHIFT.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Warning: since getkey is based on [http://msdn.microsoft.com/en-us/library/ms646293%28VS.85%29.aspx GetAsyncKeyState], this function will register a currently depressed key regardless of what application is in the foreground.&lt;br /&gt;
&lt;br /&gt;
[[Getmouse]]&lt;/div&gt;</summary>
		<author><name>TheGreenGod</name></author>	</entry>

	<entry>
		<id>http://www.easyuo.com/openeuo/wiki/index.php?title=Getkey&amp;diff=4843</id>
		<title>Getkey</title>
		<link rel="alternate" type="text/html" href="http://www.easyuo.com/openeuo/wiki/index.php?title=Getkey&amp;diff=4843"/>
				<updated>2012-04-08T20:25:11Z</updated>
		
		<summary type="html">&lt;p&gt;TheGreenGod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; local bpressed = getkey(str)&lt;br /&gt;
Returns a boolean based upon whether a key or key combination as specified by the string str is depressed or not.  The key-specifier string str can contain A-Z, 0-9, F1-F12 and ESC, BACK, TAB, ENTER, PAUSE, CAPSLOCK, SPACE, PGDN, PGUP, END, HOME, LEFT, RIGHT, UP, DOWN, PRNSCR, INSERT, DELETE, NUMLOCK, SCROLLLOCK, CTRL, ALT, or SHIFT.&lt;br /&gt;
&lt;br /&gt;
To use a key combination use and&lt;br /&gt;
 local bpressed = getkey(&amp;quot;str&amp;quot; and &amp;quot;str&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
Warning: since getkey is based on [http://msdn.microsoft.com/en-us/library/ms646293%28VS.85%29.aspx GetAsyncKeyState], this function will register a currently depressed key regardless of what application is in the foreground.&lt;br /&gt;
&lt;br /&gt;
[[Getmouse]]&lt;/div&gt;</summary>
		<author><name>TheGreenGod</name></author>	</entry>

	<entry>
		<id>http://www.easyuo.com/openeuo/wiki/index.php?title=UO.ScanJournal&amp;diff=4834</id>
		<title>UO.ScanJournal</title>
		<link rel="alternate" type="text/html" href="http://www.easyuo.com/openeuo/wiki/index.php?title=UO.ScanJournal&amp;diff=4834"/>
				<updated>2012-04-05T01:10:35Z</updated>
		
		<summary type="html">&lt;p&gt;TheGreenGod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; local nNewRef,nCnt = UO.ScanJournal(nOldRef)&lt;br /&gt;
&lt;br /&gt;
Used to scan content of journal for use by [[UO.GetJournal]]. nNewRef gives a unique numeric code every time the journal changes. nCnt Gives the number of lines in the journal. nOldRef need to be set to a number.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Simple code to print the values of nNewRef, nCnt, and the last journal entry&lt;br /&gt;
&lt;br /&gt;
  local nNewRef,nCnt= UO.ScanJournal(0)&lt;br /&gt;
  local sLine = UO.GetJournal(0)&lt;br /&gt;
  print(sLine)&lt;br /&gt;
  print(nNewRef)&lt;br /&gt;
  print(nCnt)&lt;br /&gt;
&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
See Kal In Ex's [http://www.easyuo.com/forum/viewtopic.php?p=367537#367537 Journal Scanning Routine].  See Stuby085's [http://www.easyuo.com/forum/viewtopic.php?p=376150#376150 Journal Class].&lt;br /&gt;
&lt;br /&gt;
[[UO.SysMsg]]&lt;br /&gt;
&lt;br /&gt;
[[UO.GetJournal]]&lt;/div&gt;</summary>
		<author><name>TheGreenGod</name></author>	</entry>

	<entry>
		<id>http://www.easyuo.com/openeuo/wiki/index.php?title=UO.GetJournal&amp;diff=4833</id>
		<title>UO.GetJournal</title>
		<link rel="alternate" type="text/html" href="http://www.easyuo.com/openeuo/wiki/index.php?title=UO.GetJournal&amp;diff=4833"/>
				<updated>2012-04-05T01:09:11Z</updated>
		
		<summary type="html">&lt;p&gt;TheGreenGod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; local sLine,nCol = UO.GetJournal(nIndex)&lt;br /&gt;
&lt;br /&gt;
Used to reed the content fetched by [[UO.ScanJournal]]. nIndex is what line of the journal you wish to get, 0 is the most resent 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.&lt;br /&gt;
&lt;br /&gt;
A simple block that will print the journal line and color from 0 to top of the journal.&lt;br /&gt;
&lt;br /&gt;
   local nNewRef,nCnt= UO.ScanJournal(0)&lt;br /&gt;
   for  i=0,nCnt  do&lt;br /&gt;
   local sLine,nCol = UO.GetJournal(i)&lt;br /&gt;
   print(sLine)&lt;br /&gt;
   print(nCol)&lt;br /&gt;
   end&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
See Kal In Ex's [http://www.easyuo.com/forum/viewtopic.php?p=367537#367537 Journal Scanning Routine].&lt;br /&gt;
&lt;br /&gt;
[[UO.SysMsg]]&lt;br /&gt;
&lt;br /&gt;
[[UO.ScanJournal]]&lt;/div&gt;</summary>
		<author><name>TheGreenGod</name></author>	</entry>

	<entry>
		<id>http://www.easyuo.com/openeuo/wiki/index.php?title=UO.ScanJournal&amp;diff=4832</id>
		<title>UO.ScanJournal</title>
		<link rel="alternate" type="text/html" href="http://www.easyuo.com/openeuo/wiki/index.php?title=UO.ScanJournal&amp;diff=4832"/>
				<updated>2012-04-05T00:22:04Z</updated>
		
		<summary type="html">&lt;p&gt;TheGreenGod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; local nNewRef,nCnt = UO.ScanJournal(nOldRef)&lt;br /&gt;
&lt;br /&gt;
Used to scan content of journal for use by UO.GetJournal. nNewRef gives a unique numeric code every time the journal changes. nCnt Gives the number of lines in the journal. nOldRef need to be set to a number.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Simple code to print the values of nNewRef, nCnt, and the last journal entry&lt;br /&gt;
&lt;br /&gt;
 local nNewRef,nCnt= UO.ScanJournal(0)&lt;br /&gt;
  local Jline = UO.GetJournal(0)&lt;br /&gt;
  print(Jline)&lt;br /&gt;
  print(nNewRef)&lt;br /&gt;
  print(nCnt)&lt;br /&gt;
&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
See Kal In Ex's [http://www.easyuo.com/forum/viewtopic.php?p=367537#367537 Journal Scanning Routine].  See Stuby085's [http://www.easyuo.com/forum/viewtopic.php?p=376150#376150 Journal Class].&lt;br /&gt;
&lt;br /&gt;
[[UO.SysMsg]]&lt;br /&gt;
&lt;br /&gt;
[[UO.GetJournal]]&lt;/div&gt;</summary>
		<author><name>TheGreenGod</name></author>	</entry>

	</feed>