Per
https://www.game-guru.com/news-post/gameguru-classic-december-bug-fixes-released
Third-person players can now pick up ammo
This does not work for me
I have the latest release
Build: 2022.03.14-March fixes
I see scripts like "ammo.lua" still do not allow third person
=======================================================================
function ammo_main(e)
PlayerDist = GetPlayerDistance(e)
if PlayerDist < 60 and g_PlayerHealth > 0 and
g_PlayerThirdPerson==0 then
Prompt("Collected ammo")
PlaySound(e,0)
AddPlayerAmmo(e)
Destroy(e)
ActivateIfUsed(e)
end
end
====================================================================