Difference between revisions of "Simple custom courier"
Jump to navigation
Jump to search
m
no edit summary
imported>ESPurist (Added more to get the article closer to completion, not finished yet!) |
imported>ESPurist m |
||
Line 78: | Line 78: | ||
# Create Stage 0 (yes, zero) and check the "Start Up Stage" box. In the "Log Entry" field right-click and select "New", then go to the Papyrus Fragment window and enter (or copy/paste) the following code:<br/><code>Alias_Courier.getReference().moveto(Alias_LocationCenterMarker.getReference())<br/>Alias_Courier.getReference().enable()<br/>registerForUpdate(10)</code> | # Create Stage 0 (yes, zero) and check the "Start Up Stage" box. In the "Log Entry" field right-click and select "New", then go to the Papyrus Fragment window and enter (or copy/paste) the following code:<br/><code>Alias_Courier.getReference().moveto(Alias_LocationCenterMarker.getReference())<br/>Alias_Courier.getReference().enable()<br/>registerForUpdate(10)</code> | ||
# Create Stage 200 and check the "Shut Down Stage" box. Right-click in the "Log Entry" field and select "New", then in the "Papyrus Fragments" box enter (or copy/paste) the following code:<br/><code>Alias_Courier.getReference().moveto(Alias_Marker.getReference())<br/>Alias_Courier.getReference().disable()<br/>unRegisterForUpdate()</code> | # Create Stage 200 and check the "Shut Down Stage" box. Right-click in the "Log Entry" field and select "New", then in the "Papyrus Fragments" box enter (or copy/paste) the following code:<br/><code>Alias_Courier.getReference().moveto(Alias_Marker.getReference())<br/>Alias_Courier.getReference().disable()<br/>unRegisterForUpdate()</code> | ||
<br/> | |||
Next is a very tricky part, we need to add the main script for the courier and the properties that go along with it. |