Author |
Message |
Topic: Creating a map from log file? |
MattLofton
Replies: 3
Views: 9052
|
Forum: CMUD General Discussion Posted: Thu Jan 15, 2015 10:46 am Subject: Creating a map from log file? |
I think that may have been zmud, but I do know what you're talking about. I just never bothered to use it. |
Topic: How to open an Image on Cmud |
MattLofton
Replies: 3
Views: 9438
|
Forum: CMUD General Discussion Posted: Sun Jan 04, 2015 10:23 am Subject: How to open an Image on Cmud |
not sure CMud can do PNG images. Also, may wish to rethink your choice of name for aliases. CMud does NOT prevent you from doing stuff that ends up not working, but there are some things that just w ... |
Topic: Auto Mapper chooses stupid routes, how to fix? lets find out. |
MattLofton
Replies: 2
Views: 7915
|
Forum: CMUD General Discussion Posted: Wed Dec 31, 2014 1:30 pm Subject: Auto Mapper chooses stupid routes, how to fix? lets find out. |
You REALLY don't want to do any scripting that involves external DB manipulation. There are NO safeguards to ensure all the little column relationships stay intact, and any changes you make via an ex ... |
Topic: #IF Statement returning incorrect result |
MattLofton
Replies: 4
Views: 11282
|
Forum: CMUD General Discussion Posted: Sun Dec 28, 2014 1:20 pm Subject: #IF Statement returning incorrect result |
You're missing something, but it's not really stupid or trivial. Your problem is, barring something with data corruption, script context. Essentially, your testing was being done within the context ... |
Topic: Need a better way to gag, any suggestions? |
MattLofton
Replies: 6
Views: 12630
|
Forum: CMUD General Discussion Posted: Mon Dec 15, 2014 2:48 pm Subject: Need a better way to gag, any suggestions? |
Obviously your list of gagstuff is too large to really do much with, but what about stuff you don't want gagged? If it's not too large (obviously it's going to be way less than what you're gagging), ... |
Topic: How to stop unwanted autologin trigger |
MattLofton
Replies: 5
Views: 15527
|
Forum: zMUD General Discussion Posted: Sat Nov 22, 2014 6:53 am Subject: How to stop unwanted autologin trigger |
I forget the exact procedure now, but you need to get to the Character/Session Properties and remove the info from the login tab. |
Topic: is not in a variable trigger |
MattLofton
Replies: 2
Views: 10405
|
Forum: zMUD General Discussion Posted: Sat Nov 22, 2014 6:52 am Subject: is not in a variable trigger |
You may need to convert to regex for this, but really why go to all that trouble (assuming you don't already know regex) when a simple #IF command in the trigger code will work? |
Topic: Setting deletion - restore |
MattLofton
Replies: 2
Views: 8056
|
Forum: CMUD General Discussion Posted: Sat Nov 08, 2014 6:19 am Subject: Setting deletion - restore |
The really, really short answer is "yep, you're out of luck".
The longer answer is that your multiple sessions were all pointing to the same file, so updates in one session will reflect in the othe ... |
Topic: Help with showing buffs in status window. |
MattLofton
Replies: 6
Views: 12626
|
Forum: CMUD General Discussion Posted: Thu Oct 23, 2014 5:35 am Subject: Help with showing buffs in status window. |
You can alternatively just maintain variables for the colors, keeping the color tag and whatever plain text you want to see in the status window itself.
#stwin stwBuffs {<color @strength>Stre ... |
Topic: #launch issues |
MattLofton
Replies: 2
Views: 7781
|
Forum: CMUD General Discussion Posted: Tue Oct 14, 2014 5:01 am Subject: #launch issues |
%concat("stuff you want to see before the double quote",~","stuff you want to see after the first double quote",~","and so on") |
Topic: speedmenus question (possibly lua-related) |
MattLofton
Replies: 1
Views: 6817
|
Forum: CMUD General Discussion Posted: Thu Sep 25, 2014 3:24 am Subject: speedmenus question (possibly lua-related) |
In the main menubar, all the menus have a space where an icon or a checkmark can appear (ie, the Options menu). Is it possible to do similar with user-created speedmenus? the checkmark would look a ... |
Topic: Permanently delete "Show Status Bar" and "Attached Command Line" in windows? |
MattLofton
Replies: 3
Views: 12305
|
Forum: zMUD General Discussion Posted: Mon Sep 22, 2014 11:49 pm Subject: Permanently delete "Show Status Bar" and "Attached Command Line" in windows? |
no, in ZMud, each window has its own .mud file. Your main window has a .mud file. If you have a window for tells and channels and stuff, it has a different .mud file. |
Topic: Permanently delete "Show Status Bar" and "Attached Command Line" in windows? |
MattLofton
Replies: 3
Views: 12305
|
Forum: zMUD General Discussion Posted: Sat Sep 20, 2014 1:08 am Subject: Permanently delete "Show Status Bar" and "Attached Command Line" in windows? |
once you make the change, save the settings file for that window. In ZMud, each window has its own .mud file and things like command line and status bar are kept in that file. |
Topic: #CAPTURE issue |
MattLofton
Replies: 1
Views: 6153
|
Forum: CMUD General Discussion Posted: Thu Sep 11, 2014 11:33 pm Subject: #CAPTURE issue |
Use Within Lines|param=1 instead of Pattern. |
Topic: Working with #PATHHIGH |
MattLofton
Replies: 7
Views: 20181
|
Forum: CMUD General Discussion Posted: Wed Sep 03, 2014 12:49 am Subject: Working with #PATHHIGH |
That doesn't apply in this case, since the highlighting isn't stored in the map. I did find a solution, but it's quite unreliable and dependant on where you last clicked in the mapper so sometimes it ... |
Topic: Lost package data |
MattLofton
Replies: 3
Views: 9839
|
Forum: CMUD General Discussion Posted: Sat Aug 23, 2014 7:28 pm Subject: Lost package data |
That's not surprising, CMud is essentially little more than a really fancied-up database viewer so if it has problems with its datafiles then a "real" database program like SQLite Editor isn't going t ... |
Topic: Working with #PATHHIGH |
MattLofton
Replies: 7
Views: 20181
|
Forum: CMUD General Discussion Posted: Tue Aug 19, 2014 4:16 am Subject: Working with #PATHHIGH |
Bah, the solution is relatively simple...
<alias name="testalias" id="954">
<value>testlist = %map.getselection
#print "item count = "@testlist.count ... |
Topic: Trigger and Parentheses |
MattLofton
Replies: 8
Views: 18708
|
Forum: CMUD General Discussion Posted: Mon Aug 18, 2014 12:08 am Subject: Trigger and Parentheses |
No, actually, he does want to include the parentheses as they can sometimes appear between the outermost pair. Parentheses ARE a special character, though, so you have to quote them. |
Topic: Trigger and Parentheses |
MattLofton
Replies: 8
Views: 18708
|
Forum: CMUD General Discussion Posted: Thu Aug 14, 2014 11:40 pm Subject: Trigger and Parentheses |
The pattern matching helpfile will be handy for reference, but if * doesn't match the output (I'm actually surprised it doesn't) you can use a range pattern. Range patterns (in regex, I believe they' ... |
Topic: Working with #PATHHIGH |
MattLofton
Replies: 7
Views: 20181
|
Forum: CMUD General Discussion Posted: Sat Aug 09, 2014 9:13 pm Subject: Working with #PATHHIGH |
Anyone know of a way to clear path highlights so I'm only seeing the speedwalk? Apparently #PATHHIGH doesn't clear old highlights, so frequent use will eventually cause my entire map to highlight. |
Topic: Keeping MUD color through #SUB |
MattLofton
Replies: 10
Views: 23343
|
Forum: CMUD General Discussion Posted: Thu Aug 07, 2014 11:44 pm Subject: Keeping MUD color through #SUB |
You already have the example. If you want to capture data, use () around what you want to capture. |
Topic: Help with Kill Script |
MattLofton
Replies: 4
Views: 14598
|
Forum: zMUD General Discussion Posted: Thu Aug 07, 2014 12:17 am Subject: Help with Kill Script |
You will likely want to investigate multistate triggers, they can handle a lot of the old stuff that longtime zmud users got comfortable using/working around. One large example is the frequent use of ... |
Topic: Keeping MUD color through #SUB |
MattLofton
Replies: 10
Views: 23343
|
Forum: CMUD General Discussion Posted: Thu Aug 07, 2014 12:09 am Subject: Keeping MUD color through #SUB |
What do you mean by 'color position'?
I mean it in a literal sense. The place where a color code would go if you were building the line yourself.
Coloring myself is not an option, the sa ... |
Topic: Keeping MUD color through #SUB |
MattLofton
Replies: 10
Views: 23343
|
Forum: CMUD General Discussion Posted: Mon Aug 04, 2014 11:19 pm Subject: Keeping MUD color through #SUB |
Not with the #SUBSTITUTE command, unless you happen to know what the color position is (you can provide the coloring yourself, via %ansi() or the mxp color tag or even the raw ansi code).
If you do ... |
Topic: Mapper Incorrectly Capturing Room Description |
MattLofton
Replies: 2
Views: 7223
|
Forum: CMUD General Discussion Posted: Mon Aug 04, 2014 1:01 am Subject: Mapper Incorrectly Capturing Room Description |
More detail about your room info is needed, preferably in the form of actual output (with color as best as can be managed via the forum capabilities, if you can't just post a picture). Room descripti ... |
|