Register to post in forums, or Log in to your existing account
 
:
Search found 45 matches for:
Page 1 of 2 Goto page 1, 2  Next
Author Message
  Topic: delaying Mapper
Guede

Replies: 3
Views: 6006

PostForum: zMUD General Discussion   Posted: Sun Oct 17, 2004 10:13 pm   Subject: delaying Mapper
As a workaround you could simply increase the timeout value for slowwalking.

View -> Preferences -> Slow Walking

The default is 5000 (5 seconds)

I have mine set at 150000 (15 seconds) ...
  Topic: Temporary variables?
Guede

Replies: 1
Views: 3835

PostForum: zMUD General Discussion   Posted: Tue Oct 05, 2004 10:17 pm   Subject: Temporary variables?
You can do a work around by having your trigger/alias script 'tidy up' after its done by using #UNVAR no?

#VAR tempVariable // Set up your temporary variable
// Do stuff using the temp variable a ...
  Topic: Wildcards in room names
Guede

Replies: 3
Views: 5845

PostForum: zMUD General Discussion   Posted: Tue Oct 05, 2004 10:10 pm   Subject: Wildcards in room names
I'm not exactly clear on why you would want a wildcard in a room name, but if you mean so that the mapper will follow you even if the roomname changes at random or based on time of day etc. (as on som ...
  Topic: Is onwalkend still in the process of beiong fixed?
Guede

Replies: 6
Views: 9866

PostForum: zMUD General Discussion   Posted: Tue Jul 06, 2004 5:32 pm   Subject: Is onwalkend still in the process of beiong fixed?
Walbert

Take another look at those commands: #WALK 250;#ALIAS .... will walk to room 250 *first* then set the onwalkend alias (by which time the walk has ended, if you try #walk 251 after you've ar ...
  Topic: How to DISPLAY white space?
Guede

Replies: 2
Views: 5765

PostForum: zMUD General Discussion   Posted: Sat Jul 03, 2004 2:06 pm   Subject: How to DISPLAY white space?
You could use the quote character.

#MXP ~__This is a <send "hello">test</send> (where _ represents a space)

There may be other (better/more exotic/flashier/easier) ways to do this th ...
  Topic: Can't Connect to Anything
Guede

Replies: 6
Views: 9651

PostForum: zMUD General Discussion   Posted: Tue Jun 29, 2004 5:11 pm   Subject: Can't Connect to Anything
Not sure if this has anything to do with it, but just a thought, do you have a Software Firewall installed? It may be the case that it sees: ooh, ZMUD trying to connect to the internet, hmm, I don't h ...
  Topic: Destinations
Guede

Replies: 6
Views: 7963

PostForum: zMUD General Discussion   Posted: Mon Jun 28, 2004 4:10 pm   Subject: Destinations
Not sure what you are asking but does: #WALK 16701 not do what you want it to do? It will execute using the current speedwalk mode.

-G-
  Topic: changing room descriptions
Guede

Replies: 1
Views: 4719

PostForum: zMUD General Discussion   Posted: Thu Jun 17, 2004 11:03 pm   Subject: changing room descriptions
The way round this was to set the 'force entry into room' property of the room so it effectively ignores the room name as you can only have one roomname per room. I can't think of any other way round ...
  Topic: Command Delay
Guede

Replies: 5
Views: 7809

PostForum: zMUD General Discussion   Posted: Fri Jun 04, 2004 5:35 pm   Subject: Command Delay
Yeah in the zp alieas change cmd to command.com

-G-
  Topic: Command Delay
Guede

Replies: 5
Views: 7809

PostForum: zMUD General Discussion   Posted: Thu Jun 03, 2004 11:04 pm   Subject: Command Delay
From within zMUD. I believe there was a topic about this recently where you can use COM and a ping program that acts as a server. Easiest way is to fire up a command prompt (depends what version of ...
  Topic: Command Delay
Guede

Replies: 5
Views: 7809

PostForum: zMUD General Discussion   Posted: Thu Jun 03, 2004 7:37 pm   Subject: Command Delay
Are you sure this isn't just the normal lag between you and the MUD server?

At a command prompt ping the mudserver and see what it fires back at you. If you're getting times of 200ms there's your ...
  Topic: Request: DEC2HEX
Guede

Replies: 6
Views: 8896

PostForum: zMUD General Discussion   Posted: Sun May 23, 2004 7:08 pm   Subject: Request: DEC2HEX
Just as a side note here, if you are confident with COM scripting (which I'm not) and VB Script you could use the VBScript Hex() function to do it for you.

-G-
  Topic: Variable.. referencing?
Guede

Replies: 3
Views: 5885

PostForum: zMUD General Discussion   Posted: Sun May 23, 2004 3:42 pm   Subject: Variable.. referencing?
#TR {(*) begins to swing his rapier over his head."} {#VAR {%concat("Beheading/",%1)} 1}

If it reads Guede begins to swing his rapier over his head.

It should set a variable called Beheading/Gue ...
  Topic: Stopping Math fnctns frm rounding to whole numbers
Guede

Replies: 3
Views: 6512

PostForum: zMUD General Discussion   Posted: Fri May 21, 2004 8:46 pm   Subject: Stopping Math fnctns frm rounding to whole numbers
Try using %float in your calculation.

i.e. %float(@totaldamage)/@numhits

-G-

Edited to include example.
  Topic: Zmud mapper problem
Guede

Replies: 4
Views: 6651

PostForum: zMUD General Discussion   Posted: Thu May 20, 2004 6:01 pm   Subject: Zmud mapper problem
Out of interest what version of zMUD are you using?

There was a problem with some older versions of the mapper that it would create a south exit if the room name contained an 's such as Bob's Room ...
  Topic: zone field in mob/eq database
Guede

Replies: 9
Views: 12300

PostForum: zMUD General Discussion   Posted: Fri May 14, 2004 5:15 pm   Subject: zone field in mob/eq database
Hmm,

Curious, I can't really offer any help but to say that I went into the database last night (I don't have one, but thought I'd create a new one to see what this problem was) and I get all the z ...
  Topic: #emote
Guede

Replies: 4
Views: 7552

PostForum: zMUD General Discussion   Posted: Sun May 09, 2004 3:58 pm   Subject: #emote
Not really much idea what you're talking about mate as your examples are obviously made up and not based on real input/output.

However, taking an absolutely wild stab in the dark, the only help I ...
  Topic: substitutions
Guede

Replies: 4
Views: 5194

PostForum: zMUD General Discussion   Posted: Fri May 07, 2004 8:37 pm   Subject: substitutions
Hi,

Try:

#TRIGGER {A large gate~(} {#SUB {2nd Gate of MT~(}}

Works fine here...One or two things to note though. If you use the mapper, update the room name so the mapper still follows. Em, ...
  Topic: Room Color
Guede

Replies: 3
Views: 7135

PostForum: zMUD General Discussion   Posted: Mon May 03, 2004 8:53 pm   Subject: Room Color
Hi,

#ALIAS croom {%maplocked(0);%roomcol(,%1);%maplocked(1)}

Type croom <colour> to colour the room for example: croom yellow will make the room you are currently in (the one the mapper sa ...
  Topic: Question script?
Guede

Replies: 5
Views: 7402

PostForum: zMUD General Discussion   Posted: Mon May 03, 2004 5:30 pm   Subject: Question script?
Hi,

Using Lightbulb's rather cool alias as a template and what you are saying (you're either on the same mud as me, or a different one running on a very similar codebase) edit the value part of the ...
  Topic: computer crash on a speedwalk!!!
Guede

Replies: 1
Views: 3518

PostForum: zMUD General Discussion   Posted: Fri Apr 30, 2004 11:29 pm   Subject: computer crash on a speedwalk!!!
Hi,

Speedwalks crashing is usually a sign that you need to update your network card drivers, try updating them and it *may* fix the problem.

HTH

-G-
  Topic: Problem with button without name
Guede

Replies: 8
Views: 9604

PostForum: zMUD General Discussion   Posted: Mon Apr 19, 2004 8:27 pm   Subject: Problem with button without name
Hi,

Try #GAUGE and see if it's listed there. (just a wild guess) Then #UNBUTTON <number> to get rid of it. I think...

-G-
  Topic: speedwalking in safe mode
Guede

Replies: 4
Views: 6813

PostForum: zMUD General Discussion   Posted: Mon Apr 12, 2004 2:25 pm   Subject: speedwalking in safe mode
Hi,

A wild stab in the dark here: When walking in SLOW mode does the room name appear on a line in it's own, yet when SAFE walking are the room name lines preceded by your prompt?

If so, this ...
  Topic: NEW ANNOUNCEMENT FROM ZUGG SOFTWARE!
Guede

Replies: 13
Views: 14304

PostForum: zMUD General Discussion   Posted: Thu Apr 01, 2004 4:50 pm   Subject: NEW ANNOUNCEMENT FROM ZUGG SOFTWARE!
quote:Originally posted by Vijilante
Ack, I was playing with a Knob and caught my fingers in the Jamb.


Vijilante - In the UK that could be taken totally out of context. You shouldn't be playing ...
  Topic: Exp needed to level monitor
Guede

Replies: 7
Views: 9195

PostForum: zMUD General Discussion   Posted: Thu Mar 11, 2004 12:04 am   Subject: Exp needed to level monitor
Hi,

#trig is DEAD!!
#var exp eX: (%d)
gt I need @exp EXP to level.

This will create a trigger that will fire on "is dead" and do nothing if you enter it like that at the command line. Howeve ...
 
Page 1 of 2 Goto page 1, 2  Next
All times are GMT
© 2009 Zugg Software. Hosted on Wolfpaw.net