Jump to content
  • 0

Java Code Problem


Question

Posted
I have this code:

 



--- gameserver/head-src/com/l2jfrozen/gameserver/model/actor/instance/L2PcInstance.java (revision 986)
+++ gameserver/head-src/com/l2jfrozen/gameserver/model/actor/instance/L2PcInstance.java (working copy)
@@ -1500,6 +1500,9 @@
/** The _is stored. */
private boolean _isStored = false;

+
+ private String _hwid;
+
/**
* Skill casting information (used to queue when several skills are cast in a short time) *.
*/


 

I dont understand this:  "@@ -1500,6 +1500,9 @@"

 

Can someone explain what is this?

3 answers to this question

Recommended Posts

  • 0
Posted

Go to gameserver/head-src/com/l2jfrozen/gameserver/model/actor/instance/L2PcInstance.java

 

Ctrl+F on eclipse and search for "private boolean _isStored = false;"

 

And then copy paste this

 

+

+ private String _hwid;
+
/**
* Skill casting information (used to queue when several skills are cast in a short time) *.
*/

  • 0
Posted (edited)

1500 stands for the line number and 6 is the number starting from the left.

 

Follow eclipse 35 - line number, 5 (spaces far) from the left

 

245c4jn.jpg

Edited by SweeTs
Guest
This topic is now closed to further replies.


×
×
  • Create New...