Author |
Message |
Topic: Capturing Raw MUD Output |
jennyA
Replies: 11
Views: 17886
|
Forum: zMUD General Discussion Posted: Thu Mar 04, 2004 10:06 pm Subject: Capturing Raw MUD Output |
Okay, so with word wrap off and this trigger - #TR {(*)}, does it seem conceivable that I should be able to trap every line of text output by my MUD? |
Topic: Capturing Raw MUD Output |
jennyA
Replies: 11
Views: 17886
|
Forum: zMUD General Discussion Posted: Fri Feb 27, 2004 4:32 pm Subject: Capturing Raw MUD Output |
Hmm...so I created a simple trigger to fire every time anything is output to the buffer. Then I take that output and do my database updates. I seem to be having some problems with multiple lines tho ... |
Topic: Capturing Raw MUD Output |
jennyA
Replies: 11
Views: 17886
|
Forum: zMUD General Discussion Posted: Fri Feb 27, 2004 3:55 am Subject: Capturing Raw MUD Output |
Thanks for confirming that Alan, those are the things I was wanting to know. Have any ideas regarding the second question I posted in the message right above yours? |
Topic: Capturing Raw MUD Output |
jennyA
Replies: 11
Views: 17886
|
Forum: zMUD General Discussion Posted: Fri Feb 27, 2004 3:47 am Subject: Capturing Raw MUD Output |
Thanks Vijilante, I think that's the answer I was looking for.
My next question is about how to capture every single line of MUD output that's coming through zMud so it can be analyzed. I can easi ... |
Topic: Capturing Raw MUD Output |
jennyA
Replies: 11
Views: 17886
|
Forum: zMUD General Discussion Posted: Fri Feb 27, 2004 2:21 am Subject: Capturing Raw MUD Output |
Thanks Shalimar! That's extremely useful.
I think I need to rephrase my question a little. I want to see exactly what the MUD is outputting, no formatting at all. If I turn off the GSL parsing, ... |
Topic: Capturing Raw MUD Output |
jennyA
Replies: 11
Views: 17886
|
Forum: zMUD General Discussion Posted: Thu Feb 26, 2004 5:48 pm Subject: Capturing Raw MUD Output |
Still a relatively new zMud user...
I'm wondering if it's possible to get zMud to capture and display raw MUD output for games like GemStone and Dragonrealms. Right now it appears to be formatting ... |
Topic: GemStone - Reproducing Wizard FE NPC Highlights |
jennyA
Replies: 7
Views: 15041
|
Forum: zMUD General Discussion Posted: Fri Dec 12, 2003 6:00 am Subject: GemStone - Reproducing Wizard FE NPC Highlights |
That's exactly it Insomniak. When you set that flag to ON, then the GSL codes appear. I totally forgot about all of those options. Thanks for helping the feeble minded.
Insomniak, are you the sa ... |
Topic: gemstone log in trouble |
jennyA
Replies: 5
Views: 8922
|
Forum: zMUD General Discussion Posted: Thu Dec 11, 2003 5:47 pm Subject: gemstone log in trouble |
From what I know, logging in through the website is different than going through SGE. Pretty sure zMud and SGE connect in the same way, so that's usually what I use to test.
Just an fyi - I've bee ... |
Topic: gemstone log in trouble |
jennyA
Replies: 5
Views: 8922
|
Forum: zMUD General Discussion Posted: Thu Dec 11, 2003 4:47 pm Subject: gemstone log in trouble |
I've had problems logging into GSIV, but they have been intermittent. This morning, for instance, I wasn't able to log in for a few hours. Have you tried getting into the game through the SGE? That ... |
Topic: GemStone - Reproducing Wizard FE NPC Highlights |
jennyA
Replies: 7
Views: 15041
|
Forum: zMUD General Discussion Posted: Tue Dec 09, 2003 8:45 pm Subject: GemStone - Reproducing Wizard FE NPC Highlights |
No tags that I can see when I turn off the GSL emulation. I wonder if the NPC strings are hardcoded into the Wizard. From there it could highlight the NPC and the associated words surrounding the NP ... |
Topic: GemStone - Reproducing Wizard FE NPC Highlights |
jennyA
Replies: 7
Views: 15041
|
Forum: zMUD General Discussion Posted: Tue Dec 09, 2003 3:40 am Subject: GemStone - Reproducing Wizard FE NPC Highlights |
Thanks for the reply Anabasis. I've been using the GSL options (by turning them off) in zMud to try and figure out what the GSL codes are for NPCs, but I don't see any GSL tags surrounding these stri ... |
Topic: GemStone - Reproducing Wizard FE NPC Highlights |
jennyA
Replies: 7
Views: 15041
|
Forum: zMUD General Discussion Posted: Sun Dec 07, 2003 7:02 am Subject: GemStone - Reproducing Wizard FE NPC Highlights |
And just to give an example of a room with a NPC in it, here's a clip from GemStone where "a mire wolf" is the NPC.
[Town Square, Small Park]
A small, shady park fills an old vacant lot behind a row ... |
Topic: GemStone - Reproducing Wizard FE NPC Highlights |
jennyA
Replies: 7
Views: 15041
|
Forum: zMUD General Discussion Posted: Sun Dec 07, 2003 6:45 am Subject: GemStone - Reproducing Wizard FE NPC Highlights |
Simutronics provides their own front end called the Wizard. You have the ability to select an option that highlights NPC strings. These strings can vary, so I don't think they have a static list of ... |
Topic: Problems using ADO |
jennyA
Replies: 13
Views: 19966
|
Forum: zMUD General Discussion Posted: Wed Nov 26, 2003 8:57 pm Subject: Problems using ADO |
Thanks again for the help HateSpyWare. Damn, this stinks that I can't figure out the problem. I've got a complex script I've been writing and if I can't use the EOF or BOF functions of ADO with SQL ... |
Topic: Problems using ADO |
jennyA
Replies: 13
Views: 19966
|
Forum: zMUD General Discussion Posted: Wed Nov 26, 2003 5:23 am Subject: Problems using ADO |
Alright, let's try this again. Wasn't trying to censor my script, but you are right I should have included the connection string in there. I wasn't actually changing queries, I tried both versions i ... |
Topic: Problems using ADO |
jennyA
Replies: 13
Views: 19966
|
Forum: zMUD General Discussion Posted: Wed Nov 26, 2003 3:18 am Subject: Problems using ADO |
Here's the VB version and this works
[code]
ncount = 0
Dim rsquery As New ADODB.Recordset
csql = "select * from mytable"
Call rsquery.Open(csql, connstr, 2)
rsquery.MoveFirst
Do While Not rsque ... |
Topic: Problems using ADO |
jennyA
Replies: 13
Views: 19966
|
Forum: zMUD General Discussion Posted: Wed Nov 26, 2003 3:03 am Subject: Problems using ADO |
Could it be that I'm using SQL Server? I'll try porting this to VB as well and see if it works there. No idea what the hell I could be doing wrong. When I run the above code the WHILE loop never en ... |
Topic: Problems using ADO |
jennyA
Replies: 13
Views: 19966
|
Forum: zMUD General Discussion Posted: Wed Nov 26, 2003 1:27 am Subject: Problems using ADO |
Ok, I've changed a few things around. Lightbulb's observation of the lack of spaces did clear up my IF/ELSE problem, but I still seem to be having trouble determine the EOF or BOF of a recordset. An ... |
Topic: Problems using ADO |
jennyA
Replies: 13
Views: 19966
|
Forum: zMUD General Discussion Posted: Tue Nov 25, 2003 5:28 pm Subject: Problems using ADO |
Ah ha, the lack of spaces. That sounds like it might be the problem. Thanks for the help guys, I'll try this all out as soon as I get home. |
Topic: Problems using ADO |
jennyA
Replies: 13
Views: 19966
|
Forum: zMUD General Discussion Posted: Tue Nov 25, 2003 4:51 pm Subject: Problems using ADO |
Agreed on the formatting of zMud code. To be able to indent things and keep them that way would be very helpful. Maybe we should suggest that in the beta forum.
Thanks for the snippet of code. I ... |
Topic: Problems using ADO |
jennyA
Replies: 13
Views: 19966
|
Forum: zMUD General Discussion Posted: Tue Nov 25, 2003 3:25 pm Subject: Problems using ADO |
One more note. I tried the same code in VB and it works fine. Thanks.
-JennyA |
Topic: Problems using ADO |
jennyA
Replies: 13
Views: 19966
|
Forum: zMUD General Discussion Posted: Tue Nov 25, 2003 3:24 pm Subject: Problems using ADO |
I'm trying to use ADO to connect to SQL Server. For some reason, the code below isn't working properly. I don't think I'm even getting a result set returned from the query I'm running. Any ideas? ... |
Topic: Object Oriented zMud Scripting |
jennyA
Replies: 7
Views: 8075
|
Forum: zMUD General Discussion Posted: Thu Oct 23, 2003 9:16 pm Subject: Object Oriented zMud Scripting |
Another question...
In my example above I'm using triggers to call Aliases. Most of what I'm doing in those aliases is accessing a database via ADO. Would it be smarter to code the aliases which ... |
Topic: Object Oriented zMud Scripting |
jennyA
Replies: 7
Views: 8075
|
Forum: zMUD General Discussion Posted: Thu Oct 23, 2003 8:39 pm Subject: Object Oriented zMud Scripting |
Thanks for the feedback guys. Oracle, I'm actually working things out in the same manner. I've run into a few snags though. Let me see if I can explain and then maybe someone out there will have so ... |
Topic: SQL Server |
jennyA
Replies: 14
Views: 28770
|
Forum: zMUD General Discussion Posted: Thu Oct 23, 2003 5:32 am Subject: SQL Server |
Anyone accessing a SQL Server database via zMud? |
|