PDA

View Full Version : New rooms and list


CheRny
11th June 2002, 21:30
1. How to create a new room?
I want to create and put in the game a new room. For exemple, I do this command:

create object tossmithy

Now I have room, but I am not able to go there... and I don't know how to put this room in the game. Any help?

2. How to create a new list? I wanna get a new list, I do this:

create list [what do I need to put there]

Simple, create list object 312, object 315 ans so on... doesn't work. What do I do wrong?

I'll be apritiate any help...

DarkWing
12th June 2002, 03:54
Hello,

now i can only say, how you can create a list, in this example
Paddoks sale list, the objects the i have use, are form other
keepers sale lists.
Wichtig um Listen zu erzeugen:
==============================

Erste Teilliste:

> create list OBJECT 77 nil 0
Created list node 63426.
> create list OBJECT 564 list 63426
Created list node 63430.
> create list OBJECT 565 list 63430
Created list node 63431.
> show list 63431
[ OBJECT 565, OBJECT 564, OBJECT 77 ]

Zweite Teilliste:

> create list $ 0 nil 0
Created list node 63467.
> show list 63467
[ $ 0 ]
> > create list $ 0 list 63467
Unknown command; try 'help'.
> create list $ 0 list 63467
Created list node 63504.
> show list 63504
[ $ 0, $ 0 ]
> create list $ 0 list 63504
Created list node 63508.
> show list 63508
[ $ 0, $ 0, $ 0 ]

Gesamtliste:

> create list list 63431 list 63508
Created list node 63512.
> show list 63512
[ [ OBJECT 565, OBJECT 564, OBJECT 77 ] , $ 0, $ 0, $ 0 ]

i hope this help you.

CheRny
12th June 2002, 10:40
Thanks a lot...