32 lines
856 B
Plaintext
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.");
|
|
}
|
|
}
|