13 lines
286 B
Plaintext
13 lines
286 B
Plaintext
// Initiates the conversation file for saving/loading outfits
|
|
|
|
#include "zzdlg_main_inc"
|
|
#include "inc_system_const"
|
|
|
|
void main()
|
|
{
|
|
object oPC = GetLastSpeaker();
|
|
object oDatabase = GetItemPossessedBy(oPC, PC_DATABASE);
|
|
|
|
_dlgStart(oPC, oDatabase, "outfit_menu", 1, 1, 1);
|
|
}
|