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!

White angelic Blessing fix for Lithium Source

Status
Not open for further replies.
Junior Spellweaver
Joined
Aug 19, 2011
Messages
113
Reaction score
37
here's the white angelic blessing fix :)

1st go to MapleStatsEffect.java


Search for this
Code:
case 2022747:

and add this below
Code:
case 2022823:

Note: There's two Case 2022747 in MapleStatsEffect.java

2nd go to PlayerStat.java

and search for this

Code:
case 1112585:
                    equippedSummon = 1085;

add this below

Code:
case 1112594:
                    equippedSummon = 1085;

then search for

Code:
Case 1112594:
		    equippedSummon = 1179;

replace
Code:
Case 1112594:
WITH
Code:
Case 1112663:

Next Go to EquipAdditions.java

and search for this

Code:
Angelic_Ring(1112585, 1112586, 1112594),

replace it with this

Code:
Angelic_Ring(1112585, 1112586, 1112594, 1112663),

Clean and Compile, White Angelic Blessing should be working now ^^

Enjoy! ^^

Maple0011 - White angelic Blessing fix for Lithium Source - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Last edited:
Junior Spellweaver
Joined
May 21, 2011
Messages
198
Reaction score
3
i have this problem in compile:


init:
deps-clean:
Updating property file: C:\Users\Ori\Documents\NetBeansProjects\Lithium\build\built-clean.properties
Deleting directory C:\Users\Ori\Documents\NetBeansProjects\Lithium\build
clean:
init:
deps-jar:
Created dir: C:\Users\Ori\Documents\NetBeansProjects\Lithium\build
Updating property file: C:\Users\Ori\Documents\NetBeansProjects\Lithium\build\built-jar.properties
Created dir: C:\Users\Ori\Documents\NetBeansProjects\Lithium\build\classes
Created dir: C:\Users\Ori\Documents\NetBeansProjects\Lithium\build\empty
Compiling 331 source files to C:\Users\Ori\Documents\NetBeansProjects\Lithium\build\classes
C:\Users\Ori\Desktop\Lithium\src\client\PlayerStats.java:436: error: not a statement
Case 1112663:
C:\Users\Ori\Desktop\Lithium\src\client\PlayerStats.java:436: error: ';' expected
Case 1112663:
2 errors
C:\Users\Ori\Documents\NetBeansProjects\Lithium\nbproject\build-impl.xml:406: The following error occurred while executing this line:
C:\Users\Ori\Documents\NetBeansProjects\Lithium\nbproject\build-impl.xml:196: Compile failed; see the compiler error output for details.
BUILD FAILED (total time: 9 seconds)
 
UNTIL THEN!
Loyal Member
Joined
Mar 5, 2011
Messages
1,086
Reaction score
213
i have this problem in compile:


init:
deps-clean:
Updating property file: C:\Users\Ori\Documents\NetBeansProjects\Lithium\build\built-clean.properties
Deleting directory C:\Users\Ori\Documents\NetBeansProjects\Lithium\build
clean:
init:
deps-jar:
Created dir: C:\Users\Ori\Documents\NetBeansProjects\Lithium\build
Updating property file: C:\Users\Ori\Documents\NetBeansProjects\Lithium\build\built-jar.properties
Created dir: C:\Users\Ori\Documents\NetBeansProjects\Lithium\build\classes
Created dir: C:\Users\Ori\Documents\NetBeansProjects\Lithium\build\empty
Compiling 331 source files to C:\Users\Ori\Documents\NetBeansProjects\Lithium\build\classes
C:\Users\Ori\Desktop\Lithium\src\client\PlayerStats.java:436: error: not a statement
Case 1112663:
C:\Users\Ori\Desktop\Lithium\src\client\PlayerStats.java:436: error: ';' expected
Case 1112663:
2 errors
C:\Users\Ori\Documents\NetBeansProjects\Lithium\nbproject\build-impl.xml:406: The following error occurred while executing this line:
C:\Users\Ori\Documents\NetBeansProjects\Lithium\nbproject\build-impl.xml:196: Compile failed; see the compiler error output for details.
BUILD FAILED (total time: 9 seconds)

It's right there.
 
Junior Spellweaver
Joined
May 21, 2011
Messages
198
Reaction score
3
where is MapleStatsEffect.java file? i find just MapleStatEffect.java
 
Junior Spellweaver
Joined
May 21, 2011
Messages
198
Reaction score
3
still not working for me!! please give me the PlayerStat.java with all edit!! :(
 
Newbie Spellweaver
Joined
Jun 12, 2012
Messages
7
Reaction score
0
Re-do everything, we can't spoon feed you and if you can't even add that kind of simple fix, then either fix it yourself, or don't bother to host a server.
 
FutureLegend's Owner
Joined
Feb 10, 2011
Messages
470
Reaction score
99
That fixes the normal angelic ring too btw.
 
Newbie Spellweaver
Joined
Feb 23, 2012
Messages
31
Reaction score
18
This just won't work for me. Even when I change case 1112663 to have equippedSummon = 1085;, it won't even summon the ABR.
 
Status
Not open for further replies.
Back
Top