Initial upload
Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
This commit is contained in:
10
_module/nss/ty_jumpportal2.nss
Normal file
10
_module/nss/ty_jumpportal2.nss
Normal file
@@ -0,0 +1,10 @@
|
||||
void main()
|
||||
{
|
||||
effect eUsePortal = EffectVisualEffect(VFX_FNF_SUMMON_CELESTIAL);
|
||||
object oUser = GetLastUsedBy();
|
||||
location lJumpSpot = GetLocation(oUser);
|
||||
location lJump2Spot = GetLocation(GetObjectByTag("ty_portal1"));
|
||||
|
||||
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eUsePortal, lJumpSpot);
|
||||
AssignCommand(oUser, ActionJumpToLocation(lJump2Spot));
|
||||
}
|
||||
Reference in New Issue
Block a user