mirror of
https://github.com/DumbDev69420/EscapeTheBackrooms_Internal.git
synced 2024-12-22 14:37:30 +08:00
Fixed some annoying stuff
This commit is contained in:
parent
1b9ac3f30a
commit
b8e4ef7c04
@ -2606,9 +2606,9 @@ namespace Cheat {
|
||||
|
||||
int isOwner = StateBP->PlayerId == PlayerStuff::PlayerList[0].PlayerID && StateBP->PlayerId < PlayerController->PlayerState->PlayerId;
|
||||
|
||||
std::string Role = isOwner ? " (Owner)" : "";
|
||||
std::wstring Role = isOwner ? L" (Owner)" : L"";
|
||||
|
||||
UsefullFuncs::DrawBoxOnActor(Canvas, CurrentEnemy, isOwner ? UsefullFuncs::RGBATOFLinear(0, 255, 255, 255) : UsefullFuncs::RGBATOFLinear(0, 255, 0, 255), true, UsefullFuncs::stringToWideString(std::string(StateBP->PlayerNamePrivate.ToString() + Role)).c_str());
|
||||
UsefullFuncs::DrawBoxOnActor(Canvas, CurrentEnemy, isOwner ? UsefullFuncs::RGBATOFLinear(0, 255, 255, 255) : UsefullFuncs::RGBATOFLinear(0, 255, 0, 255), true, std::wstring(PlayerStuff::Player::SanitizeWString(StateBP->PlayerNamePrivate.ToWString()) + Role).c_str());
|
||||
}
|
||||
|
||||
|
||||
|
@ -167,13 +167,7 @@ namespace PlayerStuff {
|
||||
this->IsSpectator = true;
|
||||
}
|
||||
|
||||
int Sizecc = name.size();
|
||||
for (size_t i = 0; i < 14; i++)
|
||||
{
|
||||
if (i >= Sizecc) break;
|
||||
|
||||
Sanitizedname += name[i];
|
||||
}
|
||||
this->Sanitizedname = SanitizeWString(Name);
|
||||
|
||||
auto LocString = LocToWString(location);
|
||||
|
||||
@ -196,6 +190,21 @@ namespace PlayerStuff {
|
||||
}
|
||||
}
|
||||
|
||||
static std::wstring SanitizeWString(std::wstring Input) {
|
||||
std::wstring output = L"";
|
||||
|
||||
int Sizecc = Input.size();
|
||||
|
||||
for (size_t i = 0; i < 14; i++)
|
||||
{
|
||||
if (i >= Sizecc) break;
|
||||
|
||||
output += Input[i];
|
||||
}
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
static std::vector<std::wstring> LocToWString(SDK::FVector loc) {
|
||||
std::vector<std::wstring> Location;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user