nice tutorial
lets sum up and see what we have learned today!
The common event should be asking
If hero level = 1 then
If hero XP > or = #Value then
Set hero level to 2
end if
end if
with some creative use of variables you won't have to repeat yourself
If #herolevel = #Nextlevel then
If #heroXP > or = #NextlevelXP then
Add 1 to #herolevel
Add 1 to #Nextlevel
multiply or add #Value to #NextlevelXP
' (you can do both by putting them on separate lines in the order you want them yo happen)
end if
end if
Enjoy!