Register to post in forums, or Log in to your existing account
 
:
Search found 65 matches for:
Page 1 of 3 Goto page 1, 2, 3  Next
Author Message
  Topic: Most needed CMUD features?
Full Throttle

Replies: 112
Views: 197559

PostForum: CMUD General Discussion   Posted: Sun Feb 18, 2007 6:21 am   Subject: Most needed CMUD features?
ditto to what Obyron said. (like Obyron, I have not yet bought cmud)

i've heard "i have purchased a license for cmud, but i am not yet using it as my client" too many times. i'll wait to purchase a ...
  Topic: walk script
Full Throttle

Replies: 17
Views: 24983

PostForum: zMUD General Discussion   Posted: Sat Dec 23, 2006 5:26 am   Subject: walk script
I logged into Aardwolf and created the triggers.

delete all the above scripts and import the following

#class {Walking_Map}
#var room_target {0} {0}
#var where_ta ...
  Topic: walk script
Full Throttle

Replies: 17
Views: 24983

PostForum: zMUD General Discussion   Posted: Sat Dec 23, 2006 2:24 am   Subject: walk script
what is your mud ip and port?

i'll login and write triggers to storage the where_variable, room_variable, and zone_variable if possible
  Topic: walk script
Full Throttle

Replies: 17
Views: 24983

PostForum: zMUD General Discussion   Posted: Fri Dec 22, 2006 6:04 pm   Subject: walk script
try

#trigger {^&25 (*)} {#var where_target {%1}}

---

"script becomes somewhat screwed"

if you are saying that the current room in the mud is not ...
  Topic: Large Number Denominations
Full Throttle

Replies: 2
Views: 4075

PostForum: zMUD General Discussion   Posted: Fri Dec 22, 2006 8:31 am   Subject: Large Number Denominations
"zMUD is unable to handle numbers this large"

think of your input as a string not a number

#function unit_fn {@unit_fn_format(%concat(%repeat("0",%eval(16-%len(%1))),%1))}
#function unit_fn_for ...
  Topic: walk script
Full Throttle

Replies: 17
Views: 24983

PostForum: zMUD General Discussion   Posted: Fri Dec 22, 2006 3:55 am   Subject: walk script
to quote monospaced text, use BBCode "code" tag:
http://en.wikipedia.org/wiki/BBCode

---

if the first letter of the room name is on the 34th column then

#trigger {^&32 (*)} {#var where_t ...
  Topic: walk script
Full Throttle

Replies: 17
Views: 24983

PostForum: zMUD General Discussion   Posted: Thu Dec 21, 2006 9:12 pm   Subject: walk script
post a sample of your where output

is the beginning of the room name located at a fixed width?
is there a standard output above the line with the room name?

here is a sample of my muds where &l ...
  Topic: walk script
Full Throttle

Replies: 17
Views: 24983

PostForum: zMUD General Discussion   Posted: Thu Dec 21, 2006 1:27 am   Subject: walk script
Here is my zone walking script

#class {Walking_Map}
#var where_target {0} {0}
#var walk_search {0} {0}
#var walk_db_room {0} {0&# ...
  Topic: Using #SUB with spaces at the start.
Full Throttle

Replies: 4
Views: 8024

PostForum: zMUD General Discussion   Posted: Sat Dec 09, 2006 9:41 am   Subject: Using #SUB with spaces at the start.
try

#sub {%char(32)...}

or

#sub {%repeat(" ",3)...}
  Topic: TMC Mud List Rankings
Full Throttle

Replies: 57
Views: 124034

PostForum: Finished MUD Scripts   Posted: Sun Nov 26, 2006 7:15 pm   Subject: TMC Mud List Rankings
change "%key( %eval" to "%key (%eval" in your modified code, that fixed it here
  Topic: TMC Mud List Rankings
Full Throttle

Replies: 57
Views: 124034

PostForum: Finished MUD Scripts   Posted: Sun Nov 26, 2006 7:46 am   Subject: TMC Mud List Rankings
I believe the permission denied error is caused because tmc.zmud.txt is already assigned to another file.

If I type:

#file 3 tmc.zmud.txt;tmc

then I will get the permission denied error.

I ...
  Topic: complet noob need help making two scripts
Full Throttle

Replies: 5
Views: 7017

PostForum: zMUD General Discussion   Posted: Sun Nov 26, 2006 6:11 am   Subject: complet noob need help making two scripts
This is the trigger I use on my mud:

#var score {0} {0}
#trigger {^You have (%d) unused experience points.$} {
#if ((@score != 0) and (%eval(%1-@score) != 0)) {
#sub {You have %1 unused experien ...
  Topic: mapper doubling problem
Full Throttle

Replies: 1
Views: 3794

PostForum: zMUD General Discussion   Posted: Fri Nov 17, 2006 11:33 pm   Subject: mapper doubling problem
got it to work Embarassed

changed "#exec %db(@walk_db_path,%key)" to "#walk %key"
  Topic: mapper doubling problem
Full Throttle

Replies: 1
Views: 3794

PostForum: zMUD General Discussion   Posted: Fri Nov 17, 2006 4:50 pm   Subject: mapper doubling problem
I have a test map with only two rooms:

Map: #class Walking_Script
#var walk_db_room 0 0
#var walk_db_path 0 0
#alias walk {
#if %isnumber(%1) {#loopdb @walk_db_room {#if ...
  Topic: the #showdb command
Full Throttle

Replies: 2
Views: 4015

PostForum: zMUD General Discussion   Posted: Sun Nov 05, 2006 2:55 am   Subject: the #showdb command
#addkey comfound {Morgana=13 Iron at 230 each|Nassau=10 Iron at 400 each|Greeny=25 Iron at 350 each}
#showdb @comfound

Morgana: 13 Iron at 230 each
Nassau: 10 Iron at 400 each
Greeny: 25 Iron at ...
  Topic: Help Extracting Values from Data Record Variable
Full Throttle

Replies: 7
Views: 7529

PostForum: zMUD General Discussion   Posted: Thu Oct 12, 2006 4:37 pm   Subject: Help Extracting Values from Data Record Variable
add a second forall to above code if you wish to sort enemy_online in order of enemy_list

#forall @enemy_list {#if %ismember(%i,@enemy_online) {
#var enemy_online %delitem(%i,@enemy_online)
#var ...
  Topic: My gauge is gone...or is it?
Full Throttle

Replies: 15
Views: 17767

PostForum: zMUD General Discussion   Posted: Wed Oct 11, 2006 8:40 am   Subject: My gauge is gone...or is it?
You could add an id to each visible button then type

#unbutton %null

to delete the blank button.

If that doesn't work, then you going to have to follow MattLofton's advice.

Migration Guide ...
  Topic: My gauge is gone...or is it?
Full Throttle

Replies: 15
Views: 17767

PostForum: zMUD General Discussion   Posted: Wed Oct 11, 2006 7:11 am   Subject: My gauge is gone...or is it?
A gauge is a special type of button. so if the id is "hp" then try

#unbutton hp

to delete the guage, then recreate it.

Or list all buttons by typing

#button

then type

#unbutton [numb ...
  Topic: Help Extracting Values from Data Record Variable
Full Throttle

Replies: 7
Views: 7529

PostForum: zMUD General Discussion   Posted: Wed Oct 11, 2006 3:45 am   Subject: Help Extracting Values from Data Record Variable
#var enemy_list {EA|EB|EC|ED|EE}
#var player_online {EB|PA|PB|EC|PC|EE|YOU}

#var enemy_online %delitem("YOU",@player_online)
#forall @enemy_online {#if !(%ismember(%i,@enemy_list)) {#var enemy_on ...
  Topic: Hilighting Rooms on the map
Full Throttle

Replies: 3
Views: 3817

PostForum: zMUD General Discussion   Posted: Thu Oct 05, 2006 3:27 am   Subject: Hilighting Rooms on the map
highlights a room based on the room number:

#pathhigh %null 36

highlights a room or multiple rooms with the name @room in the current zone:

#call %mapfilter(%concat("ZoneID = ",%zonenum))
#l ...
  Topic: Flashing stopped
Full Throttle

Replies: 1
Views: 2805

PostForum: zMUD General Discussion   Posted: Sat Sep 16, 2006 12:59 am   Subject: Flashing stopped
#co 133 shouldn't blink

black 0
blue 1
green 2
cyan 3
red 4
magenta 5
brown 6
gray 7

hi 8
bold 128
under 256
blink 512
rev 1024

133=5+128 so #co 133 is bold purple

5+128+512=645 ...
  Topic: Invisible text (randomly chaning text colors)
Full Throttle

Replies: 1
Views: 3385

PostForum: zMUD General Discussion   Posted: Wed Sep 06, 2006 2:27 pm   Subject: Invisible text (randomly chaning text colors)
You could change the default colors, so black text is dark gray text.

preferences > color > foreground mapping
click the black box which opens the "Color" window
click the dark gray box (6t ...
  Topic: TMC Mud List Rankings
Full Throttle

Replies: 57
Views: 124034

PostForum: Finished MUD Scripts   Posted: Mon Sep 04, 2006 3:21 pm   Subject: TMC Mud List Rankings
Here is a version for Top Mud Sites.

http://www.topmudsites.com/index.shtml

I only stored the 'in' count.

Commands:

topmud
topmud <m>
topmud <m> <n>
topmudz
topmudxz ...
  Topic: TMC Mud List Rankings
Full Throttle

Replies: 57
Views: 124034

PostForum: Finished MUD Scripts   Posted: Mon Sep 04, 2006 3:32 am   Subject: TMC Mud List Rankings
I glanced at the html on topmudsites, the script is doable.

How does topmudsites calculate the rankings?

Would I need to store the 'in' and 'out' count, or just the 'in' count?
  Topic: 2 stringlists
Full Throttle

Replies: 1
Views: 3025

PostForum: zMUD General Discussion   Posted: Sat Sep 02, 2006 2:52 pm   Subject: 2 stringlists
try

#loop 1,%numitems(apple|banana|cherry) {#forall {donkey|elephant|falcon} {combine %item("apple|banana|cherry",%i) and %%i}}

combine apple and donkey
combine apple and elephant
combine appl ...
 
Page 1 of 3 Goto page 1, 2, 3  Next
All times are GMT
© 2009 Zugg Software. Hosted on Wolfpaw.net