13 lines
494 B
Plaintext
13 lines
494 B
Plaintext
|
///////////////////////////////////////////////////////////////////////////////////
|
||
|
// Real Time Strategy - NWN - Voting Tool
|
||
|
//=================================================================================
|
||
|
// By Deva Bryson Winblood. 03/09/2003
|
||
|
///////////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
object oPC=GetItemActivator();
|
||
|
AssignCommand(oPC,ClearAllActions());
|
||
|
AssignCommand(oPC,ActionStartConversation(oPC,"rts_vote",TRUE));
|
||
|
}
|