Jump to content

NetU

Members
  • Posts

    53
  • Credits

  • Joined

  • Last visited

    Never
  • Feedback

    0%

About NetU

Profile Information

  • Gender
    Not Telling
  • Interests
    Objective-C Master

NetU's Achievements

Newbie

Newbie (1/16)

0

Reputation

  1. just bought one amazing accounts! trusted! thanks!
  2. Trading for another aion account or selling a chanter lvl 56 and spiritmaster twink lvl 48. pm me for more info.
  3. τι εννοας πως να το διορθωσεις? τι θες να μαθεις?
  4. Βασικα τα παλια version του eclispe δεν δουλευουν με Java 1.7. Aλλιως αν εχει καινουργιο version δες το JAVA_HOME. Δοκιμασε στο command prompt javac -version
  5. thats definitely not from frozen. i never worked on a fork. The code its in the OlympiadGameNormal.java and the one you show me its in the OlympiadGametask.java which changes the state of the game. Just search in OlympiadGameNormal.java
  6. http://www.4shared.com/rar/sRqr9jk8/castle_control.html have fun
  7. @Override protected final boolean portPlayersToArena(List<Location> spawns) { boolean result = true; try { result &= portPlayerToArena(_playerOne, spawns.get(0), _stadiumID); result &= portPlayerToArena(_playerTwo, spawns.get(spawns.size() / 2), _stadiumID); } catch (Exception e) { _log.log(Level.WARNING, "", e); return false; } return result; } play with it
  8. executeQuery() method is used mostly for SELECT statement. executeUpdate() method is generally used by INSERT, UPDATE, And DELETE statements. You can also try the execute() method see if that works
  9. +1 modifing a source code is not making a new standalone emulator. Since the core code is from L2J credits goes to L2J. Just respect other peoples work.
  10. you have subversion installed? if not install or or install sliksvn
  11. public static FastList<String> CUSTOM_PVP_RESTRICTED_ZONES_IDS = new FastList<String>(); why are you waiting for a byte or integer return on a string variable? but since parsing string is not allowed in java parseinteger should have been working. otherwise you need a well coded regex to parse that var or this might work: String splitter="[,]"; String [] custompvprestr = CUSTOM_PVP_RESTRICTED_ZONES_IDS.split(splitter);
  12. execute() will try to update everything into the SQl database, but executeUpdate() will online update INSERT,DELETE,UPDATE commands which in your case is a lot faster
  13. Windows-Preferences-Java-Installed JREs then click the search button and find your folder with your JDK java files and not JRE
  14. καλη δουλεια! Αν ειμαι σωστος ομως το client εχει slots για 24 macros μονο αρα μπορει να υπαρχει προβλημα. Καλη δουλεια ομως ;)
×
×
  • Create New...