Jump to content
  • 0

.diff file


DarkCore

Question

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.

Link to comment
Share on other sites

13 answers to this question

Recommended Posts

  • 0

.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.

Link to comment
Share on other sites

  • 0

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;

Link to comment
Share on other sites

  • 0

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.

Link to comment
Share on other sites

  • 0

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;

Link to comment
Share on other sites

  • 0

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.

Link to comment
Share on other sites

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...