Hi all,
Currently just having a mess around with a basic "level up" system, this is what I have currently:
if myPlayerCurrentXP >= 250 then
myPlayerLevel = myPlayerLevel + 1
PromptDuration("Congratulations, you have gained a level!" , 600)
end
when the player reaches 250 xp, the players level should be increased by 1, however, when this threshold has been hit, the PlayerLevel variable just keeps counting, forever instead of just increasing by just 1. Please can anyone help me with this?