feat(PlayerMethods): Add Today/Yesterday Kills and Honor Points methods (#364)

This commit is contained in:
Aldori
2026-03-07 15:44:07 -05:00
committed by GitHub
parent c5efab32ed
commit c175aeca3f
2 changed files with 48 additions and 0 deletions

View File

@@ -489,7 +489,11 @@ ALERegister<Player> PlayerMethods[] =
{ "GetCompletedQuestsCount", &LuaPlayer::GetCompletedQuestsCount },
{ "GetArenaPoints", &LuaPlayer::GetArenaPoints },
{ "GetHonorPoints", &LuaPlayer::GetHonorPoints },
{ "GetTodayHonorPoints", &LuaPlayer::GetTodayHonorPoints },
{ "GetYesterdayHonorPoints", &LuaPlayer::GetYesterdayHonorPoints },
{ "GetLifetimeKills", &LuaPlayer::GetLifetimeKills },
{ "GetTodayKills", &LuaPlayer::GetTodayKills },
{ "GetYesterdayKills", &LuaPlayer::GetYesterdayKills },
{ "GetPlayerIP", &LuaPlayer::GetPlayerIP },
{ "GetLevelPlayedTime", &LuaPlayer::GetLevelPlayedTime },
{ "GetTotalPlayedTime", &LuaPlayer::GetTotalPlayedTime },