LoT_PRC8/_module/nss/pgs_marker_ou.nss
Jaysyn904 ec287507a1 Initial upload
Initial upload.
2023-09-25 21:32:17 -04:00

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);
}