Mr.Reese Posted October 11, 2014 Posted October 11, 2014 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?
0 Gate13Hooligans Posted October 11, 2014 Posted October 11, 2014 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 SweeTs Posted October 11, 2014 Posted October 11, 2014 (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 Edited October 11, 2014 by SweeTs
Question
Mr.Reese
3 answers to this question
Recommended Posts