Jump to content

An4rchy

Legendary Member
  • Posts

    2,656
  • Credits

  • Joined

  • Last visited

  • Days Won

    26
  • Feedback

    100%

Everything posted by An4rchy

  1. Eclipse>Window>Preferences>Java>Installed JREs>Add...>Next>>Directory>C:\>Program Files>Java>jdk x.x.x. Kane afto p s eipa, kai meta tha sto bgalei sto parathiro Installed JREs. Epelekse to kai pata ok. Meta prepei na litourgei.
  2. Rate: <center><font c Exeis balei center dipla apo to rates. Opote afta tha pane sto kentro. Bale to <center> aristera apo to Rate.
  3. Ama eisai se freya, traba data/stats/weapons kai bres ekei to wep pou thes sta xml. Meta alakse tou grade... Exei mia grami p leei grade="s" kati tetio. Ama dn eisai se freya, pigene navicat>database>weapons kai bres to wep p thes kai alakse tou grade. Thelei omos kai client modding, gt alios tha einai px a grade kai tha dixnei ikonidio s. Psakse gia guide sto client mods section, iparxei.
  4. net.sf.l2j.gameserver.model.zone.type.L2ArenaZone Find: onEnter(L2Character character) Add after it: if (character instanceof L2PcInstance) { ((L2PcInstance)character).updatePvPFlag(1); } I don't know if this is permanant(if they have all time in there flag), but you could test it and tell me. If it isn't, i can fix it.
  5. I agree 100% here. Also, it's not that difficult. If you want a 'not bad' server, you don't actually need to 'know' java. You could take another pack, but don't just add 3 npcs and open your server, organize it. By meaning of organization, you could take as example L2Shax.com.
  6. Well, 1 thing is sure. We are about to see a lot of client mods adaptions from GoD to lower clients.
  7. Addytzu has great ideas. That's the only problem nowdays devs(but real devs) have. Good luck again.
  8. Oh :/ I thought you were the admin/developer. Too bad. Anyway, good luck.
  9. What can i say, it's the only freya server i have liked. GJ and gl.
  10. This is not a post to do that. You could just pm him.
  11. Yeah because it's not the updated version, if i am not mistaken. I have made an update to it. P.S i will update main post asap.
  12. I think i'll add an option to enable this...
  13. gn http://maxcheaters.com/forum/index.php?topic=208661.0
  14. Well, all i got to say is that i was so bored, so no flaming please. :P Any player can challenge any other player, to a final battle match. There's an npc, L2FinalBattleManager(data/html/mods/finalbattle), where you can go write the player's name you wish to challenge and he will receive a message. The challenged player can press on accept or refuse button on the npc, to accept or refuse the challenge. If he refuses, it will be announced. If he accepts, they will be both teleported to coliseum where they will paralyze for 10 seconds. All buffs will be removed. They will begin fighting after 10 seconds. The loser will be banned(not account, only the player) and the winner will take loser's all items. There is protection for ctrl+alt+del, if the player disconnects, he will be banned on next attempt to login. I won't extend it more, so be careful when you challenge someone, make sure you don't have connection problems(:O). I want to hear your ideas.
  15. Why to make useless connections* to the database, since you add these lines: + player.setvip(rset.getInt("vip")==1); + statement.setInt(59, isvip() ? 1 : 0); Also the 'diff'(let god decide if it's a diff), deletes donator system lines. If a newbie tries to apply the patch, he will go mad. connections: Connection connection = null; try { connection = L2DatabaseFactory.getInstance().getConnection(); PreparedStatement statement = connection.prepareStatement("SELECT obj_id FROM characters where char_name=?"); statement.setString(1,target.getName()); ResultSet rset = statement.executeQuery(); int objId = 0; if (rset.next()) { objId = rset.getInt(1); } rset.close(); statement.close(); if (objId == 0) {connection.close(); return false;} statement = connection.prepareStatement("UPDATE characters SET vip=0 WHERE obj_id=?"); statement.setInt(1, objId); statement.execute(); statement.close(); connection.close(); } catch (Exception e) { _log.warn("could not set vip stats of char:", e); } finally { try { connection.close(); } catch (Exception e) {} }
  16. If you have checked out the files, you should see in package explorer the files. Right click on build.xml > run as > ant build 1. The go to the files from folder(not in eclipse) and you should see a build folder. In there, there's your well known gameserver and login server files. All you got to do is copy them, both gs and dp in another folder. GL.
  17. Translation, at least google translation please.
  18. for (L2Effect e : player.getAllEffects()) { if (e.getSkill.getId() == id) { e.exit(); } } With a bit of modification and if you place it on the right file it could work. I hope i helped.
  19. Sorry, but failed code. It's so crappy coded. Unneeded connections to the database... Even more. Anyway, what's the difference from the original?
  20. Spams all over L2J Develop section. http://maxcheaters.com/forum/index.php?action=profile;u=82625
  21. To pack it? What do you mean? To add it in your pack? Just follow the diff file, it isn't that difficult. Btw, it's in beta stage, since i have stopped working on it for a while...
  22. Project based on? Did you make any change on source(or you don't even have the source)?
×
×
  • Create New...