Author |
Message |
Topic: GMCP |
Anaristos
Replies: 1
Views: 6884
|
Forum: CMUD General Discussion Posted: Mon Jun 19, 2017 8:22 am Subject: GMCP |
This is how i would process the channel data:
<trigger name="gmcpchtrig" type="GMCP" param="201" priority="4" trigontrig="false" id="4" ... |
Topic: Execute commands from a database record |
Anaristos
Replies: 2
Views: 7980
|
Forum: CMUD General Discussion Posted: Wed Aug 24, 2016 1:16 am Subject: Execute commands from a database record |
It is hard to imagine precisely what your database records look like. Please post an exact db record that is supposed to be executed. Once we look at what the client sees we can go from there. |
Topic: Error on CMUD Pro 3.34 on Windows 10 x64 |
Anaristos
Replies: 5
Views: 13749
|
Forum: CMUD General Discussion Posted: Sat Dec 19, 2015 6:16 am Subject: Error on CMUD Pro 3.34 on Windows 10 x64 |
Also, the .dll may just have gotten out of scope for some reason. Whenever I get that message, I go to the CMUD folder (in Program Files (x86)) and cut/paste PCRE810.dll |
Topic: Adding C# |
Anaristos
Replies: 3
Views: 8301
|
Forum: CMUD General Discussion Posted: Sat Oct 24, 2015 4:47 pm Subject: Adding C# |
I make extensive use of C# as an scripting extension. Once you understand that CMUD is both a server and a client you can take advantage of this feature. The way I communicate between zscript with C# ... |
Topic: Running CMUD in Windows 10 |
Anaristos
Replies: 6
Views: 17729
|
Forum: CMUD General Discussion Posted: Thu Aug 13, 2015 8:15 am Subject: Running CMUD in Windows 10 |
I am running CMUD under Windows 10 with no problems related to the client. |
Topic: #Read and ansi logging |
Anaristos
Replies: 6
Views: 11349
|
Forum: CMUD General Discussion Posted: Thu Aug 06, 2015 8:06 am Subject: #Read and ansi logging |
If you want to do your own color translation read . |
Topic: help convert sql code from Cmud2 to Cmud3 |
Anaristos
Replies: 9
Views: 14129
|
Forum: CMUD General Discussion Posted: Thu Jul 09, 2015 4:09 pm Subject: help convert sql code from Cmud2 to Cmud3 |
For the door problem see my reply in this . |
Topic: Single CMUD, Multiple sessions, Separate network settings? |
Anaristos
Replies: 8
Views: 15871
|
Forum: CMUD General Discussion Posted: Wed Jun 10, 2015 7:33 am Subject: Single CMUD, Multiple sessions, Separate network settings? |
The fact that you said "package" and not "packages" tells me that you are trying to open the same session multiple times which not the same thing as what you want. What you want to do is name each ses ... |
Topic: Single CMUD, Multiple sessions, but one map |
Anaristos
Replies: 3
Views: 8222
|
Forum: CMUD General Discussion Posted: Tue Jun 09, 2015 6:12 am Subject: Single CMUD, Multiple sessions, but one map |
Take note also that if you modify the map in one session you will have to reload it in the other(s) because the map is loaded into memory at the start. |
Topic: Color oddities... suggestions? |
Anaristos
Replies: 2
Views: 6969
|
Forum: CMUD General Discussion Posted: Fri Jun 05, 2015 3:00 pm Subject: Color oddities... suggestions? |
Perhaps if you could post a screenshot we could tell more. I use full ansi color sequences (including xterm) and it works, though if the window you are writing to does not have the focus the colors ha ... |
Topic: Using #WIN and #CLOSE. |
Anaristos
Replies: 4
Views: 9512
|
Forum: CMUD General Discussion Posted: Sun Mar 01, 2015 12:34 pm Subject: Using #WIN and #CLOSE. |
Use MAKEWINDOW. If the window already exists it just opens it while allowing you to specify positioning parameters among other things.
For instance:
#ADDKEY $params {internal=yes|width=248| ... |
Topic: I'm having what I'm told is an MXP problem? |
Anaristos
Replies: 1
Views: 6077
|
Forum: CMUD General Discussion Posted: Sun Oct 05, 2014 8:25 am Subject: I'm having what I'm told is an MXP problem? |
Could you show us the line(s) that is/are failing? The MXP you are trying to use. |
Topic: speedmenus question (possibly lua-related) |
Anaristos
Replies: 1
Views: 7436
|
Forum: CMUD General Discussion Posted: Sat Sep 27, 2014 4:48 am Subject: speedmenus question (possibly lua-related) |
I may be misunderstanding you, but those menus were created outside of cmud using the windows menu creation facility. Perhaps, you could show what yours look like now? |
Topic: Working with #PATHHIGH |
Anaristos
Replies: 7
Views: 21845
|
Forum: CMUD General Discussion Posted: Tue Sep 02, 2014 8:49 pm Subject: Working with #PATHHIGH |
Actually, you can modify the map database on the fly. If you modify the Object table and you want to see the reflected changes (i.e. the rooms) then you simply reload it. If the data can be viewed via ... |
Topic: Problem with alarms |
Anaristos
Replies: 2
Views: 7706
|
Forum: CMUD General Discussion Posted: Wed Aug 06, 2014 5:43 am Subject: Problem with alarms |
I created the trigger as you have it and it works for me. You must remember that the format #ALARM {+@var} {@cmds} will cause the trigger to delete itself when it fires after @var seconds elapse. Read ... |
Topic: DDE/COM using google chrome. |
Anaristos
Replies: 9
Views: 16205
|
Forum: CMUD General Discussion Posted: Tue Aug 05, 2014 7:44 am Subject: DDE/COM using google chrome. |
You can write C# apps that are COM visible and registered for COM interop.
There are two ways you can interact with CMUD. One way is to execute a method and wait for the returned output (I usually on ... |
Topic: DDE/COM using google chrome. |
Anaristos
Replies: 9
Views: 16205
|
Forum: CMUD General Discussion Posted: Tue Aug 05, 2014 3:06 am Subject: DDE/COM using google chrome. |
It is unfortunate that Lua runs in CMUD's main thread. There is no way to separate them so yes, there will be a delay. One thing you can do is run your code against Chrome in an external app (you can ... |
Topic: SSH |
Anaristos
Replies: 3
Views: 9510
|
Forum: CMUD General Discussion Posted: Sat Jul 12, 2014 2:32 am Subject: SSH |
This might help. |
Topic: #MAPQUERY command |
Anaristos
Replies: 1
Views: 6076
|
Forum: CMUD General Discussion Posted: Wed Jul 09, 2014 3:33 am Subject: #MAPQUERY command |
In my opinion, it would be cleaner to make it a function:
#FUNCTION mapquery($mask) { #IF !%null($mask) { #RETURN %mapquery($mask) } }
Example:
# ... |
Topic: Sitting up a string variable and then getting it working with my aliases |
Anaristos
Replies: 4
Views: 10242
|
Forum: CMUD General Discussion Posted: Thu Jul 03, 2014 9:14 am Subject: Sitting up a string variable and then getting it working with my aliases |
The problem with what you are doing is that there is no actual relationship between the hitching and the mount.
At least, in the script. You have a set of mounts that could be used, but you don't kno ... |
Topic: Multi-State Triggers |
Anaristos
Replies: 1
Views: 5820
|
Forum: CMUD General Discussion Posted: Sun Jun 29, 2014 4:05 pm Subject: Multi-State Triggers |
There is a tutorial here. |
Topic: Creating a new button |
Anaristos
Replies: 2
Views: 7694
|
Forum: CMUD General Discussion Posted: Thu Jun 12, 2014 1:26 am Subject: Creating a new button |
#PROMPT just places the reply in the variable provided (in this case RepairEquipment).
From what you show you are using the following format: #PROMPT varname caption {code}.
If this is the case, {co ... |
Topic: MXP #SUB eating </send> tag |
Anaristos
Replies: 11
Views: 20361
|
Forum: CMUD General Discussion Posted: Thu Feb 20, 2014 3:34 am Subject: MXP #SUB eating </send> tag |
Show us how you are building the command. It appears you are prefixing <SEND> and suffixing </SEND> to the text. The problem might be there. |
Topic: Another Mapper Topic |
Anaristos
Replies: 3
Views: 9449
|
Forum: CMUD General Discussion Posted: Tue Dec 17, 2013 7:50 am Subject: Another Mapper Topic |
As you cycle through the config dialog boxes you will reach one where the exit string is displayed. The field editable. I would try to enter that regex into that box and see if that works. If not then ... |
Topic: Another Mapper Topic |
Anaristos
Replies: 3
Views: 9449
|
Forum: CMUD General Discussion Posted: Tue Dec 10, 2013 4:35 am Subject: Another Mapper Topic |
It seems it doesn't understand the exits line.
There are (*) obvious exits as well as the strings for one and no exits is confusing the mapper. You may have to use a custom trigger to capture that l ... |
|