[116] in Coldmud discussion meeting

root meeting help first previous next last

Re: New Coldmud ...

daemon@ATHENA.MIT.EDU (Mon Dec 13 14:49:07 1993 )

Date: Mon, 13 Dec 1993 12:25:57 -0600 (MDT)
From: Lynx <BRANDON@cc.usu.edu>
To: coldstuff@MIT.EDU
X-Vms-To: COLDSTUFF

> ./coldmud world > log &     did not stop the messages from coming
> to my own terminal.  any ideas?

do:

  ./coldmud ./world >>& logfile &

> Created new room $room3.
> ERROR: $exit.spawn called with three arguments, requires one.
> Thrown by interpreter opcode MESSAGE.
> ~numargs in $nowhere.make_exit (defined on $room), line 8
> ~methoderr in $programmer1.dig_to_cmd (defined on $builder), line 10
> ~methoderr in $programmer1.parse_command (defined on $user), line 10
> ~methoderr in $programmer1.parse_command (defined on $programmer), line 12

hee, this is because greg changed the way .init worked in world 4.0 from 3.0,
but he forgot to change it on exits.  Just change the init to be:

pass();
if (!inited) {
  <what it sets>
  inited = 1;
}

then:

;$exits.add_parameter('inited);

and it should work.

> Also, the world-0.4 is pretty sparse, anyone got a decent DB built
> that I can scarf up? I'm not in the mood to start from almost scratch
> unless I have to.

Chaos will be releasing his core soon, and i'll be merging it into the Cold
Dark.  Other than that i'm not sure if anybody is working on anything...

> I'm willing to create a manual for coding (since I'll be learning it at the
> same time, should be a good beginner's intro by the time I get done.) so
> I'm looking for as much solid stuff to build a good core as I can get.

Did you see Greg's Manual?

-Brandon