Private Adept
Joined: 10 Jan 2002 Posts: 264 Location: USA
|
Posted: Thu Apr 15, 2010 6:02 am
[3.16b] Problems with #C+ and <> [SOLVED in game] |
in zmud i capture my muds help to a seperate help window...
Code: |
----------------------------------------------------------------------------
Help Category : Information.
Related Helps : Mobdeaths Where.
Last Updated : 2010-03-10 20:48:41.
----------------------------------------------------------------------------
Syntax: areas : Lists all* areas on Aardwolf.
areas <min> <max> : Lists areas within given level ranges.
areas <string> : Lists areas that match the search string.
|
in cmud this comes out as...
Code: |
----------------------------------------------------------------------------
Help Category : Information.
Related Helps : Mobdeaths Where.
Last Updated : 2010-03-10 20:48:41.
----------------------------------------------------------------------------
Syntax: areas : Lists all* areas on Aardwolf.
areas : Lists areas within given level ranges.
areas : Lists areas that match the search string.
|
here is the code used to begin the capture... it also ends the capture... {help} {/help}
Code: |
Pattern: ^~{(?)help~}$
#IF (%1 = "") {
#GAG
#GAGON
#C+ Help
} {
#C-
#GAGOFF
}
|
cmud just eats anything inside <>
EDIT SOLVED:
Charneus Tech: Ozzy: Click on the help window, then click Preferences. Go to MXP, and make sure 'Show Unknown Tags' is ticked. Then try the help file.
yay! |
|