19 lines
683 B
Plaintext
19 lines
683 B
Plaintext
////////////////////////////////////////////////////////////////////////////////
|
|
// Sentinel Column Maker
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
object oPC=GetItemActivator();
|
|
location lLoc=GetItemActivatedTargetLocation();
|
|
object oItem=GetItemActivated();
|
|
string sRes="sentinelcolumn";
|
|
object oPlace=CreateObject(OBJECT_TYPE_PLACEABLE,sRes,lLoc);
|
|
string sID=GetLocalString(oPC,"sTeamID");
|
|
if (oPlace!=OBJECT_INVALID)
|
|
{ // column exists
|
|
DestroyObject(oItem);
|
|
SetLocalString(oPlace,"sTeamID",sID);
|
|
SendMessageToPC(oPC,"A Sentinel Column was created.");
|
|
} // column exists
|
|
}
|