Jump to content

Rizel

Members
  • Posts

    271
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Rizel

  1. is there any Tera private server emu like the L2J?
  2. http://en.wikipedia.org/wiki/Eclipse_(software) it seems that it's related to the release date. (Releases section)
  3. you have to add the compiled l2jserver.jar to the classpath as vampir said
  4. well as I stated in the first post, it wasn't fully bugfree back then but it didn't have this serious problems (at least noone reported that they can't use the events) if someone got fixes for it, pm if you want and I add them to the first post.
  5. you mean the one that shared in this topic for free? o.O
  6. I already answered you in this topic. Back then, you (and every other customer) decided that the engine worths 70e for you and you bought it. You could use it for about a year, and you can still use it however you want. I just can't see how is this affecting you in any way. You got what you paid for, and imho I can do whatever I want with my work. I want to stop others reselling it.
  7. probably the config file is missing
  8. I was thinking about to make a new one but I'm not sure that with the current amm.ount of private servers it would worth to compete with hNoke's system.
  9. I don't have the time to support the code and noone really wanted to buy it since a while ago. Also if I'll ever want to continue it, I will make a new one from scratch because the current one is hard to modify (and now I know much more about java, so it would be easier to make a new one instead of rework this one)
  10. I wouldn't mind if someone would continue it and made new features, new events, bugfixes etc (however it would be still kinda stealing cuz noone asked me about it), and then sell his own version. But when someone just c/p or maybe change 1-2 String...
  11. it was almost a year ago when I last updated the code and now there are ppl who share it with their friends or resell them for ~10 euros and such. honestly I don't think it makes any difference if I share it, except that the resellers can't make money from other's work.
  12. Hey. Well because I closed the project a long time ago and I'm not planning to continue it (at least this version), I decided to share it with the sources. Anyone who wanted to buy/get the engine obtained it already one way or other. This way I hope noone will buy the code from all the fckin resellers.. I don't support the code so please don't pm me to make it compatible/fix it/etc cuz I won't (it seems some ppl can't read). Also don't bother to start flaming about the quality of the code, because after I learned a bit more about java and programming in general, now I know exactly how huge mistakes I made back then. http://www.4shared.com/rar/C07gXiBV/phoenix.html
  13. Hey everyone! I want to offer my developer services. If you provide enough details about what you need, I can make almost any java modifications on serverside (Events, NPCs, etc.) You can find my works on this forum. I accept PayPal or PSC. If anyone interested pm here.
  14. I didn't follow the L2 world since a while ago, but now I'm planning to return coding for private servers. But first I want to ask about your opinion. Are there less private servers since the official L2 went F2P, or it didn't affect them that much? What do you think, is it worth to invest the time in L2J coding again or there aren't enough private servers?
  15. is it over? if not I would take 17 :) edit: oh nvm. now I see that the 7th won it. gratz :)
  16. bump. also trade it for dota 2 beta key :P
  17. xD it's not like someone will pm. but it worth a try :D
  18. hello. as the subjects says I want to offer my coding skills for a Dota 2 beta invitation :D if you have one pm
  19. I agree. hNoke's engine is way better. He spent much more time on it and he did a good job, especially at the config panel. I appreciate the opinions about my engine too cuz I'll know where should I spend more attention when I make my next project. Good luck hNoke and it's a shame that we didn't make this together
  20. I don't update this engine anymore. The sources are purchaseable for a decreased price. If anyone is interested contact me.
  21. public static int getVotes() { URL url = null; InputStreamReader isr = null; BufferedReader in = null; try { url = new URL(http); URLConnection con = url.openConnection(); con.addRequestProperty("User-Agent", "Mozilla/4.76"); isr = new InputStreamReader(con.getInputStream()); in = new BufferedReader(isr); String inputLine; while ((inputLine = in.readLine()) != null) { // for top-zone //if (inputLine.contains("<tr><td><div align=\"center\"><b><font style=\"font-size:14px;color:#018BC1;\"")) //{ //return Integer.valueOf(inputLine.split(">")[5].replace("</font", "")); //} //for hopzone if (inputLine.contains("moreinfo_total_rank_text")) return Integer.valueOf(inputLine.split(">")[2].replace("</div", "")); } } catch (IOException e) { e.printStackTrace(); } finally { try { in.close(); } catch (IOException e) {} try { isr.close(); } catch (IOException e) {} } return 0; } this method works for me
×
×
  • Create New...