First of all, nice to meet you, I'm new on L2j big code, but old developing games, really I work programming games since 2009 in Chile south america.
I'm trying right now to make custom changes on l2j code, and one of my tasks is to make Hellbound opened by default.
I made the following changes rigth now.
on general.properties:
HellboundWithoutQuest = True
on //L2J_DataPack/dist/game/data/scripts/hellbound/HellboundEngine.java:
Code: Select all
/**
* Gets the Hellbound level.
* @return the level
*/
public int getLevel()
{
return 11; //new
// return GlobalVariablesManager.getInstance().getInt("HBLevel", 0); //old
}
Code: Select all
/**
* Gets the trust.
* @return the trust
*/
public int getTrust()
{
return 4000000; //new
// return GlobalVariablesManager.getInstance().getInt("HBTrust", 0);
}
Someone can help me or give me some orientation on this custom change.
Sorry my bad english.
Thanks!