|
zeldaber Newbie
Joined: 18 Oct 2008 Posts: 3
|
Posted: Sat Oct 18, 2008 2:57 pm
mapper in cmud |
In the mapper (cmud) Is it possible to easily change a colour of a room (or some other system) to show that i have been in the room. This would be when mapping mazes etc. I know you can change it in room properties but is there a shortcut
thanks |
|
|
|
MattLofton GURU
Joined: 23 Dec 2000 Posts: 4834 Location: USA
|
Posted: Sat Oct 18, 2008 9:02 pm |
a shortcut? Not really. You can use the %roomcol() function, though this is dependant on the blue dot being accurately placed (mazes and tricky places can sometimes interfere, and sometimes #FIND doesn't correctly place it in such areas).
#CALL %roomcol(vnum of room (leave blank for current room), color you want) |
|
_________________ EDIT: I didn't like my old signature |
|
|
|
Articval Novice
Joined: 01 Jun 2005 Posts: 47
|
Posted: Sun Oct 19, 2008 8:57 am |
I use:
#NOOP %roomcol( vnum of room, "pink")
works great ^_^ |
|
|
|
Rahab Wizard
Joined: 22 Mar 2007 Posts: 2320
|
Posted: Mon Oct 20, 2008 1:26 pm |
As has been said in a couple other posts recently, don't use #noop to execute functions. Use #call, e.g.:
#CALL %roomcol( vnum of room, "pink") |
|
|
|
|
|