Author |
Message |
Topic: Liscensing Problem / cannot open ZMud |
Christopher
Replies: 4
Views: 8243
|
Forum: zMUD General Discussion Posted: Tue Jul 20, 2004 10:39 pm Subject: Liscensing Problem / cannot open ZMud |
On this same subject, does anyone know what error code -12 means? I know -17 and 23, never seen this one before. |
Topic: Trigger(s) randomly stop working |
Christopher
Replies: 8
Views: 8848
|
Forum: zMUD General Discussion Posted: Mon May 10, 2004 12:41 am Subject: Trigger(s) randomly stop working |
Thanks Lightbulb,
I know there's a built-in tick timer, the problem is that I don't know how to use it on a mud that's doesn't have consistent ticks. I guess I'll think about it some more. If any ... |
Topic: Trigger(s) randomly stop working |
Christopher
Replies: 8
Views: 8848
|
Forum: zMUD General Discussion Posted: Sat May 08, 2004 3:42 pm Subject: Trigger(s) randomly stop working |
Just as a follow up, one fix I made was clearing the accumulated tick lengths in the tick_list variable. Apparently I had over 1500 items in there, which slowed Zmud down to a crawl computationally. ... |
Topic: Database/addkey question |
Christopher
Replies: 5
Views: 6149
|
Forum: zMUD General Discussion Posted: Fri May 07, 2004 9:06 pm Subject: Database/addkey question |
Again, thanks for the input, ideally, I'm trying to learn how to build databases and how to access and query them. I'm thinking that a database of stats to train would be a good place to start, I was ... |
Topic: Database/addkey question |
Christopher
Replies: 5
Views: 6149
|
Forum: zMUD General Discussion Posted: Fri May 07, 2004 7:43 pm Subject: Database/addkey question |
Nexela,
You are a scholar and a gentleman, that seems to have done the trick, now I just need to figure out the minmize and display part.
Thanks much! |
Topic: Database/addkey question |
Christopher
Replies: 5
Views: 6149
|
Forum: zMUD General Discussion Posted: Fri May 07, 2004 6:53 pm Subject: Database/addkey question |
I'm trying to learn how to use databases in Zmud and my test case seems simple but I'm struggling with it. I would like to read in my stat training values, and then have an output of which stat is ch ... |
Topic: Trigger(s) randomly stop working |
Christopher
Replies: 8
Views: 8848
|
Forum: zMUD General Discussion Posted: Fri May 07, 2004 5:21 pm Subject: Trigger(s) randomly stop working |
Incidentally, what I mean by lag is that the #gag command works perfectly until I actually tick, so I don't see any of the smaller hp/sp adjustments, but if I'm looking at the screen, when I tick, I s ... |
Topic: Trigger(s) randomly stop working |
Christopher
Replies: 8
Views: 8848
|
Forum: zMUD General Discussion Posted: Fri May 07, 2004 5:09 pm Subject: Trigger(s) randomly stop working |
Sorry for the carelessness, I'd forgotten about the built-in alias calls. The compete script is:
#gag
hp=%1
hpmax=%2
sp=%3
spmax=%4
#math hpercent {(%1*100)/%2}
#math spercent {(%3*100)/%4}
... |
Topic: Trigger(s) randomly stop working |
Christopher
Replies: 8
Views: 8848
|
Forum: zMUD General Discussion Posted: Wed May 05, 2004 7:03 am Subject: Trigger(s) randomly stop working |
My hp/sp scanner and tick timer is as such:
hp: (%d)?(%d)? sp: (%d)?(%d)?
With a command line:
#gag
hp=%1
hpmax=%2
sp=%3
spmax=%4
#math hpercent {(%1*100)/%2}
#math spercent {(%3*100)/%4}
... |
Topic: Reporting in multiple formats |
Christopher
Replies: 3
Views: 4182
|
Forum: zMUD General Discussion Posted: Sat May 01, 2004 3:21 pm Subject: Reporting in multiple formats |
Thank you very much! That did the trick nicely, I seem to recall the %-1 trick from somewhere, but I had looked through all the helps/documentation and nothing seemed to fit. Is there a resource tha ... |
Topic: Reporting in multiple formats |
Christopher
Replies: 3
Views: 4182
|
Forum: zMUD General Discussion Posted: Sat May 01, 2004 8:35 am Subject: Reporting in multiple formats |
I have an alias to report stuff to my party or to my screen:
msg
#if (@scon=1) {p' %1} {#echo %1}
The problem is that in order to get the alias to spam everything, i need to enclose the message ... |
|