View Full Version : Noob question about NPC's casting
kovouau
11-26-2006, 07:34 PM
can i use quest::castspell to make a npc cast on a) itself or b) other NPCs.... and if not. what is the correct syntax...
thanks for any help.
GeorgeS
11-29-2006, 02:49 PM
Just FYI, since I have not done any NPC quests, I do have a reference quide that was made by MWMDRAGON here.
http://66.159.225.58/eqemu/EQEmuQuestLexicon.pdf
GeorgeS
quest::castspell
Explaination: Makes the mob or NPC cast a certain spell on the creature with the indicated ID.
Full Command: quest::castspell(id,spellid)
ID = The ID of the creature the spell is to be cast on.
SpellID = The ID of the spell to cast taken from the spells_us.txt
Example:
# Casts the bind affinity spell on the hailing person.
sub EVENT_SAY
{
if($text=~/hail/i)
{
quest::castspell($userid,2049);
}
}
Cripp
11-29-2006, 02:56 PM
if quest::castspell($userid,2049); doesnt work i would try
quest::castspell($charid,2049);
vBulletin® v3.8.11, Copyright ©2000-2025, vBulletin Solutions Inc.