Files
Anphillia_PRC8/_removed/x3_s3_palmount.nss
Jaysyn904 28cdb617b3 Initial commit
Adding all of the current content for Anphillia Unlimited.
2024-01-04 07:49:38 -05:00

32 lines
856 B
Plaintext

//::///////////////////////////////////////////////
//:: Summon Paladin Mount
//:: x3_s3_palmount
//:: Copyright (c) 2008 Bioware Corp.
//:://////////////////////////////////////////////
/*
This script handles the summoning of the paladin mount.
*/
//:://////////////////////////////////////////////
//:: Created By: Deva B. Winblood
//:: Created On: 2007-18-12
//:: Last Update: March 29th, 2008
//:://////////////////////////////////////////////
/*
On the module object set X3_HORSE_PALADIN_USE_PHB to 1 as an integer
variable if you want the duration to match that found in the 3.5 edition
version of the Player's Handbook.
*/
#include "x3_inc_horse"
void main()
{
object oPC=OBJECT_SELF;
if (GetSpellId()==SPELL_PALADIN_SUMMON_MOUNT)
{
SendMessageToPC(oPC, "Sorry, we don't support mounts currently.");
}
}