Jump to content
  • 0

[help]2 simple questions


Nitzamc

Question

hello maxcheaters, i have 2 simple questions about my server , where can i find geodata for gracia final l2jserver  and the 2nd is how can i make autonoblese characters on their creation ?

im using l2jserver gracia final!

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

geodata: google

auto noble: check configuration files, if it's not in there get the source, and on character creation newChar.setNoblesse(true), or something along those lines.

Link to comment
Share on other sites

  • 0

i saw it one time i think in config but ive read it like 5-6 times to see the line and i cant find that line and in eclipse i dont know what .java file to find so i can see where i can edit the java code so i can make autonoblese  where is this line can u make this easier for me by telling me in what class i could search ?

Link to comment
Share on other sites

  • 0

I don't see it in the config.

Open CreateCharacter.java in package net.sf.l2j.gameserver.clientpackets;

in this function: protected void runImpl()

 

Add this code:

newChar.setCurrentHp(template.baseHpMax); // existing
newChar.setCurrentCp(template.baseCpMax); // existing
newChar.setCurrentMp(template.baseMpMax); // existing
newChar.setNoble(true);  // add this line

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...