EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Quests::Q&A (https://www.eqemulator.org/forums/forumdisplay.php?f=599)
-   -   Noob question about NPC's casting (https://www.eqemulator.org/forums/showthread.php?t=21960)

kovouau 11-26-2006 07:34 PM

Noob question about NPC's casting
 
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
Code:

quest::castspell($userid,2049);
doesnt work i would try
Code:

quest::castspell($charid,2049);


All times are GMT -4. The time now is 09:48 PM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.