PDA

View Full Version : A few questions


Broodhill
1st July 2002, 15:50
1. How to make so my NPC is talking?
2. How to change exit list?
3. How to get bgf, bof rsc files for cheese?
4. Anyone got program there I can edit bgf, roo, rsc andbof files?

I would be very happy if I got answers on my questions :)

Virtuosofriend
1st July 2002, 17:14
Dark will be back in a dew days.Then he would be able to answer to your questions.

DarkWing
1st July 2002, 22:10
The NPCs to the speak bring, is simple, read npc.txt simply enters into the server console table, already Your NPCs speak.
Or copy the individual lines into the server console table from the npc.txt.

That edit the exitlist is not very so simple, I can give only an example here.

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 ]

Programs to the edit, the different file types' search we also still.

Here is a Demo of a rsc editor:

http://mitglied.lycos.de/ghkgilde/downloads/resdoc.exe

i hope this help you.