0 Emrys Posted June 6, 2009 Posted June 6, 2009 Go say2.java and where it sasy hero voice change the number to 25.
0 fdLP. Posted June 6, 2009 Posted June 6, 2009 k thx but this is the only solution ? why dont you search your packs core b4 you post ? chathandlers/ChatHeroVoice.java
0 Aeolous Posted June 8, 2009 Posted June 8, 2009 Old Code if (canSpeak) { CreatureSay cs = new CreatureSay(activeChar.getObjectId(), chatType, activeChar.getName(), text); for (L2PcInstance player : L2World.getInstance().getAllPlayers()) player.sendPacket(cs); } New Code if (canSpeak && Config.ALLOW_HERO_VOICE) { CreatureSay cs = new CreatureSay(activeChar.getObjectId(), chatType, activeChar.getName(), text); for (L2PcInstance player : L2World.getInstance().getAllPlayers()) player.sendPacket(cs); -------------------------------------------------------------------- Config.Java -------------------------------------------------------------------- Add This public static boolean L2JMOD_ENABLE_MANA_POTIONS_SUPPORT; + public static boolean ALLOW_HERO_VOICE; And This L2JMOD_ENABLE_MANA_POTIONS_SUPPORT = Boolean.parseBoolean(L2JModSettings.getProperty("EnableManaPotionSupport", "false")); + ALLOW_HERO_VOICE = Boolean.parseBoolean(L2JModSettings.getProperty("AllowHV", "false")); Last Step Go Datapack and put in l2jmods.properties AllowHv=False Cyao Amigo!
Question
O_o
How can i disable the hero voice ?
4 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now