mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-22 12:18:27 +00:00
[Quest API] Add GetAverageLevel() to Perl/Lua. (#2524)
# Perl - Add `$group->GetAverageLevel()` to Perl. # Lua - Add `group:GetAverageLevel()` to Lua. - Convert `group:GetHighestLevel()` from `int` to `uint32` in Lua. - Convert `group:GetLowestLevel()` from `int` to `uint32` in Lua.
This commit is contained in:
+3
-2
@@ -39,8 +39,9 @@ public:
|
||||
const char *GetLeaderName();
|
||||
bool IsLeader(Lua_Mob leader);
|
||||
int GroupCount();
|
||||
int GetHighestLevel();
|
||||
int GetLowestLevel();
|
||||
uint32 GetAverageLevel();
|
||||
uint32 GetHighestLevel();
|
||||
uint32 GetLowestLevel();
|
||||
void TeleportGroup(Lua_Mob sender, uint32 zone_id, uint32 instance_id, float x, float y, float z, float h);
|
||||
int GetID();
|
||||
Lua_Mob GetMember(int index);
|
||||
|
||||
Reference in New Issue
Block a user