Register to post in forums, or Log in to your existing account
 
:
Search found 4238 matches for:
Page 1 of 170 Goto page 1, 2, 3 ... 168, 169, 170  Next
Author Message
  Topic: how do i use Proxy?
LightBulb

Replies: 3
Views: 8752

PostForum: zMUD General Discussion   Posted: Tue Feb 08, 2005 9:39 pm   Subject: how do i use Proxy?
From the lack of responses, it seems likely that noone knows. Let us know if you find something that works, it might help the next person.
  Topic: trigger and ansi colors
LightBulb

Replies: 11
Views: 19358

PostForum: zMUD General Discussion   Posted: Tue Feb 08, 2005 9:29 pm   Subject: trigger and ansi colors
Why play with the colors at all when you don't want to change them.
Vijilante wasn't suggesting you should turn off the colors, he was suggesting that since the colors you want are the colors which ...
  Topic: making a #cw trigger a priority over other #cw triggers
LightBulb

Replies: 4
Views: 9884

PostForum: zMUD General Discussion   Posted: Mon Feb 07, 2005 1:46 am   Subject: making a #cw trigger a priority over other #cw triggers
If the %colorname colors don't mix with the standard colors, then don't mix them. Decide which you want to use and do all your triggers one way or the other. It might require a lot of work now to conv ...
  Topic: Can someone help me make a xp rate calculator for zmud?
LightBulb

Replies: 3
Views: 7596

PostForum: zMUD General Discussion   Posted: Mon Feb 07, 2005 1:35 am   Subject: Can someone help me make a xp rate calculator for zmud?
Apparently ; isn't being processed correctly. Just replace all of them with new lines.
#TR {^You have (%d) to spend on stats} {
#MATH XPincrease {%1 - @XPtotal}
#VA ...
  Topic: Trigger with variables.
LightBulb

Replies: 4
Views: 7680

PostForum: zMUD General Discussion   Posted: Mon Feb 07, 2005 12:56 am   Subject: Trigger with variables.
What Matt is saying is that you need to put some kind of delimiter, such as double-quotes, around %1 in the #IF conditions. Otherwise, if %1 is longer than one word (contains spaces) then your #IF con ...
  Topic: Can someone help me make a xp rate calculator for zmud?
LightBulb

Replies: 3
Views: 7596

PostForum: zMUD General Discussion   Posted: Sat Feb 05, 2005 3:51 pm   Subject: Can someone help me make a xp rate calculator for zmud?
#ALA *600 {xprate}
#TR {^You have (%d) to spend on stats} {
#MATH XPincrease {%1 - @XPtotal};#VAR XPtotal %1;#SAY {You have made @XPincrease xp in the ...
  Topic: Channel logging.
LightBulb

Replies: 8
Views: 13822

PostForum: zMUD General Discussion   Posted: Sat Feb 05, 2005 3:40 pm   Subject: Channel logging.
Actually, you could use a simpler pattern. Both * and %1 match anything, so they aren't needed at the beginning or end of a trigger Pattern unless the portion of the line they match will be used in th ...
  Topic: #alarm,#timer...help pls!
LightBulb

Replies: 2
Views: 5497

PostForum: zMUD General Discussion   Posted: Fri Feb 04, 2005 3:29 pm   Subject: #alarm,#timer...help pls!
The #STATUS line may or may not work. I tested it in offline mode and it wouldn't update the status bar.
The status bar doesn't update when system variables change. It only updates when user variable ...
  Topic: Autoconnect MUCK
LightBulb

Replies: 1
Views: 4443

PostForum: zMUD General Discussion   Posted: Fri Feb 04, 2005 3:13 pm   Subject: Autoconnect MUCK
I think the 'atconnect' alias is what you want.
#AL atconnect {Connect %char %pass}
  Topic: making a #cw trigger a priority over other #cw triggers
LightBulb

Replies: 4
Views: 9884

PostForum: zMUD General Discussion   Posted: Fri Feb 04, 2005 3:05 pm   Subject: making a #cw trigger a priority over other #cw triggers
The #CW trigger which comes last will set the color you see. To revise the order quickly, just delete the @1 trigger then remake it.
#UNTR {@1}
#TR {@1} {#CW 12}
  Topic: Displaying multiple "spaces" in status window
LightBulb

Replies: 5
Views: 7799

PostForum: zMUD General Discussion   Posted: Fri Feb 04, 2005 2:50 pm   Subject: Displaying multiple "spaces" in status window
Just put double-quotes around the extra spaces.
%ansi( white)Armor : %ansi( yellow)@armor
%ansi( white)Shield: %ansi( yellow)@shield
%ansi( white)R ...
  Topic: Command Window Disconnected from Main window
LightBulb

Replies: 3
Views: 5948

PostForum: zMUD General Discussion   Posted: Thu Feb 03, 2005 5:50 pm   Subject: Command Window Disconnected from Main window
It appears you had an "unattached" command line. The probable fix would be to right click the window and then select Attached Command Line from the Window Options submenu. It can also be controlled fr ...
  Topic: Bug in syntax editor
LightBulb

Replies: 1
Views: 4924

PostForum: zMUD General Discussion   Posted: Wed Feb 02, 2005 6:15 pm   Subject: Bug in syntax editor
This is similar to many other 'errors' the syntax editor reports. There's nothing wrong with the syntax but it's not what the editor expects. If you rely on the syntax editor to do your syntax checkin ...
  Topic: Database Formating
LightBulb

Replies: 2
Views: 5537

PostForum: zMUD General Discussion   Posted: Wed Feb 02, 2005 5:57 pm   Subject: Database Formating
#VAR lv 0
#LOOPVIEW {#ADD lv 1;#IF (@lv > 2) {#VAR lv 0;#SHOW &Name} {#SHOWP &Name}}
You'll need to set @lv to 0 either before or after the loop, so ...
  Topic: an odd question out of the blue
LightBulb

Replies: 9
Views: 13000

PostForum: zMUD General Discussion   Posted: Mon Jan 31, 2005 8:40 pm   Subject: an odd question out of the blue
Yes, results of functions are usually sent to the MUD and they usually don't change a variable's contents directly. Functions just return the altered value, if you actually want the variable changed t ...
  Topic: Trigger colour problems
LightBulb

Replies: 4
Views: 9164

PostForum: zMUD General Discussion   Posted: Mon Jan 31, 2005 8:23 pm   Subject: Trigger colour problems
Make sure you have at least one item in each variable. If one of the variables is empty, anything with the same ending will match.
  Topic: tired of %quote bugging...
LightBulb

Replies: 21
Views: 33338

PostForum: zMUD General Discussion   Posted: Mon Jan 31, 2005 1:15 am   Subject: tired of %quote bugging...
Very nice!
  Topic: Character setting won't read files.
LightBulb

Replies: 6
Views: 9911

PostForum: zMUD General Discussion   Posted: Mon Jan 31, 2005 1:01 am   Subject: Character setting won't read files.
Is there anything different in the Preferences of those two characters? It is quite odd and I'm grasping at straws hoping to find a solution for you.
  Topic: tired of %quote bugging...
LightBulb

Replies: 21
Views: 33338

PostForum: zMUD General Discussion   Posted: Mon Jan 31, 2005 12:30 am   Subject: tired of %quote bugging...
Yes, I did test it just not as exhaustively as you did. I used the precise line you complained about in your original post:
goss let's try it again with & and % and " and such
What it sends:
&a ...
  Topic: Character setting won't read files.
LightBulb

Replies: 6
Views: 9911

PostForum: zMUD General Discussion   Posted: Sun Jan 30, 2005 12:49 pm   Subject: Character setting won't read files.
It's probably controlled from the Files tab of the character's properties.
  Topic: tired of %quote bugging...
LightBulb

Replies: 21
Views: 33338

PostForum: zMUD General Discussion   Posted: Sun Jan 30, 2005 12:41 pm   Subject: tired of %quote bugging...
%quote doesn't apply to either single-quotes or double-quotes.

Instead of trying all these tricks with user functions (scripts inside variables), just put the color-selection into the alias.
#AL g ...
  Topic: Need help setting up a tell-capture.
LightBulb

Replies: 2
Views: 6490

PostForum: zMUD General Discussion   Posted: Sun Jan 30, 2005 12:08 pm   Subject: Need help setting up a tell-capture.
No, you won't be able to do this with #SETPROMPT. You'll have to make a trigger using #TRIGGER. You can still use #SETPROMPT if you want, the only command the trigger has to have is
#T- Cap
That com ...
  Topic: spaces in %pos
LightBulb

Replies: 2
Views: 6930

PostForum: zMUD General Discussion   Posted: Sat Jan 29, 2005 3:19 pm   Subject: spaces in %pos
Functions use parentheses (), not braces {}, around their parameters, and they don't have a space between the function name, %pos, and its parameters.
#IF %pos("long ", %1) {look}
NOT
#IF %pos {"l ...
  Topic: Can someone help? Need to fix a bug involving timing events.
LightBulb

Replies: 3
Views: 5651

PostForum: zMUD General Discussion   Posted: Sat Jan 29, 2005 3:05 pm   Subject: Can someone help? Need to fix a bug involving timing events.
#var timeqc %eval( %eval( 60 * %eval( %time( nn)-@QSMinute)) + %eval( %time( ss)-@QSSecond))

First, you need to replace the #VARIABLE command with the #FUNCTION command in the above statement. Othe ...
  Topic: Trigger pattern to match multiple blank lines
LightBulb

Replies: 4
Views: 6838

PostForum: zMUD General Discussion   Posted: Fri Jan 28, 2005 1:01 am   Subject: Trigger pattern to match multiple blank lines
Yes, it's always better to give the real problem. I believe this will do the trick.

#TR {Teleporting...} {#CO WHITE;#VAR RoomName ""}
#COND {(*)} {#VAR RoomName {%1}} {LoopLines|Param=1}
#COND { ...
 
Page 1 of 170 Goto page 1, 2, 3 ... 168, 169, 170  Next
All times are GMT
© 2009 Zugg Software. Hosted on Wolfpaw.net