Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

How to edit Abyss Rank points in Aion game

Blender Fan|Kinenbi Owner
Loyal Member
Joined
Mar 27, 2006
Messages
800
Reaction score
355
[HowTo] Edit Abyss Rank points needed...

You NEED source files to edit this.

1. goto .\trunk\AL-Game\src\com\aionemu\gameserver\utils\stats\
2. open AbyssRankEnum.java with editor of choice
3. Look for / and edit:

Code:
GRADE9_SOLDIER(1, 120, 24, 0, 0, 1802431),
	GRADE8_SOLDIER(2, 168, 37, 1200, 0, 1802433),
	GRADE7_SOLDIER(3, 235, 58, 4220, 0, 1802435),
	GRADE6_SOLDIER(4, 329, 91, 10990, 0, 1802437),
	GRADE5_SOLDIER(5, 461, 143, 23500, 0, 1802439),
	GRADE4_SOLDIER(6, 645, 225, 42780, 0, 1802441),
	GRADE3_SOLDIER(7, 903, 356, 69700, 0, 1802443),
	GRADE2_SOLDIER(8, 1264, 561, 105600, 0, 1802445),
	GRADE1_SOLDIER(9, 1770, 885, 150800, 0, 1802447),
	STAR1_OFFICER(10, 2124, 1428, 214100, 1000, 1802449),
	STAR2_OFFICER(11, 2549, 1973, 278700, 700, 1802451),
	STAR3_OFFICER(12, 3059, 2704, 344500, 500, 1802453),
	STAR4_OFFICER(13, 3671, 3683, 411700, 300, 1802455),
	STAR5_OFFICER(14, 4405, 4994, 488200, 100, 1802457),
	GENERAL(15, 5286, 6749, 565400, 30, 1802459),
	GREAT_GENERAL(16, 6343, 9098, 643200, 10, 1802461),
	COMMANDER(17, 7612, 11418, 721600, 3, 1802463),
	SUPREME_COMMANDER(18, 9134, 13701, 800700, 1, 1802465);

Rank-Name / ID / pointsGained / pointsLoss / required / quota / descriptionID

so you want to start with Grade 1 Soldier?

Code:
GRADE9_SOLDIER(1, 1, 2, 0, 0, 1802431),
	GRADE8_SOLDIER(2, 1, 2, 0, 0, 1802433),
	GRADE7_SOLDIER(3, 1, 2, 0, 0, 1802435),
	GRADE6_SOLDIER(4, 1, 2, 0, 0, 1802437),
	GRADE5_SOLDIER(5, 1, 2, 0, 0, 1802439),
	GRADE4_SOLDIER(6, 1, 2, 0, 0, 1802441),
	GRADE3_SOLDIER(7, 1, 2, 0, 0, 1802443),
	GRADE2_SOLDIER(8, 1, 2, 0, 0, 1802445),
	GRADE1_SOLDIER(9, 1, 2, 0, 0, 1802447),

4. Save / compile / copy
5. Done!
 
Newbie Spellweaver
Joined
Nov 9, 2013
Messages
11
Reaction score
0
sir how to edit the .java
can you give a program for edit .java
thanks sir
 
Newbie Spellweaver
Joined
Jun 5, 2014
Messages
7
Reaction score
0
You can do a quick google search for that.

I personally use Eclipse for Java files.
 
Back
Top