Jump to content

Home

lost my script of 001ebo on enter script


randydg

Recommended Posts

I somehow lost my source script for 001ebo onenter script that starts the dialog "intro" and sence the forums is missing posts i can't find the one stoffe -mkb- posted awhile back.

and i need it so i can edit it to put the roomanimation thing into the script for the backdrop.

Link to comment
Share on other sites

I don't know exactly what you want to do, but try:

 

#include "k_inc_debug"
#include "k_inc_utility"

void main()
{
object oEnter = GetEnteringObject();
object oPC = GetFirstPC();

if (oEnter == oPC)
{
	AssignCommand(oPC, ActionStartConversation(OBJECT_SELF, "intro", TRUE, 0));
}
else
{
	return;
}
}

I'm pretty sure that will start a conversation with the area entered, which means (I think) basically the PC is conversing with themself in a private, cinematic conversation.

 

***edit***

You could also try DeNCS to decompile the version you have now.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...