[Quest API] Add GetNPCSpellsEffectsID() to Perl/Lua (#4117)

# Perl
- Add `$npc->GetNPCSpellsEffectsID()`.

# Lua
- Add `npc:GetNPCSpellsEffectsID()`.

# Notes
- Allows operator's to get an NPC's spell effects ID.
This commit is contained in:
Alex King
2024-02-24 23:51:37 -05:00
committed by GitHub
parent f57c37e9c5
commit a478fd2600
3 changed files with 17 additions and 4 deletions
+2 -1
View File
@@ -102,7 +102,7 @@ public:
int GetFollowID();
int GetFollowDistance();
bool GetFollowCanRun();
int GetNPCSpellsID();
uint32 GetNPCSpellsID();
int GetSpawnPointID();
float GetSpawnPointX();
float GetSpawnPointY();
@@ -184,6 +184,7 @@ public:
void SetBucket(std::string bucket_name, std::string bucket_value, std::string expiration);
bool GetNPCAggro();
void SetNPCAggro(bool in_npc_aggro);
uint32 GetNPCSpellsEffectsID();
};
#endif