5.2

04/08/2019 08:21 sergeu1988#1
Hello. Such a question: how in epic 5.2 to make the line of quests work and when you raise lvl gifts were given out? thanks in advance
04/08/2019 17:06 thefear511#2
Quote:
Originally Posted by sergeu1988 View Post
when you raise lvl gifts were given out
on_player_level_up.lua
04/08/2019 17:56 sergeu1988#3

not working 5.2
04/08/2019 21:43 c1ph3r#4
The error is sitting in front of the pc! It's working if you will do it correct!

Change:
Code:
local lv = get_value( "level" )
Into:
Code:
local i = get_value( "level" )
You never declared “i“ so your code won't work. The player level is stored in “lv“! Change “lv“ to “i“ and it will work!