Adding GetLowestLevel()

This commit is contained in:
Athrogate 2016-11-09 04:28:57 -08:00
parent a29177de9e
commit 4af996e359
2 changed files with 6 additions and 0 deletions

View File

@ -82,6 +82,11 @@ int Lua_Group::GetHighestLevel() {
return self->GetHighestLevel();
}
int Lua_Group::GetLowestLevel() {
Lua_Safe_Call_Int();
return self->GetLowestLevel();
}
void Lua_Group::TeleportGroup(Lua_Mob sender, uint32 zone_id, uint32 instance_id, float x, float y, float z, float h) {
Lua_Safe_Call_Void();
self->TeleportGroup(sender, zone_id, instance_id, x, y, z, h);

View File

@ -40,6 +40,7 @@ public:
bool IsLeader(Lua_Mob leader);
int GroupCount();
int GetHighestLevel();
int 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);