Register to post in forums, or Log in to your existing account
 
:
Search found 156 matches for:
Page 1 of 7 Goto page 1, 2, 3, 4, 5, 6, 7  Next
Author Message
  Topic: CMUD: Using a white background
Theragil

Replies: 1
Views: 3167

PostForum: CMUD General Discussion   Posted: Sat Nov 13, 2010 5:46 pm   Subject: CMUD: Using a white background
Edit: Nevermind, delete this post. It just started working right after I posted.
  Topic: how to execute the variable directly?
Theragil

Replies: 4
Views: 6877

PostForum: zMUD General Discussion   Posted: Wed Oct 01, 2008 8:30 pm   Subject: how to execute the variable directly?
If you only want to send it, #send @path_36 should do it.
  Topic: Double line triggers
Theragil

Replies: 2
Views: 4214

PostForum: zMUD General Discussion   Posted: Tue Sep 16, 2008 2:54 pm   Subject: Double line triggers
#tr {^Your blood boils and you let out a mighty roar of defiance.$H:%d~%} {purify = 0} {prompt}

lStringListVariable = ""
  Topic: Mapping Zones
Theragil

Replies: 9
Views: 13580

PostForum: zMUD General Discussion   Posted: Tue Feb 05, 2008 4:56 pm   Subject: Mapping Zones
That's not my experience; if the only path is through a Do Not Enter room, you just don't go. In fact, if you're already in a Do Not Enter room, it won't speedwalk you anywhere.
  Topic: Numerical Sorting...
Theragil

Replies: 8
Views: 10636

PostForum: zMUD General Discussion   Posted: Tue Dec 11, 2007 4:41 pm   Subject: Numerical Sorting...
Zeroes would be useful in some situations but spaces are easier to trim back off later and look neater to the human eye. The sort doesn't care; space comes before all digits (and indeed everything el ...
  Topic: Numerical Sorting...
Theragil

Replies: 8
Views: 10636

PostForum: zMUD General Discussion   Posted: Tue Dec 11, 2007 4:37 pm   Subject: Numerical Sorting...
You could always pad the numbers to a fixed length when building the list.
Blech = ""
#forall @Blah {#additem Blech %rightback( %concat( " ", %i), 9) ...
  Topic: Database scripting: #dbdelete and %query() troubles
Theragil

Replies: 5
Views: 7910

PostForum: zMUD General Discussion   Posted: Sun Sep 09, 2007 2:54 pm   Subject: Database scripting: #dbdelete and %query() troubles
What seems to be working now is this:

tempvar = %concat( "%query(&ID=", %1, ")")
#if (@tempvar = "") {...}

If I build only the inside of the %query it still evaluates &ID too early. I ...
  Topic: Database scripting: #dbdelete and %query() troubles
Theragil

Replies: 5
Views: 7910

PostForum: zMUD General Discussion   Posted: Sun Sep 09, 2007 1:13 pm   Subject: Database scripting: #dbdelete and %query() troubles
The alternate %query() thing isn't helping. I added some debug code and found something odd. Every entry in my database has a unique ID but this query:
%query( %concat( "&ID=", %char( 34), %1 ...
  Topic: Database scripting: #dbdelete and %query() troubles
Theragil

Replies: 5
Views: 7910

PostForum: zMUD General Discussion   Posted: Sun Sep 09, 2007 4:22 am   Subject: Database scripting: #dbdelete and %query() troubles
Is there any other way to delete records under script control?

I'll give the %query() thing a try tomorrow. Thanks for the explanation, it makes sense.
  Topic: Database scripting: #dbdelete and %query() troubles
Theragil

Replies: 5
Views: 7910

PostForum: zMUD General Discussion   Posted: Sun Sep 09, 2007 3:21 am   Subject: Database scripting: #dbdelete and %query() troubles
I've built a pretty large crafting system using the database module of zMUD and most of it works pretty well, but I have two problems that I can't make heads or tails of.

1) #dbdelete simply doesn' ...
  Topic: Two letter alias dissapears from command line
Theragil

Replies: 6
Views: 10624

PostForum: zMUD General Discussion   Posted: Sun Aug 26, 2007 1:46 pm   Subject: Two letter alias dissapears from command line
I thought it was always that way! And I agree with eclpmb, it's got to be because otherwise your command buffer would usually be lots of n;ne;n;nw;w;sw;w;w;se stuff.
  Topic: Large data record variables truncated on save/close/open
Theragil

Replies: 6
Views: 9115

PostForum: zMUD General Discussion   Posted: Mon Jul 23, 2007 12:52 pm   Subject: Large data record variables truncated on save/close/open
I can see how I can force the window open, can I force it minimized from script control?
  Topic: Large data record variables truncated on save/close/open
Theragil

Replies: 6
Views: 9115

PostForum: zMUD General Discussion   Posted: Mon Jul 23, 2007 1:06 am   Subject: Large data record variables truncated on save/close/open
I ran into a very serious problem with this after a bit more development work. Apparently, I have to have the database window open to use %query. If it's closed, even if I use #dbload and #dbreset a ...
  Topic: Large data record variables truncated on save/close/open
Theragil

Replies: 6
Views: 9115

PostForum: zMUD General Discussion   Posted: Sun Jul 22, 2007 2:03 pm   Subject: Large data record variables truncated on save/close/open
All these years and I've never actually learned how to use that, largely because I never found the right pages in the Help that explained it. I always found the command and function syntax pages whic ...
  Topic: Large data record variables truncated on save/close/open
Theragil

Replies: 6
Views: 9115

PostForum: zMUD General Discussion   Posted: Wed Jul 18, 2007 2:18 pm   Subject: Large data record variables truncated on save/close/open
Seems that zMUD can build a data record internally of a much larger size than it can save when you close zMUD and then load again when you open it. If the data record gets too large, it works fine wh ...
  Topic: Lost conc trigger
Theragil

Replies: 5
Views: 9717

PostForum: zMUD General Discussion   Posted: Fri Apr 06, 2007 1:37 pm   Subject: Lost conc trigger
Out of curiosity, is the command input trigger approach faster or better than doing it as an alias?
#alias cast {#var lastspell {%1};~cast %-1}
The result is essentially identical, but I always wond ...
  Topic: Sneaking on Harshlands, and Automap
Theragil

Replies: 7
Views: 9005

PostForum: zMUD General Discussion   Posted: Thu Nov 23, 2006 2:41 pm   Subject: Sneaking on Harshlands, and Automap
It'd be better not to use the alias but to use a trigger because there will be times you are not sneaking, but the alias will make that impractical.

Post what it looks like when you sneak east and ...
  Topic: Screen resolution problem
Theragil

Replies: 7
Views: 9122

PostForum: zMUD General Discussion   Posted: Sat Mar 11, 2006 1:29 pm   Subject: Screen resolution problem
You can change font sizes in View | Preferences. I don't think you can change the size of any other parts of the UI.
  Topic: How can you turn off splitscreen permanently?
Theragil

Replies: 13
Views: 21092

PostForum: zMUD General Discussion   Posted: Tue Feb 07, 2006 3:38 pm   Subject: How can you turn off splitscreen permanently?
You cannot deactivate this feature. You can't do what you want to do. Best you can do is pull to the bottom and live with the fact that you'll have to Ctrl-Z or click the dash button, rather than sc ...
  Topic: Simple highlight script gone wrong
Theragil

Replies: 7
Views: 8460

PostForum: zMUD General Discussion   Posted: Mon Dec 12, 2005 4:47 pm   Subject: Simple highlight script gone wrong
The %q will make it so it only matches that as a word; %q matches a space, punctuation, or beginning or end of line. Making it case-sensitive can also help.
  Topic: Simple highlight script gone wrong
Theragil

Replies: 7
Views: 8460

PostForum: zMUD General Discussion   Posted: Sun Dec 11, 2005 1:40 pm   Subject: Simple highlight script gone wrong
Might also want to make the trigger on {%q{@buddies}%q} to reduce false hits.
  Topic: PennMUSH using MXP to clear my buffer
Theragil

Replies: 4
Views: 6730

PostForum: zMUD General Discussion   Posted: Sat Nov 26, 2005 12:27 pm   Subject: PennMUSH using MXP to clear my buffer
Beautiful! That not only stopped the nuking but also the extra line breaks! What a huge improvement.

I did both, by the way: set the Pueblo class to disable on connecting, and turned off all thre ...
  Topic: PennMUSH using MXP to clear my buffer
Theragil

Replies: 4
Views: 6730

PostForum: zMUD General Discussion   Posted: Sat Nov 26, 2005 3:34 am   Subject: PennMUSH using MXP to clear my buffer
When I disable MXP and then reconnect, I see this at the line where the buffer would get nuked:

</xch_mudtext><img xch_mode=purehtml><xch_page clear=text>

I tried unchecking th ...
  Topic: PennMUSH using MXP to clear my buffer
Theragil

Replies: 4
Views: 6730

PostForum: zMUD General Discussion   Posted: Thu Nov 24, 2005 1:11 pm   Subject: PennMUSH using MXP to clear my buffer
Every time I connect to this particular PennMUSH, an MXP command causes it to clear my screen and scrollback buffer, so I can't see all the things it said to me as I was logging on. It also means eve ...
  Topic: #WAIT -- Maybe it's just the way I think...
Theragil

Replies: 7
Views: 6873

PostForum: zMUD General Discussion   Posted: Sun Oct 30, 2005 1:44 pm   Subject: #WAIT -- Maybe it's just the way I think...
Well, if it works for you, good on you. So where is the problem then?
 
Page 1 of 7 Goto page 1, 2, 3, 4, 5, 6, 7  Next
All times are GMT
© 2009 Zugg Software. Hosted on Wolfpaw.net