Jump to content

Recommended Posts

Posted

With this patch your subclass can reach lvl85 to.

source:l2jfree ct2.2

 

credits to me.

 

Index: D:/workspace/l2jfree-core/src/main/java/com/l2jfree/gameserver/model/base/SubClass.java
===================================================================
--- D:/workspace/l2jfree-core/src/main/java/com/l2jfree/gameserver/model/base/SubClass.java	(revision 5002)
+++ D:/workspace/l2jfree-core/src/main/java/com/l2jfree/gameserver/model/base/SubClass.java	(working copy)
@@ -88,8 +88,8 @@
     
     public void setExp(long expValue)
     {
-        if (expValue > (Experience.LEVEL[81] - 1))
-            expValue = (Experience.LEVEL[81] - 1);
+        if (expValue > (Experience.LEVEL[86] - 1))
+            expValue = (Experience.LEVEL[86] - 1);
         
         _exp = expValue;
     }
@@ -106,8 +106,8 @@
     
     public void setLevel(byte levelValue)
     {
-        if (levelValue > 80)
-            levelValue = 80;
+        if (levelValue > 85)
+            levelValue = 85;
         else if (levelValue < 40)
             levelValue = 40;
             
@@ -116,7 +116,7 @@
     
     public void incLevel()
     {
-        if (getLevel() == 80)
+        if (getLevel() == 85)
             return;
         
         _level++;

  • 2 weeks later...
Posted

Nice but have a question

 

In off is subclass max 80 or 85?

posible 80...

 

btw i have 1 more question too...sub class go to 85 lvl...but takes skills of 85 lvl..?or stop to 80??

Posted

posible 80...

 

btw i have 1 more question too...sub class go to 85 lvl...but takes skills of 85 lvl..?or stop to 80??

 

takes the skills too

  • 1 month later...
Posted

guys, strangely enough for me, i dont have directory base in my gameserver or where it's supposed to be :(

 

secondly, anyone can pls tell me where i can find xml and whatever else i need to implement skills lvl 80+ ?

and of course, those that are working, cuz i found some but they dont work on l2jfree, even when it's not specified that they are not good for l2jfree.

 

thanks.

Posted

guys, strangely enough for me, i dont have directory base in my gameserver or where it's supposed to be :(

 

secondly, anyone can pls tell me where i can find xml and whatever else i need to implement skills lvl 80+ ?

and of course, those that are working, cuz i found some but they dont work on l2jfree, even when it's not specified that they are not good for l2jfree.

 

thanks.

 

1st its in your core.you need a little jva knowledge to implement that.

 

2nd the skills are in the data/stats/skills folder, the skills are working vice-versa you just need an another skill type

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




×
×
  • Create New...