Register to post in forums, or Log in to your existing account
 
:
Search found 98 matches for:
Page 1 of 4 Goto page 1, 2, 3, 4  Next
Author Message
  Topic: Assistance please
Falan

Replies: 1
Views: 5125

PostForum: zMUD General Discussion   Posted: Sun Feb 06, 2005 11:23 am   Subject: Assistance please
Create a variable list of friend names,

#VAR Friends {Mike|Sally}

Then change the #IF statement to match your variable list,

#IF (%pos( @Friends, %1)) {#SUB {%time("h:nn am/pm") %trigger}} {# ...
  Topic: Need help setting up a tell-capture.
Falan

Replies: 2
Views: 7525

PostForum: zMUD General Discussion   Posted: Sun Jan 30, 2005 11:34 am   Subject: Need help setting up a tell-capture.
http://forums.zuggsoft.com/phpbb/viewtopic.php?t=15665&view=next&sid=6b2e78d20f09e130188da67ac9cc3a0f
  Topic: Conditional Within 1 line trigger
Falan

Replies: 3
Views: 6617

PostForum: zMUD General Discussion   Posted: Wed Jan 19, 2005 4:53 am   Subject: Conditional Within 1 line trigger
Did you try [[#COND]] options {prompt|nocr|within|param=1}?
  Topic: Variables
Falan

Replies: 2
Views: 5939

PostForum: zMUD General Discussion   Posted: Sun Jan 16, 2005 6:05 am   Subject: Variables
#TR {You get &current gold from the corpse.} {#MATH total (@current-@original)*300}

See say your total to your MUD?

#SAY @total //will display the current value of total without sending it ...
  Topic: Changing default text foreground color
Falan

Replies: 4
Views: 10220

PostForum: zMUD General Discussion   Posted: Sun Jan 16, 2005 5:21 am   Subject: Changing default text foreground color
Here is a couple lines of what I see in who short:

[ 10] Alexiusraven [ 22]-Cairne [ 6] Carinde [ 29]-Cullyn
[ 8] Cypher  ...
  Topic: Child windows, and settings.
Falan

Replies: 3
Views: 7845

PostForum: zMUD General Discussion   Posted: Sun Jan 16, 2005 5:18 am   Subject: Child windows, and settings.
Each window has its own settings. With the child window selected, goto View>Prefs>Fonts to change fonts for the child window. After, you must save the Settings for the child window for them to ...
  Topic: resizing windows from command line
Falan

Replies: 1
Views: 4097

PostForum: zMUD General Discussion   Posted: Thu Jan 13, 2005 8:04 am   Subject: resizing windows from command line
I haven't messed with it, but it looks like the [[#MAKEWINDOW]] command may be what you're looking for.
  Topic: Capturing Damage
Falan

Replies: 4
Views: 8774

PostForum: zMUD General Discussion   Posted: Thu Jan 13, 2005 7:53 am   Subject: Capturing Damage
#TR {You hit XX. ~[(%n)~] HP.} {#ADD DC %1}
#TR {You defeated your enemy.} {#ECHO Damage caused: @DC; #VAR DC ""}

That should add up and display the damage you did to your opp.
  Topic: Windows
Falan

Replies: 2
Views: 5776

PostForum: zMUD General Discussion   Posted: Mon Jan 10, 2005 9:45 am   Subject: Windows
goto Layout->Lock Layout and then Layout->Save Layout
  Topic: Shadows of Isildur mapper problem!!
Falan

Replies: 4
Views: 8928

PostForum: zMUD General Discussion   Posted: Sun Jan 09, 2005 6:03 am   Subject: Shadows of Isildur mapper problem!!
I think you'll need to #TAG the door info. There are a good amount of posts out there on it's usage.
  Topic: Info on %grep
Falan

Replies: 3
Views: 6871

PostForum: zMUD General Discussion   Posted: Mon Jan 03, 2005 10:08 pm   Subject: Info on %grep
bleh Mad
It was the "or something". Turns out there are 2 spaces at the end of each line in the file. A plain #SHOW dropped the spaces but a #SHOW with %grep kept them.Rolling Eyes
I adjusted the pa ...
  Topic: Info on %grep
Falan

Replies: 3
Views: 6871

PostForum: zMUD General Discussion   Posted: Mon Jan 03, 2005 9:48 pm   Subject: Info on %grep
Thank you for the reply, megamog75. As usual, I very much enjoy your input. Alas, your suggestions returned the same results. The #SH displays the text properly, but the triggers don't fire with th ...
  Topic: New Script Need help
Falan

Replies: 6
Views: 9351

PostForum: zMUD General Discussion   Posted: Mon Jan 03, 2005 6:35 am   Subject: New Script Need help
Use %s after the (%w) to capture all the white space.
{^(%w)%s- (*)$}
  Topic: Info on %grep
Falan

Replies: 3
Views: 6871

PostForum: zMUD General Discussion   Posted: Sun Jan 02, 2005 9:08 am   Subject: Info on %grep
I have a series of names and associated groups which I want to copy from a txt file and parse into stringlists. When I copy & paste (c&p) the info from the file into the "text" portion of thi ...
  Topic: capuring numbers into a variable?
Falan

Replies: 10
Views: 18650

PostForum: zMUD General Discussion   Posted: Thu Dec 30, 2004 6:40 am   Subject: capuring numbers into a variable?
#TR {Ship Password ~: &code} {open @ship @code}

Note: if there are multiple spaces before and/or after the colon (:) then add %s to the pattern.

#TR {Ship Password%s~:%s&code} {open @shi ...
  Topic: Syntax error msg
Falan

Replies: 14
Views: 13849

PostForum: zMUD General Discussion   Posted: Wed Dec 29, 2004 10:37 am   Subject: Syntax error msg
Did you try [[#CALL]] instead of #NOOP?
  Topic: Reducing value of a variable?
Falan

Replies: 8
Views: 15044

PostForum: zMUD General Discussion   Posted: Wed Dec 29, 2004 10:30 am   Subject: Reducing value of a variable?
#ALIAS afflict {
#addkey afflictions %1 1
#IF (@testnum < 0) {testnum = 0}
#add testnum 1
}

Used Pretty Print
[url=http://www.silverbridge.org/~varmel/zmud/syntax/]Syntax Colourizer
  Topic: Loot and sell script help please
Falan

Replies: 7
Views: 13693

PostForum: zMUD General Discussion   Posted: Wed Dec 29, 2004 5:17 am   Subject: Loot and sell script help please
%delitem]] does delete it from the list.

#ALIAS sitems {#FORALL @sell {sell %i;#VAR sell %delitem(%i,@sell);#WAIT 2000}}

#BUTTON 99 {Sell} {sitems}

I think you can combine the #FORALLs, and t ...
  Topic: Quick script question
Falan

Replies: 1
Views: 9199

PostForum: Finished MUD Scripts   Posted: Tue Dec 28, 2004 5:56 am   Subject: Quick script question
This is the Finished Scripts thread. Please post this question in the General Discussion thread. Also, a plethora of autokill or bot scripts may be found via use of the Search feature by searching, ...
  Topic: Timing issue for two-part alias (Achaea)
Falan

Replies: 2
Views: 6848

PostForum: zMUD General Discussion   Posted: Tue Dec 28, 2004 5:47 am   Subject: Timing issue for two-part alias (Achaea)
Use an #ALARM to delay checking @Afflictions.stupidity for however long is needed to match the Focus trigger (1 second, 2?).

acp_focus; #ALA +2 {#IF (@Afflictions.stupidity) {#IF (@AutoHerbs) {acp_ ...
  Topic: zMUD lite platform ? (i.e. no admin privs)
Falan

Replies: 6
Views: 9005

PostForum: zMUD General Discussion   Posted: Mon Dec 27, 2004 5:49 am   Subject: zMUD lite platform ? (i.e. no admin privs)
I was thinking if it is a possibility to have the parser as a stand alone entity that it would make a nice product. Right now, for the typical zMUDder to see if their shiny, brand-new super-script of ...
  Topic: zMUD lite platform ? (i.e. no admin privs)
Falan

Replies: 6
Views: 9005

PostForum: zMUD General Discussion   Posted: Sun Dec 26, 2004 5:11 am   Subject: zMUD lite platform ? (i.e. no admin privs)
Yeah, I just normally bust out Notepad and type it out. But, not being of sound mind on the intricacies of the script I was thinking it'd be nice to actually see if what I'm typing up works. Oh, wel ...
  Topic: zMUD lite platform ? (i.e. no admin privs)
Falan

Replies: 6
Views: 9005

PostForum: zMUD General Discussion   Posted: Thu Dec 23, 2004 10:13 am   Subject: zMUD lite platform ? (i.e. no admin privs)
Is there a way to have zMUD on a computer if you don't have admin privileges? Like a zMUD lite version with only the parsing/scripting features and no communications protocols (or whatever - does tha ...
  Topic: How can I search a key word on the new forums?
Falan

Replies: 4
Views: 13299

PostForum: Website or Forum problems   Posted: Tue Dec 21, 2004 5:54 am   Subject: How can I search a key word on the new forums?
It's under Site in the main menu bar.

-or-

Here's the [url=http://forums.zuggsoft.com/phpbb/search.php]link
  Topic: Mudlist Update Error
Falan

Replies: 5
Views: 7970

PostForum: zMUD General Discussion   Posted: Mon Dec 20, 2004 1:25 pm   Subject: Mudlist Update Error
Tried to update again.

Open zMUD, select New > Get > Update all Muds

It downloads all the MUD data and starts to process it, but ends up with an error:

"Access violation at address 0000 ...
 
Page 1 of 4 Goto page 1, 2, 3, 4  Next
All times are GMT
© 2009 Zugg Software. Hosted on Wolfpaw.net