mirror of
https://github.com/EQEmu/Server.git
synced 2026-09-01 07:26:36 +00:00
[Quest API] Add Group/Raid overloads to Perl/Lua. (#2526)
# Perl - Add `$raid->GetGroup(client)` to Perl. - Add `$raid->GetGroupMember(member_index)` to Perl. - Add `$raid->IsLeader(client)` to Perl. # Lua - Add `group:GroupMessage(sender, message)` to Lua.
This commit is contained in:
+3
-3
@@ -42,12 +42,12 @@ public:
|
||||
bool IsGroupLeader(const char *name);
|
||||
int GetHighestLevel();
|
||||
int GetLowestLevel();
|
||||
Lua_Client GetClientByIndex(int index);
|
||||
Lua_Client GetClientByIndex(int member_index);
|
||||
void TeleportGroup(Lua_Mob sender, uint32 zone_id, uint32 instance_id, float x, float y, float z, float h, uint32 group_id);
|
||||
void TeleportRaid(Lua_Mob sender, uint32 zone_id, uint32 instance_id, float x, float y, float z, float h);
|
||||
int GetID();
|
||||
Lua_Client GetMember(int index);
|
||||
int GetGroupNumber(int index);
|
||||
Lua_Client GetMember(int member_index);
|
||||
int GetGroupNumber(int member_index);
|
||||
bool DoesAnyMemberHaveExpeditionLockout(std::string expedition_name, std::string event_name);
|
||||
bool DoesAnyMemberHaveExpeditionLockout(std::string expedition_name, std::string event_name, int max_check_count);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user