Difference between revisions of "Manual:Migrating"

From Mudlet
Jump to navigation Jump to search
Line 2: Line 2:
  
 
==From Nexus==
 
==From Nexus==
===Trigger patterns===
+
'''Trigger patterns'''
 
 
 
Lets start with triggers. For translating Nexus patterns into Mudlet, use the following table below. Make sure to set the pattern type in Mudlet to be perl regex, because the default substring works differently.
 
Lets start with triggers. For translating Nexus patterns into Mudlet, use the following table below. Make sure to set the pattern type in Mudlet to be perl regex, because the default substring works differently.
 
<table border="1">
 
<table border="1">
Line 44: Line 43:
 
<td>Match the end of a line (not the actual newline character)</td>
 
<td>Match the end of a line (not the actual newline character)</td>
 
</table>     
 
</table>     
'''Note:'''
 
 
<table border="1">
 
<table border="1">
 +
<caption>'''Note:'''</caption>
 
<td>If you just have a pattern with a {<} and {>} and nothing else, copy the pattern over without the {<}{>} and select the exact match pattern type. For example {<}You sit down.{>} in Nexus would become '''You sit down.''' in Mudlet with the pattern type of exact match. This is easier to read and matches way faster!</td>
 
<td>If you just have a pattern with a {<} and {>} and nothing else, copy the pattern over without the {<}{>} and select the exact match pattern type. For example {<}You sit down.{>} in Nexus would become '''You sit down.''' in Mudlet with the pattern type of exact match. This is easier to read and matches way faster!</td>
 
</table>
 
</table>
  
===Basic scripting===
+
'''Basic scripting'''
  
 
The Nexus way of doing a function is like this: #function stuff it does. In Mudlet, it’s function(stuff it does). Note that if you’d like to give text to a function, you put it inside double or single quotes.
 
The Nexus way of doing a function is like this: #function stuff it does. In Mudlet, it’s function(stuff it does). Note that if you’d like to give text to a function, you put it inside double or single quotes.
  
====Calling functions====
+
'''Calling functions'''
 
<table border="1">
 
<table border="1">
 
<caption>Calling functions</caption>
 
<caption>Calling functions</caption>
Line 73: Line 72:
 
</tr>
 
</tr>
 
</table>
 
</table>
'''Note:'''
 
 
<table border="1">
 
<table border="1">
 +
<caption>'''Note:'''</caption>
 
<td>
 
<td>
 
If you’d like to use a variable inside text, you’d put it outside the quotes and glue it together with two dots.
 
If you’d like to use a variable inside text, you’d put it outside the quotes and glue it together with two dots.
Line 80: Line 79:
 
</table>
 
</table>
  
====Setting variables====
+
'''Setting variables'''
 
+
<table border="1">
<code>
+
<caption>Setting variables</caption>
#set number 1234
+
<th>Mudlet</th>
#echo My number is: $number
+
<th>Nexus</th>
#echo the $number is in the middle of my text
+
<tr>
</code>
+
<td>
 
 
 
<lua>
 
<lua>
 
number = 1234
 
number = 1234
Line 94: Line 92:
 
echo(string.format("And here's another - %s - way to format things\n", number))
 
echo(string.format("And here's another - %s - way to format things\n", number))
 
</lua>
 
</lua>
 +
<td>
 +
<code>
 +
#set number 1234
 +
#echo My number is: $number
 +
#echo the $number is in the middle of my text
 +
</code>
 +
</td>
 +
</tr>
 +
<table>
  
====Wildcards====
+
'''Wildcards'''
 
 
 
To use the wildcard variable in Nexus, you’d use $1 for the first match, $2 for the second and so on. In Mudlet, the matches[] table contains the matches - and it starts placing the matches from 2. So the Nexus $1 would be matches[2], $2 would be matches[3].
 
To use the wildcard variable in Nexus, you’d use $1 for the first match, $2 for the second and so on. In Mudlet, the matches[] table contains the matches - and it starts placing the matches from 2. So the Nexus $1 would be matches[2], $2 would be matches[3].
  
Nexus:
+
<table border="1">
 +
<th>Mudlet</th>
 +
<th>Nexus</th>
 +
<tr>
 +
<td>
 +
<lua>
 +
(\w+) kicks you\.
 +
badguy = matches[2]
 +
echo(badguy .. " kicked me!")
 +
</lua>
 +
</td>
 +
<td>
 
<code>
 
<code>
 
  {w} kicks you.
 
  {w} kicks you.
Line 105: Line 122:
 
  #echo $badguy kicked me!
 
  #echo $badguy kicked me!
 
</code>
 
</code>
 
+
</td>
Mudlet:
+
</tr>
 +
<tr>
 +
<td>
 
<lua>
 
<lua>
(\w+) kicks you\.
+
alias pattern: ^t (.*)$
badguy = matches[2]
+
alias script: target = matches[2]
echo(badguy .. " kicked me!")
 
 
</lua>
 
</lua>
 
+
</td>
Another example would be the targetting alias:
+
<td>
 
 
Nexus:
 
 
<code>
 
<code>
 
  alias name: t
 
  alias name: t
 
  alias script: #set target $1
 
  alias script: #set target $1
 
</code>
 
</code>
 
+
</td>
Mudlet:
+
</tr>
<code>
+
<table>
alias pattern: ^t (.*)$
+
<table border="1">
alias script: target = matches[2]
+
<caption>'''Note:'''</caption>
</code>
+
<td>
 
 
 
The reason the first match goes into matches[2] and not matches[1] is because matches[1] contains the part of the line that matched your trigger / alias.
 
The reason the first match goes into matches[2] and not matches[1] is because matches[1] contains the part of the line that matched your trigger / alias.
 +
</td>
 +
<table>
  
====#wait in Mudlet====
+
'''#wait in Mudlet'''
  
 
In Nexus, a #wait will freeze the script while it’s executing - such that commands after it are delayed. In Mudlet, we use tempTimer which that works a bit differently - it doesn’t freeze the script, but instead makes it so commands a tempTimer is asked to do will get done in the future.
 
In Nexus, a #wait will freeze the script while it’s executing - such that commands after it are delayed. In Mudlet, we use tempTimer which that works a bit differently - it doesn’t freeze the script, but instead makes it so commands a tempTimer is asked to do will get done in the future.
Line 151: Line 168:
 
</lua>
 
</lua>
  
====ifs in Mudlet====
+
'''ifs in Mudlet'''
  
 
Next are the #if statements. Here’s a table comparing the syntaxes of Nexus and Mudlet:
 
Next are the #if statements. Here’s a table comparing the syntaxes of Nexus and Mudlet:
Line 263: Line 280:
 
   }
 
   }
  
====Mudlet equivalents of Nexus functions====
+
'''Mudlet equivalents of Nexus functions'''
  
 
Now that we got the ifs covered, lets go over the Mudlet equivalents of other Nexus functions. Note that this is a direct Nexus→Mudlet comparison; certain functions in Mudlet have much more capability.
 
Now that we got the ifs covered, lets go over the Mudlet equivalents of other Nexus functions. Note that this is a direct Nexus→Mudlet comparison; certain functions in Mudlet have much more capability.
Line 320: Line 337:
 
** #wait <milliseconds>
 
** #wait <milliseconds>
  
====How to call aliases in Mudlet====
+
'''How to call aliases in Mudlet'''
  
 
The typical workflow in Nexus is that you’d define the aliases for yourself to use, and also use aliases for system-related things (things like checking if you’d need to eat a herb, etc).
 
The typical workflow in Nexus is that you’d define the aliases for yourself to use, and also use aliases for system-related things (things like checking if you’d need to eat a herb, etc).
Line 369: Line 386:
 
   end
 
   end
  
===Notes to be aware of===
+
===Notes to be aware of==
  
 
To finish off, a couple of points that should be remembered:
 
To finish off, a couple of points that should be remembered:

Revision as of 01:07, 7 July 2011

Migrating to Mudlet

From Nexus

Trigger patterns Lets start with triggers. For translating Nexus patterns into Mudlet, use the following table below. Make sure to set the pattern type in Mudlet to be perl regex, because the default substring works differently.

Mudlet Nexus What it does
(\w+) {w} Match one or more non-whitespace characters (a 'word')
(\d+) {d} Match one or more numeric digits (a number)
([abc]) {[abc]} Match one or more of either 'a', 'b' or 'c'. (a character class)
([^abc]) {[^abc]} Match one or more of anything EXCEPT 'a', 'b', or 'c'
(.*) {*} Match zero or more characters (anything)
^ {<} Match the beginning of a line (not the actual newline character)
$ {>} Match the end of a line (not the actual newline character)
Note:
If you just have a pattern with a {<} and {>} and nothing else, copy the pattern over without the {<}{>} and select the exact match pattern type. For example {<}You sit down.{>} in Nexus would become You sit down. in Mudlet with the pattern type of exact match. This is easier to read and matches way faster!

Basic scripting

The Nexus way of doing a function is like this: #function stuff it does. In Mudlet, it’s function(stuff it does). Note that if you’d like to give text to a function, you put it inside double or single quotes.

Calling functions

Calling functions
Mudlet Nexus

<lua> send("hi") echo("Hello to me!") </lua>

#send hi
#echo Hello to me!

Note:

If you’d like to use a variable inside text, you’d put it outside the quotes and glue it together with two dots.

Setting variables

Setting variables
Mudlet Nexus

<lua> number = 1234 echo("My number is: " .. number.. "\n") echo("the " .. number .. " is in the middle of my text\n") echo(string.format("And here's another - %s - way to format things\n", number)) </lua>

#set number 1234
#echo My number is: $number
#echo the $number is in the middle of my text

Wildcards To use the wildcard variable in Nexus, you’d use $1 for the first match, $2 for the second and so on. In Mudlet, the matches[] table contains the matches - and it starts placing the matches from 2. So the Nexus $1 would be matches[2], $2 would be matches[3].
Mudlet Nexus

<lua> (\w+) kicks you\. badguy = matches[2] echo(badguy .. " kicked me!") </lua>

{w} kicks you.
#set badguy $1
#echo $badguy kicked me!

<lua> alias pattern: ^t (.*)$ alias script: target = matches[2] </lua>

alias name: t
alias script: #set target $1

Note:

The reason the first match goes into matches[2] and not matches[1] is because matches[1] contains the part of the line that matched your trigger / alias.

#wait in Mudlet In Nexus, a #wait will freeze the script while it’s executing - such that commands after it are delayed. In Mudlet, we use tempTimer which that works a bit differently - it doesn’t freeze the script, but instead makes it so commands a tempTimer is asked to do will get done in the future. So the difference is that a tempTimer doesn’t freeze the commands following it at all, everything gets done at once as usual. Just things a tempTimer was asked to do get done in the future. Nexus script: #send hello #wait 1000 #send hi #wait 500 #send bye Mudlet: <lua> send("hello") tempTimer(1, send("hi")) tempTimer(1.5, send("bye")) </lua> ifs in Mudlet Next are the #if statements. Here’s a table comparing the syntaxes of Nexus and Mudlet: Mudlet Nexus if <condition> then <text> end
  1. if <condition> <text>
  1. if <condition> { <script> }
if <condition> then <script> else <script> end
  1. if <condition> { <script> } else { <script> }
  1. if <condition> { <script> } { <script> }
if <condition> then <script> elseif <condition> then <script> end
  1. if <condition> { <script> } elsif <condition> { <script> }
if <condition> then <script> elseif <condition> then <script> else <script> end
  1. if <condition> { <script> } elsif <condition> { <script> } else { <script> }
Here is the sample side-by-side comparison of how you’d use it: Mudlet Nexus -- If foo is true, echo that fact. if foo then echo ("Foo is true!") end -- If foo is true, echo that fact. -- A slight modification of the above that illustrates an 'else' clause. -- Note that the 'then' is always necessary to avoid confusion. if foo then echo ("Foo is true!") else echo ("Foo is false!") end -- Illustration of putting more than one statement in a block (also -- spans lines here). Note the if doesn't end until the last 'end' is -- encountered. -- We also add a \n at the end of multiple echos so each one is on it's own line. if foo then echo ("Foo is true!\n") echo ("Isn't it grand?\n") echo ("These commands are all on separate lines too!\n") end -- This shows how ifs continue (on 'logical' lines) even though the -- blocks in its constituent clauses may have multiple lines. The -- following lines are all _one_ single if statement. if foo > 50 then echo ("Foo is big!\nYes it is.") elseif foo > 10 then echo ("Foo is pretty big...\n") echo ("I've seen bigger.") else echo ("Foo is actually kind of small.") end -- Ifs can be nested too. if foo then if bar then echo ("Both foo and bar are true.") else echo ("Foo's true, but bar isn't.") end end // If $foo is true, echo that fact. #if $foo #echo Foo is true! // If $foo is true, echo that fact. // A slight modification of the above that illustrates an 'else' clause. // The second form shows that the word 'else' is actually optional too. // (The two lines are functionally the same.) #if $foo { #echo Foo is true! } else { #echo Foo is false! } #if $foo { #echo Foo is true! } { #echo Foo is false! } // Illustration of putting more than one statement in a block (also // spans lines here). Note the if doesn't end until the last '}' is // encountered. #if $foo { #echo Foo is true! #echo Isn't it grand? #echo These commands are all on separate lines too! } // This shows how ifs continue (on 'logical' lines) even though the // blocks in its constituent clauses may have multiple lines. The // following lines are all _one_ single if statement. #if $foo > 50 { #echo Foo is big! #echo Yes it is. } elsif $foo > 10 { #echo Foo is pretty big... #echo I've seen bigger. } else { #echo Foo is actually kind of small. } // Ifs can be nested too. #if $foo { #if $bar { #echo Both foo and bar are true. } else { #echo Foo's true, but bar isn't. } } Mudlet equivalents of Nexus functions Now that we got the ifs covered, lets go over the Mudlet equivalents of other Nexus functions. Note that this is a direct Nexus→Mudlet comparison; certain functions in Mudlet have much more capability. Mudlet Nexus
  • Math with Variables
    • <variable> = <variablename> <+ - / *> <number or variable>
    • #add <variablename> <expression>
  • Echo
    • echo "text\n" or echo("text\n")
    • #echo <text>
    • echo "text" or echo("text")
    • #echo_ <text>
  • Enable Group/Alias/Trigger/Keybinding/Timer
    • enableAlias("<group name>"), enableTrigger(), enableKey() or enableTimer()
    • #groupon <group name>
  • Disable Group/Alias/Trigger/Keybinding/Timer
    • disableAlias("<group name>"), disableTrigger(), disableKey() or disableTimer()
    • #groupoff <group name>
  • Highlight
    • selectString (line, 1) bg("<color>") resetFormat()
    • #highlight <color>
  • Gag
    • deleteLine()
    • #gag
  • Open Url/Links
    • openUrl("<url>")*
    • #openurl <url>
  • Send text to Mud
    • send("<stuff>")
    • #send <text>
  • Send Multiple text to Mud at once
    • sendAll("hi", "hello", "bye")
    • #send_ hi #send_ hello #send bye
  • Variable Setting
    • <variable name> = "<text value>"
    • #set <variable name> <text value>
    • <variable name> = <expression>
    • #set <variable name> = <expression>
  • Clear Variables
    • <variable name> = nil
    • #unset <variable name>
  • Wait/Timers
    • <lua>tempTimer(
    • #wait <milliseconds>
How to call aliases in Mudlet The typical workflow in Nexus is that you’d define the aliases for yourself to use, and also use aliases for system-related things (things like checking if you’d need to eat a herb, etc). While the first use is good, the second isn’t - because the user can also run this alias at an inopportune time, because if you want to call an alias it has to match all alises again, and so on. Now, while in Mudlet you can call another alias with the expandAlias() function, this is strongly discouraged. What you do instead if create a function (for example, send() and echo() are functions) that you can then call from your alias or trigger. This has many advantages - it’s faster, you can easily give your function values, and your function can return you values, too. To make a function, you go to the Scripts section, create a new script, and write in your function: function <name> () <stuff it does> end For example, if we want to make a function that does two things for us at once, we’d do this: function eat_bloodroot() send ("outr bloodroot") send ("eat bloodroot") end Then just do this in our alias or trigger to outr and eat bloodroot: eat_bloodroot() As mentioned, you can also give things to functions - in this case lets expand the function to eat any herb for us we tell it: function eat (what) send ("outr " .. what) send ("eat " .. what) end [...] eat ("bloodroot") eat ("kelp") eat ("ginseng") Lastly, functions can also give you data back. One useful example for this is to break down tasks into functions, which will help your code readability: function can_i_stand() if not paralyzed and not prone and not stunned then return true else return false end [...] if can_i_stand() and have_balance and have_equilibrium then send ("stand") end

=Notes to be aware of

To finish off, a couple of points that should be remembered:

  • Mudlet does profile snapshots (nexus archives) automatically - to load a different one, select it from the list when connecting
  • Mudlet can import and export xml
  • Mudlet and Nexus xml formats aren’t compatible
  • Mudlet can do nexus graphics, here is a package for - [Achaea], [Lusternia]
  • Mudlet has a ton more features such are more speed, less bugs, copy from the normal window, replay logging, color html logging, more powerful scripting, and the list goes on.

From MUSHclient

  1. Mudlet doesn't use %#'s - uses matches[] instead. "%1" or %1 would be matches[2], "%2" or %2 would be matches[3] and so on
  2. No variables in trigger patterns - but you can check against your variables in scripts, or lua function pattern types

From CMUD

Changing over to Mudlet requires learning some simple syntax changes and some general concept changes:

In a mudlet trigger for example: Name is just the name you want to use to label the trigger. It doesn't effect the actual firing of the trigger. The trigger fires based on the "pattern" and you can have multiple patterns for a single piece of code. You can also have a multi-line trigger, where the entire trigger must see all the patterns to fire. Example #1 - Using a variable and a temp trigger Cmud: <lua> Pattern: ^A (.*) shard appears and clatters to the ground\.$

Code:

  1. IF (@autogold) {
  2. temp {You have recovered balance on all limbs.}

{get shard} } </lua>

Mudlet Example: <lua> Pattern: ^A (.*) shard appears and clatters to the ground\.$

Code: if autogold then shardtrigger = tempTrigger("You have recovered balance on all limbs.)", send("get shard") killTrigger(shardtrigger)) end </lua>

Example #2 - Doing Math: Cmud: <lua> Pattern: ^You put (\d+) gold sovereigns in (.*)\.$

Code:

  1. ADD goldcounter %1

</lua> Mudlet: <lua> Pattern: ^You put (\d+) gold sovereigns in (.*)\.$

Code: goldcounter = goldcounter + tonumber(matches[2]) </lua>

Example #3 - Replacing Text Cmud <lua> Pattern: ^You raze (\w+) magical shield with (.*)\.$

Code:

  1. sub {%ansi(yellow,cyan,bold)(*X*)%ansi(white) RAZED %ansi(red)%1's %ansi(white)Shield %ansi(yellow,cyan,bold)(*X*)}

</lua> Mudlet <lua> Pattern: ^You raze (\w+) magical shield with (.*)\.$

Code: deleteLine() cecho("<yellow:cyan>You RAZED " .. matches[2] .. " shield") </lua>

Example #4 - Enable/Disable Classes

Cmud: <lua>

  1. T+ ClassFolderName

</lua>

Mudlet: <lua> enableAlias("ClassFolderName")

Note: Alias can be an alias, trigger, time, key, etc. You can disable entire classes or just single triggers. </lua>

Example 5 - Multi-action Commands Let's say we create an alias called silly

Cmud: <lua> Pattern: sillyAction

Code: look;ct Hello City;pt Hello Party;laugh

Now in cmud if we called this alias from a trigger or another alias, we would just call sillyAction

</lua> Mudlet: <lua> Pattern: sillyAction

Code: sendAll("look","ct Hello City","pt Hello Party", "laugh") </lua>

Now, in mudlet, if we want to call on that alias, we need to tell mudlet that we want to execute the alias sillyAction rather than sending "sillyAction" directly to the mud. To do that we would do:

<lua> expandAlias("sillyAction") </lua>

Example 6 - Using if statements with and, or and nil.

Cmud Code: <lua>

  1. IF (@myclass="knight" & !(@pets))

{ say cool } </lua> Mudlet Code: <lua> if myclass == "knight" and not pets then

 send("say cool")

end </lua>

Example 7 - Hitting your target OR your first argument. This is for when you want to either hit the person you have targeted, or the name you type.

For example, to kick Das you'd type: kk Das

Or if Das is your target, just typing kk

Cmud: <lua> Pattern: ^kk ?(\w+)?$

  1. VAR target Das

if (@target) { kick @target } if (%1) { kick %1 } </lua>

Mudlet: <lua> Pattern: ^kk ?(\w+)?$

Code: target = "Das" send("kick "..(matches[2] or target)) </lua> Example #7 - Two Pattern Examples <lua>^rz(?:(.*)|)$ This would let you do rzDas to raze Das for example. </lua> Versus: <lua> ^rz ?(\w+)?$ This would require you to do rz Das with a space between rz and Das. </lua>

From zMUD