Never work with percentage in your code, here is a better way:
The player has 2 instance variables: health and max health
Health = 300
MaxHealth = 400
+ On Pickup bonus Health
-> MaxHealth * 1,3;
//Now the event to show the right percentage of life
+ Every Tick
-> Set Text(Life) to round(Health / MaxHealth * 100)