26 lines
843 B
Plaintext
26 lines
843 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Name: pgs_marker_ou
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
OnUsed event for territory markers.
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Samius Maximus
|
|
//:: Created On:
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
object oPlayer = GetLastUsedBy();
|
|
|
|
//--------------------------------------------
|
|
//Marker was not used - remove claim option.
|
|
//--------------------------------------------
|
|
SetLocalInt (oPlayer, "Territory_Marker_Used", TRUE);
|
|
|
|
//--------------------------------------------
|
|
//Now begin the territory conversation.
|
|
//--------------------------------------------
|
|
ActionStartConversation (oPlayer, "pgs_territory", TRUE, FALSE);
|
|
}
|