[QUESTION] Rewards for Level UP

01/16/2018 13:07 TheRaimenLP#1
Hello all again! :)

I have one question about Rewards.
- It is possible to make some Rewards for every 10 levels for example?
If yes can you please tell me how i can do it/ or where i can do it?


Thanks for all answers!:handsdown::handsdown:
Raimen
01/16/2018 14:36 RualFX#2
would be possible with an if statement

if (Session.Character.Level = 1)
{
Session.Character.GiftAdd(ID, AMOUNT);
}
01/16/2018 17:02 EPvPAgen#3
Quote:
Originally Posted by RualFX View Post
would be possible with an if statement

if (Session.Character.Level = 1)
{
Session.Character.GiftAdd(ID, AMOUNT);
}
Wow, very good If u stay at Level 1 you can relog and receive the gift again and again and again
01/16/2018 17:04 RualFX#4
Quote:
Originally Posted by EPvPAgen View Post
Wow, very good If u stay at Level 1 you can relog and receive the gift again and again and again
Was just a quick solution. It is easy to find a better one :)
01/16/2018 20:16 0Lucifer0#5
Quote:
Originally Posted by EPvPAgen View Post
Wow, very good If u stay at Level 1 you can relog and receive the gift again and again and again
Not if he put it in the correct place. Btw the error here is the = instead of == and for this question it will be %10 == 0 instead of =1