Initial Upload

Initial Upload
This commit is contained in:
Jaysyn904
2023-08-08 16:22:17 -04:00
parent 51a2a1286e
commit 22947ad4b6
6511 changed files with 6765205 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
void main()
{
object oPC = GetEnteringObject();
if (GetItemPossessedBy(oPC, "dragoncall")== OBJECT_INVALID)
{
string oDeny= "You see a dragon circling high above, He notices you but makes no attempt to land.........";
SendMessageToPC(oPC, oDeny);
return;
}
{
effect eArrive = EffectAppear();
object oWP = GetObjectByTag("wp_landing");
object oFlyer = GetObjectByTag("DRAGON_FLYER");
AssignCommand( oFlyer, ClearAllActions());
DelayCommand( 0.5, ApplyEffectToObject( DURATION_TYPE_TEMPORARY, eArrive, oFlyer, 6.0 ));
AssignCommand( oFlyer, ActionJumpToObject( oWP ));
}
}