This commit is contained in:
2200151533 2024-01-25 02:13:28 +08:00
parent ab05a8c0ca
commit 4e4d4bc3a7
2 changed files with 15 additions and 2 deletions

View File

@ -12,6 +12,18 @@ void ESP()
DrawUActorComponent(Config.GetPalPlayerCharacter()->ShooterComponent->GetHasWeapon()->InstanceComponents, ImColor(128, 0, 0));
}
}
if (Config.UCIM != NULL)
{
SDK::TArray<SDK::APalCharacter*> T = {};
Config.UCIM->GetAllPalCharacter(&T);
if (T.IsValid())
{
for (int i = 0; i < T.Num(); i++)
{
ImGui::GetBackgroundDrawList()->AddText(nullptr, 16, ImVec2(10, 10 + (i * 30)), ImColor(128,0,0), T[i]->GetFullName().c_str());
}
}
}
}
}
void DrawUActorComponent(SDK::TArray<SDK::UActorComponent*> Comps,ImColor color)

View File

@ -6,6 +6,8 @@
SDK::FPalDebugOtomoPalInfo palinfo = SDK::FPalDebugOtomoPalInfo();
SDK::TArray<SDK::EPalWazaID> EA = { 0U };
void AddItem(SDK::UPalPlayerInventoryData* data,char* itemName, int count)
{
SDK::UKismetStringLibrary* lib = SDK::UKismetStringLibrary::GetDefaultObj();
@ -46,7 +48,6 @@ void SpawnPal(char* PalName,int rank, int lvl = 1)
}
}
}
//Talk: Teleport or Shop anywhere Config.GetPalPlayerCharacter()->GetPalPlayerController()->Transmitter->Character->NotifyTalkStart_ToServer()
void AnyWhereTP(SDK::FVector& vector,bool IsSafe)
{
if (!IsSafe)
@ -128,7 +129,7 @@ namespace DX11_Base {
namespace Tabs {
void TABPlayer()
{
//<2F>л<EFBFBD><D0BB><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><D2BB>
ImGui::Checkbox("SpeedHack", &Config.IsSpeedHack);