Extra Lives+1 he gives me +50 some help ?
-- LUA Script - precede every function and global member with lowercase name of script + '_main'
-- Player Collects Health
function health2_init(e)
end
function health2_main(e)
PlayerDist = GetPlayerDistance(e)
if PlayerDist < 80 and g_PlayerHealth > 0 then
PromptDuration("Bonus life",3000)
PlaySound(e,0)
--AddPlayerHealth(e)
SetPlayerLives(e,g_PlayerLives+1)
Destroy(e)
ActivateIfUsed(e)
end
end