Jump to content
  • 0

[HELP]Hero Skills Subclass But With Flase True On Configs...


sweetparanoid

Question

Hi...I Can Make Easy Hero Skills On Subclass...With Only Delete Something...But..If I want To Make It With Flash True. ? So I Can Change When I Want...

I Search I The Forum But Nothing...Anyone Can Help Me I Would Appreciate That...

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0
Index: E:/L2j Development/workspace/Archid-Game/src/com/l2jarchid/gameserver/model/actor/instance/L2PcInstance.java
===================================================================
--- E:/L2j Development/workspace/Archid-Game/src/com/l2jarchid/gameserver/model/actor/instance/L2PcInstance.java	(.../E:/L2j Development/workspace/Archid-Game/src)	(revision 28)
+++ E:/L2j Development/workspace/Archid-Game/src/com/l2jarchid/gameserver/model/actor/instance/L2PcInstance.java	(.../http://svn.xp-dev.com/svn/g1svn/trunk/G1-GameServer/src)	(working copy)
@@ -8325,7 +8325,7 @@

	public void setHero(boolean hero)
	{
-		if (hero && _baseClass == _activeClass)
+		if (hero && _baseClass == _activeClass || Config.HERO_SKILL_ON_SUBLCASS)
		{
			for (L2Skill s : HeroSkillTable.GetHeroSkills())
				addSkill(s, false); //Dont Save Hero skills to database
@@ -8335,6 +8335,7 @@
			for (L2Skill s : HeroSkillTable.GetHeroSkills())
				super.removeSkill(s); //Just Remove skills from nonHero characters
		}
+		
		_hero = hero;

		sendSkillList();
Index: E:/L2j Development/workspace/Archid-Game/src/com/l2jarchid/Config.java
===================================================================
--- E:/L2j Development/workspace/Archid-Game/src/com/l2jarchid/Config.java	(.../E:/L2j Development/workspace/Archid-Game/src)	(revision 28)
+++ E:/L2j Development/workspace/Archid-Game/src/com/l2jarchid/Config.java	(.../http://svn.xp-dev.com/svn/g1svn/trunk/G1-GameServer/src)	(working copy)
@@ -651,7 +651,8 @@
    public static int MINIMUN_UPDATE_TIME;
    public static boolean CHECK_KNOWN;
    public static int KNOWNLIST_FORGET_DELAY;
-
+    public static boolean HERO_SKILL_ON_SUBLCASS;
+    
    // ===============================================================================================
    private static void loadOptionsConfig()
    {
@@ -659,6 +660,7 @@
    	try
		{
            L2Properties optionsSettings = new L2Properties(OPTIONS_FILE);
+            HERO_SKILL_ON_SUBLCASS          = Boolean.parseBoolean(optionsSettings.getProperty("HeroSkillsOnSub", "false"));
            EVERYBODY_HAS_ADMIN_RIGHTS      = Boolean.parseBoolean(optionsSettings.getProperty("EverybodyHasAdminRights", "false"));
            DEBUG                           = Boolean.parseBoolean(optionsSettings.getProperty("Debug", "false"));
            ASSERT                          = Boolean.parseBoolean(optionsSettings.getProperty("Assert", "false"));
Index: E:/L2j Development/workspace/Archid-Game/config/options.properties
===================================================================
--- E:/L2j Development/workspace/Archid-Game/config/options.properties	(.../E:/L2j Development/workspace/Archid-Game/config/options.properties)	(revision 28)
+++ E:/L2j Development/workspace/Archid-Game/config/options.properties	(.../http://svn.xp-dev.com/svn/g1svn/trunk/G1-GameServer/config/options.properties)	(working copy)
@@ -257,6 +257,10 @@
# Misc Settings
# ------------------------------------------------------------

+# Yep it dose what u think it dose...
+# Default false
+HeroSkillsOnSub = false
+
# Default: True
AllowLottery = True

Link to comment
Share on other sites

  • 0

Thx...I Go To Test It...

 

Edit: It Seems To Be Ok...

But This

HERO_SKILL_ON_SUBLCASS; Muse Be Like This >> : HERO_SKILL_ON_SUBCLASS;

 

One Spelling :>

 

So SomeOne Lock It...

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...