DarkCore Posted February 3, 2010 Posted February 3, 2010 Hey all, i want to ask one thing. I want to integrate religion system in my server. But it only gives .diff file. What should i do with it ? Something with eclipse, or what ? Please, help me. Quote
0 Commodus Posted February 3, 2010 Posted February 3, 2010 .Diff files can be applied in eclipse. But usually , you have errors when you apply a patch , that's why it's better to install the mods manually. Quote
0 DarkCore Posted February 3, 2010 Author Posted February 3, 2010 I should add all lines manually? in every single file? Quote
0 Commodus Posted February 3, 2010 Posted February 3, 2010 I should add all lines manually? in every single file? You must not should. Quote
0 DarkCore Posted February 3, 2010 Author Posted February 3, 2010 But how to know, where to put exactly ? Cuz it's only gives the lines in .diff file. Index: C:/workspace/L2_GameServer/java/net/sf/l2j/gameservermodel/L2Character.java =================================================================== if (!isTeleporting()) { setIsPendingRevive(false); if ((this instanceof L2PcInstance) && (((L2PcInstance) this).isdemon() && Config.RELIGION_SYSTEM_ENABLE)) { teleToLocation(73056, 142127, -3798); } else { if ((this instanceof L2PcInstance) && (((L2PcInstance) this).isangel() && Config.RELIGION_SYSTEM_ENABLE)) { teleToLocation(72954, 143363, -3798); } } setIsDead(false); boolean restorefull = false; Quote
0 Commodus Posted February 3, 2010 Posted February 3, 2010 If it doesn't have + and - lines you can't install it manually. Cause you don't really know what to search in order to edit them. The codes that you can add manually are the ones that have ( + ) and ( - ) lines. Try to apply this one and tell me if you got any errors. Quote
0 DarkCore Posted February 3, 2010 Author Posted February 3, 2010 Can you tell me, what should i do with this: Index: C:/workspace/L2_GameServer/java/net/sf/l2j/gameservermodel/L2Character.java =================================================================== if (!isTeleporting()) { setIsPendingRevive(false); + if ((this instanceof L2PcInstance) && (((L2PcInstance) this).isdemon() && Config.RELIGION_SYSTEM_ENABLE)) + { + teleToLocation(73056, 142127, -3798); + } else + { + if ((this instanceof L2PcInstance) && (((L2PcInstance) this).isangel() && Config.RELIGION_SYSTEM_ENABLE)) + { + teleToLocation(72954, 143363, -3798); + } + } setIsDead(false); boolean restorefull = false; Quote
0 Commodus Posted February 3, 2010 Posted February 3, 2010 Find this one : setIsPendingRevive(false); And add below the lines that have +. Quote
0 Commodus Posted February 3, 2010 Posted February 3, 2010 with + or not ? ( + ) Add the lines. ( - ) Delete the lines. ( if you see them in other codes ) Quote
0 DarkCore Posted February 3, 2010 Author Posted February 3, 2010 It's impossible to apply that patch automatically? Quote
0 Commodus Posted February 3, 2010 Posted February 3, 2010 It's impossible to apply that patch automatically? You can apply it like i said you before but you will have errors in eclipse. Adding them manually , is the best way. Quote
0 DarkCore Posted February 3, 2010 Author Posted February 3, 2010 It's very hard for me to do that :( Quote
0 Commodus Posted February 3, 2010 Posted February 3, 2010 It's very hard for me to do that :( It's not . Practise with some codes/methods and you will be fine. Quote
Question
DarkCore
Hey all, i want to ask one thing.
I want to integrate religion system in my server.
But it only gives .diff file.
What should i do with it ?
Something with eclipse, or what ?
Please, help me.
13 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.