Author |
Message |
Topic: Plugin Development Issue |
Serentus
Replies: 9
Views: 10989
|
Forum: zMUD General Discussion Posted: Wed Sep 20, 2006 10:31 am Subject: Plugin Development Issue |
Talisman,
There are some people working on plugins. You may want to ask this in the developers forum, you may to apply for that forum, but it shouldn't be a problem as plugin developer. Once in the ... |
Topic: ZMUD Style and Design |
Serentus
Replies: 48
Views: 72326
|
Forum: zMUD General Discussion Posted: Wed Jan 26, 2005 6:51 am Subject: ZMUD Style and Design |
was thinking along the lines of Microsoft. They're over-the-top gorgeous. And Macromedia. And Adobe.
LOL
Until this I thought you were serious, now I know you must joking around.
It's a g ... |
Topic: Inconsistent prompt trigger |
Serentus
Replies: 18
Views: 18909
|
Forum: zMUD General Discussion Posted: Thu Nov 04, 2004 10:51 am Subject: Inconsistent prompt trigger |
Do you use just the HM(2000h, 2000m ex-), or the HMEW(2000h, 2000m, 12000e, 12000w ex-) prompt?
If you use only the HM prompt then your prompt trigger will NOT match when have no balance and no equ ... |
Topic: Padding values with spaces |
Serentus
Replies: 2
Views: 3934
|
Forum: zMUD General Discussion Posted: Wed Oct 27, 2004 4:06 am Subject: Padding values with spaces |
You could try the %format() function.
%format("&-30s&-s",%1,%2)
should do what you want. |
Topic: Multi Line Triggers |
Serentus
Replies: 3
Views: 5942
|
Forum: zMUD General Discussion Posted: Wed Oct 27, 2004 3:37 am Subject: Multi Line Triggers |
This may not be your problem, but....
Since the '*h, *m *-' part of the trigger looks like a prompt, and is at the very end, you may need to set the trigger options to 'prompt' checked and 'new lin ... |
Topic: timed reconnect - is it possible ? |
Serentus
Replies: 4
Views: 6595
|
Forum: zMUD General Discussion Posted: Fri Oct 22, 2004 3:53 am Subject: timed reconnect - is it possible ? |
Set the Character up to Auto-Login.
Start your script.
When the script is done #DISCONNECT and set up an #ALARM to #CONNECT each hour. |
Topic: Duplicate Prompt Triggers |
Serentus
Replies: 2
Views: 4613
|
Forum: zMUD General Discussion Posted: Thu Sep 23, 2004 4:32 am Subject: Duplicate Prompt Triggers |
Try this:
#TR {&{hp}h, &{mn}m, &{ed}e, &{wp}w (%w)~-} {#IF (@hp<2700) {action}} "" {nocr|prompt}
without the nocr (no carriage return) your trigger is firing once on the prompt ... |
Topic: Regex for different amount of parameters |
Serentus
Replies: 7
Views: 13556
|
Forum: zMUD General Discussion Posted: Fri Aug 27, 2004 10:43 am Subject: Regex for different amount of parameters |
#VAR target {%1} |
Topic: Storing Ansi codes from the mud |
Serentus
Replies: 4
Views: 6007
|
Forum: zMUD General Discussion Posted: Fri Jul 23, 2004 10:18 am Subject: Storing Ansi codes from the mud |
set the trigger option to ansi then %trigger should contain the ansi codes. |
Topic: wildcards in alias names |
Serentus
Replies: 5
Views: 5886
|
Forum: zMUD General Discussion Posted: Fri Jul 16, 2004 4:26 am Subject: wildcards in alias names |
#ALIAS make {#LOOP %1 {sew %2}}
%1 and %2 are parameters passed to the alias, so
'make 3 shirts' will
sew shirt
sew shirt
sew shirt
'make 5 pants' will
sew pants
sew pants
sew pants
sew ... |
Topic: Need Help with playing media and stopping triggers |
Serentus
Replies: 4
Views: 5481
|
Forum: zMUD General Discussion Posted: Fri Jul 16, 2004 4:20 am Subject: Need Help with playing media and stopping triggers |
This should give you some suggestions for #WAIT alternitives
http://www.zuggsoft.com/zmud/timers.htm |
Topic: Help with conditions |
Serentus
Replies: 3
Views: 5785
|
Forum: zMUD General Discussion Posted: Fri Jul 16, 2004 4:16 am Subject: Help with conditions |
If you want the second state to fire on both
2687h, 4535m cexkdb-
and
2687h, 4535m cexkdb-glance
use a within lines 1 and set it to fire on both prompt and newline. |
Topic: Multiline Buttons |
Serentus
Replies: 2
Views: 3843
|
Forum: zMUD General Discussion Posted: Mon Jun 28, 2004 6:14 am Subject: Multiline Buttons |
Lightbulb's suggestion is the best way, but if you have to use a button and your defenses are in a list then you could try this as the caption:
%replace(@DefenseList,"|",%cr)
|
Topic: Error when ZMud starts up.. Seeking help. |
Serentus
Replies: 1
Views: 3432
|
Forum: zMUD General Discussion Posted: Tue Jun 22, 2004 12:24 pm Subject: Error when ZMud starts up.. Seeking help. |
This can be solved by reading the sticky at the top of the forums titled
"Unable to get license at this time- READ ME!"
or by clicking this link to that sticky
http://www.zuggsoft.com/forum/topic ... |
Topic: buttons for every occasion |
Serentus
Replies: 1
Views: 3486
|
Forum: zMUD General Discussion Posted: Fri Jun 18, 2004 5:56 am Subject: buttons for every occasion |
You could put the buttons in various classes and then enable/disable the classes as needed.
Such as you could put you combat buttons in the class combat_buttons. Quest buttons in the class quest_butt ... |
Topic: Buttons not displayed in Settings Editor |
Serentus
Replies: 4
Views: 6178
|
Forum: zMUD General Discussion Posted: Wed Jun 16, 2004 9:03 am Subject: Buttons not displayed in Settings Editor |
Exporting that way only exports whats selected. A better way to export everything is from the main window select settings->export |
Topic: Concat And Or Format? |
Serentus
Replies: 8
Views: 9361
|
Forum: zMUD General Discussion Posted: Wed Jun 16, 2004 8:56 am Subject: Concat And Or Format? |
or you can try
%right(%concat("0",@Reboot_Seconds),2) |
Topic: Spacing Problem -- Driving Me Nuts |
Serentus
Replies: 11
Views: 17053
|
Forum: zMUD General Discussion Posted: Tue Jun 15, 2004 10:50 am Subject: Spacing Problem -- Driving Me Nuts |
I suggest using 7.05. This was a problem in the 6.x with achaea and many others when several commands were sent at a time. 7.05 can handle the GA/EOR so that doesn't happen. Last 6.x version didn't ha ... |
Topic: Spacing Problem -- Driving Me Nuts |
Serentus
Replies: 11
Views: 17053
|
Forum: zMUD General Discussion Posted: Tue Jun 15, 2004 5:32 am Subject: Spacing Problem -- Driving Me Nuts |
Zaltan you may want to check the state of the GA/EOR under preferances->general->emualtion. not sure if that's going to be your problem or not, but I know it can cause spacing problems with the ... |
Topic: Comparing lists and looping spells question |
Serentus
Replies: 8
Views: 9246
|
Forum: zMUD General Discussion Posted: Thu Jun 10, 2004 9:27 am Subject: Comparing lists and looping spells question |
Something like this should work for you. I can't test it right now so it may have a syntax error or missing curly brace.
#ALIAS Spellup {#FORALL @all_possible_spells {#IF %ismember(%1,@current_spel ... |
Topic: Extracting a phrase from a line |
Serentus
Replies: 2
Views: 4841
|
Forum: zMUD General Discussion Posted: Thu Jun 10, 2004 8:43 am Subject: Extracting a phrase from a line |
The (*) was capturing both words. The reason it only added the first word was that it expands to:
#additem list_currentspells detect invisiblity
So it only sees detect. You could still use the (*) ... |
Topic: error 999 |
Serentus
Replies: 4
Views: 5185
|
Forum: zMUD General Discussion Posted: Tue Jun 08, 2004 5:17 am Subject: error 999 |
from:http://www.elicense.com/how/faq.asp
999 Unknown error. Try again, and if the problem persists, contact us using this Support Form link. Please provide exact details on the steps leading up to ... |
Topic: Countdown (gauge?). |
Serentus
Replies: 4
Views: 7555
|
Forum: zMUD General Discussion Posted: Fri Jun 04, 2004 10:48 am Subject: Countdown (gauge?). |
Using the same names as above:
Remove the default value from @ITime so that it remembers the count. The alarm should still be enabled when you log on if it was enabled when you logged off. If you w ... |
Topic: Triggering multiple times in a line |
Serentus
Replies: 22
Views: 25879
|
Forum: zMUD General Discussion Posted: Tue Jun 01, 2004 11:15 am Subject: Triggering multiple times in a line |
You may be able to use a reparse state trigger. |
Topic: problem with scroll |
Serentus
Replies: 1
Views: 2652
|
Forum: zMUD General Discussion Posted: Sat May 29, 2004 1:55 am Subject: problem with scroll |
Zmud uses a split screen for scrolling. The most common reason people have trouble with not being able to scoll is they have moved the split all the way up to the top.
Move you mouse to the top of ... |
|