13 lines
297 B
Plaintext
13 lines
297 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oActivator = GetItemActivator();
|
||
|
object oItem = GetItemActivated();
|
||
|
string sTag = GetTag(oItem);
|
||
|
|
||
|
// Shape change stone.
|
||
|
if (sTag=="SHAPE_CHANGE")
|
||
|
{
|
||
|
AssignCommand(oActivator, ActionStartConversation(oActivator, "sd_appear_conv", TRUE));
|
||
|
}
|
||
|
}
|