34 lines
839 B
Plaintext
34 lines
839 B
Plaintext
/* Purpose: Event handler script for module's OnItemActivated event.
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Levatine
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
|
|
|
|
object oItem = GetItemActivated();
|
|
object oPC = GetItemActivator();
|
|
object oActivator=GetItemActivator();
|
|
|
|
|
|
|
|
if(GetTag(oItem)=="guardianarune")
|
|
{
|
|
AssignCommand(oActivator, ActionStartConversation(oActivator, "guardiana_port", TRUE));
|
|
return;
|
|
}
|
|
|
|
if(GetTag(oItem)=="bustokerune")
|
|
{
|
|
AssignCommand(oActivator, ActionStartConversation(oActivator, "bustoke_port", TRUE));
|
|
return;
|
|
}
|
|
|
|
if(GetTag(oItem)=="bandorerune")
|
|
{
|
|
AssignCommand(oActivator, ActionStartConversation(oActivator, "bandore_port", TRUE));
|
|
return;
|
|
}
|
|
}
|