generated from Jaysyn/ModuleTemplate
15 lines
342 B
Plaintext
15 lines
342 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Check to see whether this object has not been spoken to before.
|
|
/////////////////////////////////////
|
|
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = GetLocalInt(OBJECT_SELF, "nTalked")!= 1;
|
|
return iResult;
|
|
}
|