14 lines
346 B
Plaintext
14 lines
346 B
Plaintext
void main()
|
|
{
|
|
|
|
object oPC = GetObjectByTag("cashan");
|
|
effect eTeleport = EffectVisualEffect(VFX_FNF_SUMMON_MONSTER_2);
|
|
|
|
ApplyEffectAtLocation( DURATION_TYPE_INSTANT, eTeleport, GetLocation(oPC));
|
|
|
|
ChangeToStandardFaction(OBJECT_SELF, STANDARD_FACTION_HOSTILE);
|
|
|
|
AssignCommand(oPC,JumpToLocation(GetLocation(GetWaypointByTag( "element_1" ))));
|
|
|
|
}
|