Jump to content

`NeverMore

Legendary Member
  • Posts

    4,036
  • Credits

  • Joined

  • Last visited

  • Days Won

    17
  • Feedback

    100%

Everything posted by `NeverMore

  1. δεν υπάρχει λόγος να δείχνει ο ένας στον άλλο ποιος είναι καλύτερος ! και ούτε συγκεκριμένος λόγος για να γίνεται αυτό ! Εάν έχετε να λύσετε κάτι κάντε το , με ΠΜ
  2. σε αυτό συμφωνώ ! απλώς η λέξη αυτή εδώ μέσα πάντα ήταν λίγο παρεξηγημένη !
  3. το αν είναι κάποιος καλός δεν μπορείς να το κρίνεις εσύ , ούτε κανένας ! Άνοιξε εσύ λοιπόν σέρβερ και ασχολήσου με το έτοιμο pack από την l2j (που είναι σχεδόν έτοιμο), και άσε αυτούς που ξέρουν κάτι παραπάνω να κάνουν reply !
  4. καλά εσύ .... έχεις δίκιο όλα οι σωστοί private servers τρέχουν με ένα απλό l2j compiled pack χωρίς κανένα custom και fix ! Ok cool story !
  5. φίλα τα ρούχα σου να έχεις τα μισά
  6. mono pou ta post pou tha kaneis ekei prepei na einai kai auta sxetika me to thema kai na help ton allon ;)
  7. check your ports with this tool ! http://www.canyouseeme.org/ i am sure , that there are closed !
  8. Yes , sorry i was laaging too much , i was about to make my own topic , requesting to junk it !
  9. IF you didnt know , you shouldn't speak ! Anyway , no actually reason to spam here ...
  10. Hello mxc members I decided , to re-share all my npc's , after many re-quest's i got via PM So here you will find : For Freya (Gm Shop - Gatekeeper - Top PvP/Pk - Augmenter - Informer - Pk killer - Warehouse ) Download them here For Freya - H5 (Buffer full working) Download them here For freya ( Noblesse Manager ) Download here For freya (Color Manager) Download here For H5 (Gm Shop - Gatekeeper - Top PvP/Pk - Augmenter - Warehouse ) Download this pack from here For H5 (Color manager - Noblesse manager ) Download this pack from here Pass: NeverMore Thanks for reading ! Credits : All are mine ! (NeverMore)
  11. ti server ? kai epishs pros8ese kai auto stin lista me ta features sou ! 5)apo lefta = ....
  12. ok 1 minute , i will edit my topic in some minutes ! Try using this python code http://pastebin.com/7U1RMEYa just remember to edit NPC_ID = 555
  13. :D , just tell me what cronicle are you using ! true , it was from epiloque to freya and not from freya to H5 , you are right
  14. i had exactly the same problem ! i was using from freya to H5 if i remember well :P
  15. script it is not fot this chronicle , too simple !
  16. antikatesthse auto ... + private int getVotes() + { + URL url = null; + InputStreamReader isr = null; + BufferedReader in = null; + try + { + url = new URL(http); + isr = new InputStreamReader(url.openStream()); + 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) + { + _log.warning("AutoVoteRewardHandler: "+e); + } + finally + { + try + { + in.close(); + } + catch (IOException e) + {} + try + { + isr.close(); + } + catch (IOException e) + {} + } + return 0; + } me auto + private int getVotes() + { + URL url = null; + InputStreamReader isr = null; + BufferedReader in = null; + try + { + url = new URL(Config.VOTE_SYSTEM_PAGE); + 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) + { + if(Config.VOTE_SYSTEM_HOPZONE == false){ + //TopZone + if(inputLine.contains("<tr><td><div align=\"center\"><b><font style=\"font-size:14px;color:#018BC1;\">")){ + String i = inputLine.replace("<tr><td><div align=\"center\"><b><font style=\"font-size:14px;color:#018BC1;\">", ""); + i = i.replace("</font></b></div></td></tr>", ""); + i = i.trim(); + int o = Integer.parseInt(i); + return Integer.valueOf(o); + } + } else { + //for hopzone + if (inputLine.contains("Anonymous User Votes")) + return Integer.valueOf(inputLine.split(">")[2].replace("</span", "")); + + } + } + } + catch (IOException e) + { + _log.warning("AutoVoteRewardHandler: "+e); + } + finally + { + try + { + in.close(); + } + catch (IOException e) + {} + try + { + isr.close(); + } + catch (IOException e) + {} + } + return 0; + } me tis analoges allages vevea ... i perna apo tin arxh auto to Vote reward , 100 % working http://www.4shared.com/get/zXPtR7QT/votes.html ( From Legent )
×
×
  • Create New...