mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-11 11:48:37 +00:00
[Quest API] Add Bandolier Methods (#4635)
This commit is contained in:
@@ -3269,6 +3269,26 @@ std::string Perl_Client_GetAccountBucketRemaining(Client* self, std::string buck
|
||||
return self->GetAccountBucketRemaining(bucket_name);
|
||||
}
|
||||
|
||||
std::string Perl_Client_GetBandolierName(Client* self, uint8 bandolier_slot)
|
||||
{
|
||||
return self->GetBandolierName(bandolier_slot);
|
||||
}
|
||||
|
||||
uint32 Perl_Client_GetBandolierItemIcon(Client* self, uint8 bandolier_slot, uint8 slot_id)
|
||||
{
|
||||
return self->GetBandolierItemIcon(bandolier_slot, slot_id);
|
||||
}
|
||||
|
||||
uint32 Perl_Client_GetBandolierItemID(Client* self, uint8 bandolier_slot, uint8 slot_id)
|
||||
{
|
||||
return self->GetBandolierItemID(bandolier_slot, slot_id);
|
||||
}
|
||||
|
||||
std::string Perl_Client_GetBandolierItemName(Client* self, uint8 bandolier_slot, uint8 slot_id)
|
||||
{
|
||||
return self->GetBandolierItemName(bandolier_slot, slot_id);
|
||||
}
|
||||
|
||||
void perl_register_client()
|
||||
{
|
||||
perl::interpreter perl(PERL_GET_THX);
|
||||
@@ -3412,6 +3432,10 @@ void perl_register_client()
|
||||
package.add("GetAugmentIDAt", &Perl_Client_GetAugmentIDAt);
|
||||
package.add("GetAugmentIDsBySlotID", &Perl_Client_GetAugmentIDsBySlotID);
|
||||
package.add("GetAutoLoginCharacterName", &Perl_Client_GetAutoLoginCharacterName);
|
||||
package.add("GetBandolierItemIcon", &Perl_Client_GetBandolierItemIcon);
|
||||
package.add("GetBandolierItemID", &Perl_Client_GetBandolierItemID);
|
||||
package.add("GetBandolierItemName", &Perl_Client_GetBandolierItemName);
|
||||
package.add("GetBandolierName", &Perl_Client_GetBandolierName);
|
||||
package.add("GetBaseAGI", &Perl_Client_GetBaseAGI);
|
||||
package.add("GetBaseCHA", &Perl_Client_GetBaseCHA);
|
||||
package.add("GetBaseDEX", &Perl_Client_GetBaseDEX);
|
||||
|
||||
Reference in New Issue
Block a user