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. |
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); } } |
if
Code:
quest::castspell($userid,2049); 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.