WizZy™ Posted September 9, 2009 Author Posted September 9, 2009 What errors you guys get?-_- it works for sure..
notfound Posted September 10, 2009 Posted September 10, 2009 Well using L2jofficial 1113 i have this error [javac] \trunk\lin2srv\java\net\sf\l2j\gameserver\model\actor\instance\L2PcInstance.java:5660: not a statement [javac] String player1 = getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress(); [javac] ^ [javac] \trunk\lin2srv\java\net\sf\l2j\gameserver\model\actor\instance\L2PcInstance.java:5660: ';' expected [javac] String player1 = getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress(); [javac] ^ [javac] 2 errors and i have this code if (target instanceof L2PcInstance) String player1 = getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress(); String player1target = targetPlayer.getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress(); if (player1.equals(player1target)) return; increasePvpKills();
xDunno Posted September 10, 2009 Posted September 10, 2009 Well using L2jofficial 1113 i have this error [javac] \trunk\lin2srv\java\net\sf\l2j\gameserver\model\actor\instance\L2PcInstance.java:5660: not a statement [javac] String player1 = getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress(); [javac] ^ [javac] \trunk\lin2srv\java\net\sf\l2j\gameserver\model\actor\instance\L2PcInstance.java:5660: ';' expected [javac] String player1 = getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress(); [javac] ^ [javac] 2 errors and i have this code if (target instanceof L2PcInstance) String player1 = getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress(); String player1target = targetPlayer.getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress(); if (player1.equals(player1target)) return; increasePvpKills(); i got same errors ;p just code looks a bit diferent ;p
WizZy™ Posted September 10, 2009 Author Posted September 10, 2009 wtf is this if (target instanceof L2PcInstance) ?? omg! you are putting it in a function.. or should i say an instance . wtf guys u cant do a sh1t xD ofc it wont work since its in instanceof :S
Horus Posted September 10, 2009 Posted September 10, 2009 wtf is this if (target instanceof L2PcInstance) ?? omg! you are putting it in a function.. or should i say an instance . wtf guys u cant do a sh1t xD ofc it wont work since its in instanceof :S Leeroy that is about the dumbest thing you've ever said. Anyway the problem is that they forgot to wrap the IF Clause with { } hence, only the first String is read by the if making no sense at all.
WizZy™ Posted September 10, 2009 Author Posted September 10, 2009 Leeroy that is about the dumbest thing you've ever said. Anyway the problem is that they forgot to wrap the IF Clause with { } hence, only the first String is read by the if making no sense at all. I dont get it.. did u read something ? this is his code: if (target instanceof L2PcInstance) String player1 = getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress(); String player1target = targetPlayer.getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress(); if (player1.equals(player1target)) return; increasePvpKills(); and thats mine .. String player1 = getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress(); String player1target = targetPlayer.getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress(); if (player1.equals(player1target)) return; guess i gotta update the place to paste it ,like to search for //check if it's pvp and paste it after that .. cuz ppl got it misplaced. stop judging me without reading .. please!
xDunno Posted September 10, 2009 Posted September 10, 2009 I dont get it.. did u read something ? this is his code: if (target instanceof L2PcInstance) String player1 = getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress(); String player1target = targetPlayer.getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress(); if (player1.equals(player1target)) return; increasePvpKills(); and thats mine .. String player1 = getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress(); String player1target = targetPlayer.getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress(); if (player1.equals(player1target)) return; guess i gotta update the place to paste it ,like to search for //check if it's pvp and paste it after that .. cuz ppl got it misplaced. stop judging me without reading .. please! YY :) it works fine thx Leeroy
notfound Posted September 10, 2009 Posted September 10, 2009 wtf is this if (target instanceof L2PcInstance) ?? omg! you are putting it in a function.. or should i say an instance . wtf guys u cant do a sh1t xD ofc it wont work since its in instanceof :S I just followed your guide im not that expert in java u said search for pvpincrease bla bla and add this BEFORE it, and so i did i tried also putting some space between commands and nothing. Now that you told search for Check if its PvP worked like charm. Thx a lot for helping and for the support!
jorgeromero Posted September 11, 2009 Posted September 11, 2009 I have a suggestion. Would do so. If you kill 1 player you can wait x time to return to kill him.
notfound Posted September 21, 2009 Posted September 21, 2009 I think it does not works for l2j final yep as it is it doesnt work tested in l2j need modify
Recommended Posts