12 lines
399 B
Plaintext
12 lines
399 B
Plaintext
void main()
|
|
{
|
|
object oUser = GetItemActivator();
|
|
|
|
//FloatingTextStringOnCreature("PGC3 Configurator activated.", oUser);
|
|
SendMessageToAllDMs("PGC3 Configurator activated.");
|
|
|
|
location lLoc = GetLocation(oUser);
|
|
object oSpeaker = CreateObject(OBJECT_TYPE_PLACEABLE, "pgc3configurator", lLoc);
|
|
AssignCommand(oUser, ActionStartConversation(oSpeaker));
|
|
}
|