<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.easyuo.com/index.php?action=history&amp;feed=atom&amp;title=Beginner%27s_Tutorial</id>
		<title>Beginner's Tutorial - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.easyuo.com/index.php?action=history&amp;feed=atom&amp;title=Beginner%27s_Tutorial"/>
		<link rel="alternate" type="text/html" href="http://wiki.easyuo.com/index.php?title=Beginner%27s_Tutorial&amp;action=history"/>
		<updated>2026-05-02T09:58:13Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.26.3</generator>

	<entry>
		<id>http://wiki.easyuo.com/index.php?title=Beginner%27s_Tutorial&amp;diff=5301&amp;oldid=prev</id>
		<title>Seg at 20:11, 13 October 2007</title>
		<link rel="alternate" type="text/html" href="http://wiki.easyuo.com/index.php?title=Beginner%27s_Tutorial&amp;diff=5301&amp;oldid=prev"/>
				<updated>2007-10-13T20:11:34Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{command header|Getting Started}}&lt;br /&gt;
&lt;br /&gt;
== Beginner's Tutorial ==&lt;br /&gt;
&lt;br /&gt;
==== What do I need? ====&lt;br /&gt;
&lt;br /&gt;
In this tutorial we assume you are running the latest Ultima Online client, and you have installed the latest EasyUO update.&lt;br /&gt;
&lt;br /&gt;
To get started, follow these simple guidelines:&lt;br /&gt;
# Make sure you have the correct EasyUO version for the current client version.&lt;br /&gt;
# Start your Ultima Online client (Remember it only works with the 2D client).&lt;br /&gt;
# Start the EasyUO program.&lt;br /&gt;
# Log in with a character.&lt;br /&gt;
&lt;br /&gt;
==== Your first EasyUO script ====&lt;br /&gt;
&lt;br /&gt;
Copy and Paste, or type in the following program:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
msg #smc Hello there!$&lt;br /&gt;
halt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now press the Run icon or press F9 inside the EasyUO script. Your character will now whisper: &amp;quot;Hello there!&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==== Something useful ====&lt;br /&gt;
&lt;br /&gt;
Now we are going to try to do something more useful. We will move the character using the [[move]] command:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
; Calculate a new x co-ordinate based on your current position&lt;br /&gt;
set %newX #charPosX + 2&lt;br /&gt;
; Calculate a new y co-ordinate based on your current position&lt;br /&gt;
set %newY #charPosY + 2&lt;br /&gt;
; Move the character to the new position&lt;br /&gt;
move %newX %newY 0 10s&lt;br /&gt;
halt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Now we are going to open a pack using some of the event commands. First, we need to identify the ID of your backpack (inventory): &lt;br /&gt;
# Make sure you have the variable view open. Press Ctrl-R or choose View|Variables|Show.&lt;br /&gt;
# Open the backpack by double clicking it in your paperdoll.&lt;br /&gt;
# Find the #LOBJECTID variable in the list.&lt;br /&gt;
# Write down the value that's next to #LOBJECTID. It consists of 6-8 letters. That is your backpack's ID.&lt;br /&gt;
&lt;br /&gt;
{{Note|Most clients have  the [[BackpackId]] system variable available, which automatically shows the item Id of the currently logged in character's backpack.}}&lt;br /&gt;
&lt;br /&gt;
Then copy and paste this script into EasyUO, be sure to edit it where noted:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
; The id of your pack. Change it to the value you wrote down&lt;br /&gt;
set %pack XYZ&lt;br /&gt;
; Assign your pack's ID to the last object id system variable&lt;br /&gt;
set #lObjectID %pack&lt;br /&gt;
; Run UO's client macro for &amp;quot;Use Last Object&amp;quot;&lt;br /&gt;
event Macro 17&lt;br /&gt;
halt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== What's next? ====&lt;br /&gt;
&lt;br /&gt;
With what you know now you should be able to understand most of the manual and also the various example scripts available in the example archives. You can also find other examples on the [http://www.easyuo.com EasyUO website].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
{|&lt;br /&gt;
| Width=200px | [[Main_Page]] || Width=200px | [[Documentation]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Seg</name></author>	</entry>

	</feed>