Package com.herocraftonline.heroes.characters

Examples of com.herocraftonline.heroes.characters.Hero


        if (heroExp == 0) {
            return;
        }

        Hero hero = heroes.getCharacterManager().getHero(event.getPlayer());

        if (hero.hasParty()) {
            hero.getParty().gainExp(heroExp, HeroClass.ExperienceType.EXTERNAL, event.getPlayer().getLocation());
        } else {
            hero.gainExp(heroExp, HeroClass.ExperienceType.EXTERNAL, event.getPlayer().getLocation());
        }
    }
View Full Code Here

TOP

Related Classes of com.herocraftonline.heroes.characters.Hero

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.