registerHookFunction('setTextPosition', 'setTextPosHook')
function setTextPosHook(text)
local owner = text:getLink(VTextOwner)
if owner:getId().tableId == eCharacters and owner:getName() == 'HERO' then
local pos = {x = game.ScrollPosition.x + (game.WindowResolution.x / 2), y = game.ScrollPosition.y + 50}
text:setValue(VTextPosition, pos)
return true
end
return false
end