42 lines
1.0 KiB
Plaintext
42 lines
1.0 KiB
Plaintext
#include "shp_include"
|
|
|
|
void main()
|
|
{
|
|
fXScale = 0.75;
|
|
fYScale = 0.5;
|
|
fZScale = 0.5;
|
|
|
|
object oListener = GetNearestObjectByTag("listener",OBJECT_SELF,0);
|
|
|
|
// sBluePrint = "plc_weathmark";
|
|
// sBluePrint = "plc_dustplume";
|
|
// sCreateType = "ITEM";
|
|
// sBluePrint = "plc_flamemedium";
|
|
// sBluePrint = "plc_pileskulls";
|
|
|
|
if (GetLocalObject(OBJECT_SELF, "oShaperTarget") == OBJECT_INVALID)
|
|
{
|
|
oTarget = OBJECT_SELF;
|
|
}
|
|
else
|
|
{
|
|
oTarget = GetLocalObject(OBJECT_SELF, "oShaperTarget");
|
|
}
|
|
nDensity = 4;
|
|
nMessageType = 3;
|
|
|
|
lTarget = GetLocalLocation(OBJECT_SELF, "lShaperTargetLocation");
|
|
vTarget = GetPositionFromLocation ( lTarget );
|
|
vTarget.y = vTarget.y + 5.0;
|
|
|
|
lTarget = Location(GetArea(oTarget), vTarget, 90.0f);
|
|
|
|
// printLine(sMessage);
|
|
// fZOffset = fZOffset + 1.0f;
|
|
|
|
printMessage(GetLocalString(oListener, "sShaperMessage"));
|
|
|
|
// sBluePrint = "boulder";
|
|
// DelayCommand(1.5, printLine(GetStringUpperCase(GetLocalString(OBJECT_SELF, "sShaperMessage"))));
|
|
}
|