Difference between revisions of "Message Spam"
Jump to navigation
Jump to search
Blank message solution works and is very simple.
imported>Mmmpld (link to alternate solution) |
imported>Wrye (Blank message solution works and is very simple.) |
||
Line 1: | Line 1: | ||
This section is messy and needs to be cleaned up. Below, Guido gives a quite complicated answer, but from my experience and in this topic [[Preventing_messages|Preventing messages]] there's a much simpler solution: | |||
In short, just a repeat a message twice in a chunk of code. Doing this will (for some bizarre reason) block any other messages from the same (frame?) of code execution. You can use empty messages to blank messages entirely. E.g. | |||
<pre>;--No messages. | |||
message " " | |||
message " " | |||
;--OR... Covering message... | |||
message "[You've been pickpocketed!]" | |||
message "[You've been pickpocketed!]"</pre> | |||
---- | ---- |