[DiscordArchive] can it not be tostring?
[DiscordArchive] can it not be tostring?
Archived author: Yuppls • Posted: 2025-06-07T12:47:59.505000+00:00
Original source
can it not be tostring?
Archived author: Tereneckla • Posted: 2025-06-07T12:48:28.951000+00:00
Original source
guid in cpp has an IsEmpty method
Archived author: Yuppls • Posted: 2025-06-07T12:55:35.392000+00:00
Original source
```local function HasActivePetBlockPrestige(player)
local petGUID = tostring(player:GetPetGUID())
print("GetPetGUID(): " .. tostring(petGUID))
if not petGUID or petGUID == "0" or petGUID == nil then
print("NO BIG NUMBER, YOU CAN GO AHEAD")
return false
end
print("BIG NUMBER, REFUSED")
return true
end```
seems to have worked