0
I’m creating an RPG and I found a problem: I can’t create monsters with levels.
My code is like this:
var xp = 0;
function MonsterCriado(entidade){
Lvl = Math.floor(Math.random() * (11 - 1) + 1);
//quando um monstro nasce, é gerado um nivel para ele
}
function MonsterMorto(assassino, vitima){
xp += Math.floor(Math.random() * (18 - 3) + 3) * vitima.Lvl;
//quando eu matar o monstro eu qro ganhar xp baseado no seu nivel
}
The question that I’m unable to solve is: how to use the variable nivel
of the monster in function MonsterMorto
to earn Xp.
The variable
Lv1
Voce means?– jsbueno
Why
(11-1)+1
?– Marcus Becker
Ss, qro use variable lvl
– Mr. pro
(11-1)+1 returns Random between 10 and 1
– Mr. pro