Jump to content
  • 0

[help]2 simple questions


Question

Posted

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!

8 answers to this question

Recommended Posts

  • 0
Posted

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.

  • 0
Posted

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 ?

  • 0
Posted

I don't have eclipse or the source code installed, but do a search of the project in eclipse for newChar., and see what files it brings up. Then dig around from there.

  • 0
Posted

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

Guest
This topic is now closed to further replies.


×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..