Difference between revisions of "Mesend"
From Unofficial QEdit Wiki Guide
(One intermediate revision by the same user not shown) | |||
Line 9: | Line 9: | ||
==Example== | ==Example== | ||
<span style='font-size:12px;font-family:courier'> | <span style='font-size:12px;font-family:courier'> | ||
− | <span style='color:blue'>300: </span><span style='color:green'>message </span> 00000064, 'Hello, how are you?' <span style='color:orange'> | + | <span style='color:blue'>300: </span><span style='color:green'>message </span> 00000064, 'Hello, how are you?' <span style='color:orange'>//When player actions Character/Object with Script ID 300 display message at Character/Object with ID 100 dec</span> |
− | <span style='color:green'> add_msg </span> 'Nice to meet you' <span style='color:orange'> | + | <span style='color:green'> add_msg </span> 'Nice to meet you' <span style='color:orange'>//Add another message to the dialog</span> |
− | <span style='color:green'> mesend</span> <span style='color:orange'> | + | <span style='color:green'> mesend</span> <span style='color:orange'>//Close message dialog</span> |
<span style='color:green'> ret</span> | <span style='color:green'> ret</span> | ||
</span> | </span> | ||
− | == | + | ==Also see== |
[[message]], [[add_msg]], [[ret]] | [[message]], [[add_msg]], [[ret]] |
Latest revision as of 07:20, 28 March 2011
Contents
Syntax
Syntax: mesend
- None
Use
Used to end a message
Example
300: message 00000064, 'Hello, how are you?' //When player actions Character/Object with Script ID 300 display message at Character/Object with ID 100 dec
add_msg 'Nice to meet you' //Add another message to the dialog
mesend //Close message dialog
ret