Hola a todos, soy bastante nuevo en este tema de los foros y el scripting. Estoy tratando de hacer un sistema de niveles pero tengo una duda sobre como hacer de que eljugador gane experiencia matando a otros. Me guié por un sistema de niveles basado en zombies. Y era esto:
addEvent ( "onZombieWasted", true )
addEventHandler ( "onZombieWasted", root,
function ( theKiller )
exports.exp_system:addPlayerEXP ( theKiller, 10)
end
)
Y lo cambié a esto
addEvent ( "onPlayerWasted", true )
addEventHandler ( "onPlayerWasted", root,
function ( theKiller )
exports.exp_system:addPlayerEXP ( theKiller, 10)
end
)
Pero no me añade experiencia, alguien me podría ayudar? PD: Vuelvo a repetir, soy muy novato en esto jajaja