Author |
Message |
Topic: Variable Expanding--How can I control the expanding only happen at Nth parsing? |
layman8
Replies: 3
Views: 5200
|
Forum: zMUD General Discussion Posted: Tue Mar 27, 2007 2:55 am Subject: Variable Expanding--How can I control the expanding only happen at Nth parsing? |
Well, actually I'm trying to put a bouch of alias, triggers in a scripts which will be done by an alias "mysettings"
So, when I input the command "mysettings", I don't want the inner alias, like "m ... |
Topic: Variable Expanding--How can I control the expanding only happen at Nth parsing? |
layman8
Replies: 3
Views: 5200
|
Forum: zMUD General Discussion Posted: Mon Mar 26, 2007 4:08 pm Subject: Variable Expanding--How can I control the expanding only happen at Nth parsing? |
Here is the case:
Providen id = myname
#alias mysettings {
#alias myspeicalalias1 { tell @id hi }
......
... |
Topic: How to get the room list which is linked to a specific room? |
layman8
Replies: 4
Views: 5970
|
Forum: zMUD General Discussion Posted: Wed Jan 18, 2006 2:07 am Subject: How to get the room list which is linked to a specific room? |
Thanks, Vijilante
I find there 3 kind of situation need to handle:
#show %roomexit(xxx)
n|j|really;funny
"n":For the first kind, %roomlink works
"j":No way to handle for this kind ... |
Topic: Many Tickers / Timewatch? |
layman8
Replies: 2
Views: 7015
|
Forum: zMUD General Discussion Posted: Mon Jan 16, 2006 8:03 am Subject: Many Tickers / Timewatch? |
A general way would like this:
Set your tick to 1 second and tick content to:
#add tn1 -1;#if (@tn1<1) {tn1=@ts1;tk1};
#add tn2 -1;#if (@tn2<1) {tn2=@ts2;tk2};
#add tn3 -1;#if (@tn3<1 ... |
Topic: How to get the room list which is linked to a specific room? |
layman8
Replies: 4
Views: 5970
|
Forum: zMUD General Discussion Posted: Mon Jan 16, 2006 7:59 am Subject: How to get the room list which is linked to a specific room? |
Also there's other custom directions like
#show %roomexit(2347)
#wa 4000;nu|s
It is really crazy! I can see all the linking room ids in map's room property, but I have no way to get them! |
Topic: How to get the room list which is linked to a specific room? |
layman8
Replies: 4
Views: 5970
|
Forum: zMUD General Discussion Posted: Mon Jan 16, 2006 7:54 am Subject: How to get the room list which is linked to a specific room? |
I' working on an auto-search robot on map, some times I need to get a list of room ids which is linked to a specific room.
I can not find a direct function for that, so I tried to use the two funct ... |
Topic: #step |
layman8
Replies: 2
Views: 5890
|
Forum: zMUD General Discussion Posted: Tue Dec 27, 2005 7:45 am Subject: #step |
Yes I also encounter some problems with #step. However it become normal after I close and re-open map. Should be some internal disorder...... |
Topic: Speedwalking problems with the Map |
layman8
Replies: 5
Views: 6330
|
Forum: zMUD General Discussion Posted: Mon Dec 05, 2005 9:11 am Subject: Speedwalking problems with the Map |
That article doesn't resolve everything.
Basically I encounter almost the same issue as Rodzeth. Sometimes the mapper becames buggy and just doesn't work as you wished.
For example, sometimes the sl ... |
Topic: Another Solution to Multi-byte triggering without using ?or* |
layman8
Replies: 10
Views: 14848
|
Forum: zMUD General Discussion Posted: Fri Dec 02, 2005 7:14 pm Subject: Another Solution to Multi-byte triggering without using ?or* |
Those picture links seems not valid anymore...I wonder if anyone have a copy of those and can help show them again? |
Topic: About foreign lauguage support (double byte charactor) |
layman8
Replies: 1
Views: 3005
|
Forum: zMUD General Discussion Posted: Thu Dec 01, 2005 2:07 am Subject: About foreign lauguage support (double byte charactor) |
I'm a estern lauguage speaker (which is double byte charactors).
I found some of charactors passing in Zmud721 as parameters will got messed up; however, this wouldn't happen when I use my old Zmud46 ... |
Topic: Can anyone explain more about "onwalkend"? |
layman8
Replies: 3
Views: 4433
|
Forum: zMUD General Discussion Posted: Wed Nov 30, 2005 3:20 pm Subject: Can anyone explain more about "onwalkend"? |
Good idea...I tried this and it works.
#ALIAS onroomenter {#IF (%inwalk) {} {#IF (@destroom=%roomnum) {onwalkend}}}
when walk end %inwalk return false, so I changed it to the false condition;
a ... |
Topic: Can anyone explain more about "onwalkend"? |
layman8
Replies: 3
Views: 4433
|
Forum: zMUD General Discussion Posted: Wed Nov 30, 2005 8:29 am Subject: Can anyone explain more about "onwalkend"? |
I search through help files and noticed that there's an auto-excute alias "onwalkend". I assigned some value to that alias, like:
#al onwalkend {'say onwalkend works!}
However, in 99% cases it doesn ... |
|