Jump to content

'Baggos'

Legendary Member
  • Posts

    3,874
  • Credits

  • Joined

  • Last visited

  • Days Won

    27
  • Feedback

    100%

Everything posted by 'Baggos'

  1. Με μπέρδεψε το όνομά του με έναν άλλον, δε μπορώ να θυμηθώ, που έδινε ένα φθηνό. Πάτησα το link πιο κάτω, και είδα σε ποιον αναφέρεσαι.. Λάθος μου!
  2. Γράφει πως θέλει και Anti-DDos prot, ο σακρετσος, δεν παρέχει καλό protection. Δες για OVH ή hyperfilter..
  3. Γιατί είσαι κακός βρε τρελέ? Χαχα.. Ούτε εγώ ήξερα αγγλικά όταν ξεκίνησα.. Είναι να το θέλεις Γιάννη.. Αν το θες πολύ, θα το καταφέρεις και χωρίς help. Τι να πούμε εμείς που ούτε αγγλικά ξέραμε, και το 2008 δεν υπήρχαν αυτοί οι σύγχρονοι οδηγοί που υπάρχουν τώρα.. Με videos/pictures κτλπ. Τώρα είναι αμαρτία να μην μπορείς να ανοίξεις με τόσα video. Προσωπικά για ένα τέτοιο θέμα, δεν θα δώσω βοήθεια, γιατί αν δεχθείς βοήθεια σε κάτι τέτοιο, τότε όταν φτάσεις στο coding, τι θα πρέπει να κάνεις? Αφιέρωσε λίγο χρόνο, δούλεψε και το google translate, και κάτι θα κάνεις.. 3 Προγράμματα και μερικές επεξεργασίες είναι το απλό "άνοιγμα server". Δες και αυτό το video, και κάτι θα καταλάβεις. Εδώ δεν θέλεις αγγλικά, αλλά καλή όραση.. Σημείωση: Το MySQL, έχει καινούριο τρόπο για εγκατάσταση. Για να μην σε πεδέψει, πάτα επόμενο σε όλα. Κάπου θα σου ζητηθεί password, βάζεις password δικό σου, και επόμενο σε όλα. (Με το επόμενο σε όλα θα εγκαταστήσεις και προγράμματα της MySQL, που δεν σου χρειάζονται. Όμως για αρχή, αυτό δεν είναι πρόβλημα. Τώρα στην navicat, μόλις την εγκαταστήσεις και την ανοίξεις, θα πατήσεις new connection, πληκτρολογείς <localhost> και κωδικό που έβαλες. Αφού γίνει η σύνδεση, θα πατήσεις επάνω και "New Database", εκεί ορίζεις όνομα της Database σου που θέλεις, και κωδικό που έβαλες. Μετά, το μόνο που έχεις να κάνεις, είναι να επεξεργαστείς login properties, server properties, database installer (Δεξί κλικ επεξεργασία). Μετά εκεί μέσα σε αυτά, θα βάλεις το όνομα της database που έδωσες, και τον κωδικό. Καλή τύχη..
  4. Hello everybody... I'm tryning to pass a topzone reward system (Anarchy's voting system). Bellow, I will give the code, when it's the time to check the votes count, then, I get this error: "There is a problem on getting votes from server with rank 15". I've change a lot of times the links, with xzone guide. But still nothing... I use acis 340 rev. Code: package net.sf.l2j.gameserver.model.entity; import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.URL; import java.net.URLConnection; import java.util.Collection; import java.util.HashMap; import net.sf.l2j.Config; import net.sf.l2j.gameserver.ThreadPoolManager; import net.sf.l2j.gameserver.model.L2World; import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; import net.sf.l2j.gameserver.util.Broadcast; /** * @author Anarchy * */ public class VoteRewardTopzone { // Configurations. private static String topzoneUrl = Config.TOPZONE_SERVER_LINK; private static String page1Url = Config.TOPZONE_FIRST_PAGE_LINK; private static int voteRewardVotesDifference = Config.TOPZONE_VOTES_DIFFERENCE; private static int firstPageRankNeeded = Config.TOPZONE_FIRST_PAGE_RANK_NEEDED; private static int checkTime = 60*1000*Config.TOPZONE_REWARD_CHECK_TIME; // Don't-touch variables. private static int lastVotes = 0; private static HashMap<String, Integer> playerIps = new HashMap<>(); public static void updateConfigurations() { topzoneUrl = Config.TOPZONE_SERVER_LINK; page1Url = Config.TOPZONE_FIRST_PAGE_LINK; voteRewardVotesDifference = Config.TOPZONE_VOTES_DIFFERENCE; firstPageRankNeeded = Config.TOPZONE_FIRST_PAGE_RANK_NEEDED; checkTime = 60*1000*Config.TOPZONE_REWARD_CHECK_TIME; } public static void getInstance() { System.out.println("Topzone - Vote reward system initialized."); ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new Runnable() { @Override public void run() { if (Config.ALLOW_TOPZONE_VOTE_REWARD) { reward(); } else { return; } } }, checkTime/2, checkTime); } static void reward() { int firstPageVotes = getFirstPageRankVotes(); int currentVotes = getVotes(); if (firstPageVotes == -1 || currentVotes == -1) { if (firstPageVotes == -1) { System.out.println("There was a problem on getting Topzone votes from server with rank "+firstPageRankNeeded+"."); } if (currentVotes == -1) { System.out.println("There was a problem on getting Topzone server votes."); } return; } if (lastVotes == 0) { lastVotes = currentVotes; Broadcast.announceToOnlinePlayers("Topzone: Current vote count is "+currentVotes+"."); Broadcast.announceToOnlinePlayers("Topzone: We need "+((lastVotes+voteRewardVotesDifference)-currentVotes)+" vote(s) for reward."); if (Config.ALLOW_TOPZONE_GAME_SERVER_REPORT) { System.out.println("Server votes on topzone: "+currentVotes); System.out.println("Votes needed for reward: "+((lastVotes+voteRewardVotesDifference)-currentVotes)); } if (firstPageVotes-lastVotes <= 0) { Broadcast.announceToOnlinePlayers("Topzone: We are in the top "+firstPageRankNeeded+" of topzone, so the reward will be big."); if (Config.ALLOW_TOPZONE_GAME_SERVER_REPORT) { System.out.println("Server is on the top "+firstPageRankNeeded+" of topzone."); } } else { Broadcast.announceToOnlinePlayers("Topzone: We need "+(firstPageVotes-lastVotes)+" vote(s) to get to the top "+firstPageRankNeeded+" of topzone for big reward."); if (Config.ALLOW_TOPZONE_GAME_SERVER_REPORT) { System.out.println("Server votes needed for top "+firstPageRankNeeded+": "+(firstPageVotes-lastVotes)); } } return; } if (currentVotes >= lastVotes+voteRewardVotesDifference) { Collection<L2PcInstance> pls = L2World.getInstance().getAllPlayers().values(); if (firstPageVotes-currentVotes <= 0) { if (Config.ALLOW_TOPZONE_GAME_SERVER_REPORT) { System.out.println("Server votes on topzone: "+currentVotes); System.out.println("Server is on the top "+firstPageRankNeeded+" of topzone."); System.out.println("Votes needed for next reward: "+((currentVotes+voteRewardVotesDifference)-currentVotes)); } Broadcast.announceToOnlinePlayers("Topzone: Everyone has been rewarded with big reward."); Broadcast.announceToOnlinePlayers("Topzone: Current vote count is "+currentVotes+"."); for (L2PcInstance p : pls) { boolean canReward = false; String pIp = p.getClient().getConnection().getInetAddress().getHostAddress(); if (playerIps.containsKey(pIp)) { int count = playerIps.get(pIp); if (count < Config.TOPZONE_DUALBOXES_ALLOWED) { playerIps.remove(pIp); playerIps.put(pIp, count+1); canReward = true; } } else { canReward = true; playerIps.put(pIp, 1); } if (canReward) { for (int i : Config.TOPZONE_BIG_REWARD.keySet()) { p.addItem("Vote reward.", i, Config.TOPZONE_BIG_REWARD.get(i), p, true); } } else { p.sendMessage("Already "+Config.TOPZONE_DUALBOXES_ALLOWED+" character(s) of your ip have been rewarded, so this character won't be rewarded."); } } playerIps.clear(); } else { if (Config.ALLOW_TOPZONE_GAME_SERVER_REPORT) { System.out.println("Server votes on topzone: "+currentVotes); System.out.println("Server votes needed for top "+firstPageRankNeeded+": "+(firstPageVotes-lastVotes)); System.out.println("Votes needed for next reward: "+((currentVotes+voteRewardVotesDifference)-currentVotes)); } Broadcast.announceToOnlinePlayers("Topzone: Everyone has been rewarded with small reward."); Broadcast.announceToOnlinePlayers("Topzone: Current vote count is "+currentVotes+"."); Broadcast.announceToOnlinePlayers("Topzone: We need "+(firstPageVotes-currentVotes)+" vote(s) to get to the top "+firstPageRankNeeded+" of topzone for big reward."); for (L2PcInstance p : pls) { boolean canReward = false; String pIp = p.getClient().getConnection().getInetAddress().getHostAddress(); if (playerIps.containsKey(pIp)) { int count = playerIps.get(pIp); if (count < Config.TOPZONE_DUALBOXES_ALLOWED) { playerIps.remove(pIp); playerIps.put(pIp, count+1); canReward = true; } } else { canReward = true; playerIps.put(pIp, 1); } if (canReward) { for (int i : Config.TOPZONE_SMALL_REWARD.keySet()) { p.addItem("Vote reward.", i, Config.TOPZONE_SMALL_REWARD.get(i), p, true); } } else { p.sendMessage("Already "+Config.TOPZONE_DUALBOXES_ALLOWED+" character(s) of your ip have been rewarded, so this character won't be rewarded."); } } playerIps.clear(); } lastVotes = currentVotes; } else { if (firstPageVotes-currentVotes <= 0) { if (Config.ALLOW_TOPZONE_GAME_SERVER_REPORT) { System.out.println("Server votes on topzone: "+currentVotes); System.out.println("Server is on the top "+firstPageRankNeeded+" of topzone."); System.out.println("Votes needed for next reward: "+((lastVotes+voteRewardVotesDifference)-currentVotes)); } Broadcast.announceToOnlinePlayers("Topzone: Current vote count is "+currentVotes+"."); Broadcast.announceToOnlinePlayers("Topzone: We need "+((lastVotes+voteRewardVotesDifference)-currentVotes)+" vote(s) for big reward."); } else { if (Config.ALLOW_TOPZONE_GAME_SERVER_REPORT) { System.out.println("Server votes on topzone: "+currentVotes); System.out.println("Server votes needed for top "+firstPageRankNeeded+": "+(firstPageVotes-lastVotes)); System.out.println("Votes needed for next reward: "+((lastVotes+voteRewardVotesDifference)-currentVotes)); } Broadcast.announceToOnlinePlayers("Topzone: Current vote count is "+currentVotes+"."); Broadcast.announceToOnlinePlayers("Topzone: We need "+((lastVotes+voteRewardVotesDifference)-currentVotes)+" vote(s) for small reward."); Broadcast.announceToOnlinePlayers("Topzone: We need "+(firstPageVotes-currentVotes)+" vote(s) to get to the top "+firstPageRankNeeded+" of topzone for big reward."); } } } private static int getFirstPageRankVotes() { InputStreamReader isr = null; BufferedReader br = null; try { URLConnection con = new URL(page1Url).openConnection(); con.addRequestProperty("User-Agent", "L2TopZone"); isr = new InputStreamReader(con.getInputStream()); br = new BufferedReader(isr); String line; while ((line = br.readLine()) != null) { if(line.contains("<div class=\"slr\">"+firstPageRankNeeded)) { int votes = Integer.valueOf(line.split(">")[4].replace("</span", "")); return votes; } } br.close(); isr.close(); } catch (Exception e) { System.out.println(e); System.out.println("Error while getting server vote count."); } return -1; } private static int getVotes() { InputStreamReader isr = null; BufferedReader br = null; try { URLConnection con = new URL(topzoneUrl).openConnection(); con.addRequestProperty("User-Agent", "L2TopZone"); isr = new InputStreamReader(con.getInputStream()); br = new BufferedReader(isr); boolean got = false; String line; while ((line = br.readLine()) != null) { if (line.contains("<div class=\"rank\"><div class=\"votes2\">Votes:<br>") && !got) { got = true; int votes = Integer.valueOf(line.split("<div class=\"rank\"><div class=\"votes2\">Votes:<br>")[1].replace("</div></div>", "")); return votes; } } br.close(); isr.close(); } catch (Exception e) { System.out.println(e); System.out.println("Error while getting server vote count."); } return -1; } } Config: Either I put "http://l2topzone.com/totalvotes.php?id=8703" either " http://l2topzone.com/lineage/server-info/11179/la2dream " It's the same shit error... Thank advance..
  5. L2World x4 C3? (This server had 3 servers on same login. x4 / x10 / x15). Before 10+ years...
  6. 4) After you complete the captchas and vote for us you'll receive the vote buff which boosts +250 P.Def/M.Def and +3 RunSpd. for 12 hours. :rage:
  7. Why this server have "nice features" mate? It's one more same pvp server. 2 weeks server. Frank, I think you know much things about java or La2 servers, why you want to open a same shit like the others pvp servers? Come on guys! Open your mind and think! Think something new! Anyway.. Good luck Frank! Sorry if all that I said, seems angry or bad words, but it's the truth mate!
  8. acis, acis, acis.. Γιατί aCis για pvp server ρε παίδες? Τι θα σου προσφέρει ΟΛΗ αυτή η δουλειά που θα ρίξεις στο aCis αν πας να ανοίξεις pvp server? Το balance? Παίζετε ξύλο με +16++, ότι και να βάλεις, unbalance θα'ναι. Interlude άλλωστε μόνο archers μετράνε. Και σε mid αλλά και high rate. θες να ανοίξεις Interlude pvp? Κάνε frozen και διόρθωσε τα κάποια λάθη τους.. Αν ψάχνεις να σηκώσεις Mid rate, τότε ρίξε δουλειά στο aCis. Που είναι καθαρό project και τα Q δουλεύουν μια χαρά. Αλλά μην μου αρχίσεις aCis για pvp server, γιατί ΟΛΑ αυτά που θα σκεφτείς να codareis, θα σου φανούν δύσκολα στο αν δεν ξέρεις πολύ καλά από java codes. Τώρα αν οι γνώσεις σας πάνω σε java είναι προχωρημένες, σηκώστε acis και αυτό, γιατί στο frozen έχουν του κόσμου τις βλακείες από custom codes μέσα. Που κάποια θα είναι ανούσια να υπάρχουν! Άλλωστε για έναν "πολύ" σοβαρό pvp server, ότι και να βάλεις, θα πρέπει να ρίξεις πολύ δουλειά.. Εγώ αν άνοιγα pvp server, θα διάλεγα aCis για να επιλέξω τι θέλω να έχω μέσα από codes. Ουδέν σκέψη για το balance.. Αν το θέμα σου είναι το balance και δε σε νοιάζει τι υπάρχει μέσα από customs, τότε όπως σου είπα frozen! Στο balance ίδια δουλειά θα κάνεις είτε βάλεις acis είτε frozen..
  9. I've the latest version. No as free version! I can do the bot to move arround, it's not this the problem. All I want, it's to do buffs/teleport. Nothing else. Maybe I will try to re-write a ready script. I don't think I will help here.. Hey adr.bot! Yes, I think this one can be help me. Thank you! var item: TL2Item; function buffCheck: Boolean; var buff: TL2Buff; begin if not User.Buffs.ByID(1204, buff) then begin Result:=true; Print('Buffs are needed. Buffing...'); Engine.MoveTo(82968, 53240, -1488); Delay(500); Engine.SetTarget(30176); // NPC ID Delay(500); Engine.DlgOpen; Delay(500); Engine.DlgSel(1); Delay(500); Print('Buffed.'); Engine.MoveTo(82968, 53208, -1488); end; Result:=false; end; function deadCheck: Boolean; begin Result := false; if User.Dead then begin Result := true; Print('Dead. Pressing to village.'); Delay(1000); Engine.FaceControl(0,false); Engine.GoHome; Delay(10000); end; end; begin while true do begin delay(150); if User.inrange(80334,54400,-1552, 250, 150) then begin Engine.MoveTo(80334,54400,-1552); Engine.MoveTo(80969,53698,-1558); Engine.MoveTo(81540,53454,-1494); Engine.MoveTo(82480,53340,-1494); Engine.MoveTo(82950,53186,-1494); end; if User.inrange(82323,55466,-1520, 250, 150) then begin Engine.MoveTo(82323,55466,-1520); Engine.MoveTo(82403,54498,-1523); Engine.MoveTo(82589,53861,-1486); Engine.MoveTo(82950,53186,-1494); end; if User.inrange(82123,53535,-1488, 250, 150) then begin Engine.MoveTo(82123,53535,-1488); Engine.MoveTo(82950,53186,-1494); end; if User.inrange(80304,56241,-1552, 250, 150) then begin Engine.MoveTo(80304,56241,-1552); Engine.MoveTo(81470,55682,-1523); Engine.MoveTo(82256,55294,-1523); Engine.MoveTo(82510,54035,-1494); Engine.MoveTo(82950,53186,-1494); end; if User.inrange(82445,56012,-1520, 250, 150) then begin Engine.MoveTo(82445,56012,-1520); Engine.MoveTo(82341,54950,-1523); Engine.MoveTo(82574,53833,-1486); Engine.MoveTo(82950,53186,-1494); end; if User.inrange(80054,53209,-1552, 250, 150) then begin Engine.MoveTo(80054,53209,-1552); Engine.MoveTo(80624,53611,-1558); Engine.MoveTo(81772,53468,-1494); Engine.MoveTo(82289,53472,-1494); Engine.MoveTo(82950,53186,-1494); end; if User.inrange(80513,52980,-1552, 250, 150) then begin Engine.MoveTo(80513,52980,-1552); Engine.MoveTo(80165,53065,-1558); Engine.MoveTo(80630,53610,-1558); Engine.MoveTo(81688,53447,-1494); Engine.MoveTo(82303,53338,-1494); Engine.MoveTo(82950,53186,-1494); end; if User.inrange(80267,55497,-1552, 250, 150) then begin Engine.MoveTo(80267,55497,-1552); Engine.MoveTo(80359,54536,-1558); Engine.MoveTo(80792,53785,-1558); Engine.MoveTo(81495,53421,-1494); Engine.MoveTo(82323,53362,-1494); Engine.MoveTo(82950,53186,-1494); end; if User.inrange(79933,55752,-1552, 250, 150) then begin Engine.MoveTo(79933,55752,-1552); Engine.MoveTo(80349,55208,-1558); Engine.MoveTo(80470,54217,-1558); Engine.MoveTo(81053,53602,-1558); Engine.MoveTo(81974,53465,-1494); Engine.MoveTo(82950,53186,-1494); end; if User.inrange(80594,55837,-1552, 250, 150) then begin Engine.MoveTo(80594,55837,-1552); Engine.MoveTo(81899,55492,-1523); Engine.MoveTo(82240,55142,-1523); Engine.MoveTo(82531,53946,-1494); Engine.MoveTo(82950,53186,-1494); end; if User.inrange(82213,53964,-1488, 250, 150) then begin Engine.MoveTo(82213,53964,-1488); Engine.MoveTo(82668,53709,-1486); Engine.MoveTo(82950,53186,-1494); end; if User.inrange(83327,55410,-1520, 250, 150) then begin Engine.MoveTo(83327,55410,-1520); Engine.MoveTo(82607,55592,-1523); Engine.MoveTo(82184,54809,-1523); Engine.MoveTo(82563,53882,-1488); Engine.MoveTo(82950,53186,-1494); end; if User.inrange(79706,52986,-1552, 250, 150) then begin Engine.MoveTo(79706,52986,-1552); Engine.MoveTo(80427,53549,-1558); Engine.MoveTo(80812,53655,-1558); Engine.MoveTo(81979,53439,-1494); Engine.MoveTo(82950,53186,-1494); end; if User.inrange(82880,55390,-1520, 250, 150) then begin Engine.MoveTo(82880,55390,-1520); Engine.MoveTo(82375,55524,-1523); Engine.MoveTo(82367,54313,-1493); Engine.MoveTo(82651,53734,-1486); Engine.MoveTo(82950,53186,-1494); end; if User.inrange(82552,53447,-1488, 250, 150) then begin Engine.MoveTo(82552,53447,-1488); Engine.MoveTo(82950,53186,-1494); end; if User.inrange(82638,53885,-1488, 250, 150) then begin Engine.MoveTo(82638,53885,-1488); Engine.MoveTo(82950,53186,-1494); end; if user.inrange(82888, 53240, -1488, 500) then begin buffCheck; end; if user.inrange(82968, 53208, -1488, 150) and User.Buffs.ByID(1204, buffCheck) then begin Print('Teleport to Apostate.'); Engine.SetTarget(30832); Engine.DlgOpen; Delay(500); Engine.DlgSel('Catacomb'); Delay(500); Engine.DlgSel('Apostate'); Delay(5000); end; if user.inrange(-20237, -250797, -8163, 500) then begin Print('Apostate. Moving to spot'); Engine.MoveTo(-20168,-250744,-8160); Engine.MoveTo(-19304,-250728,-8160); Engine.MoveTo(-18968,-250504,-8160); Engine.MoveTo(-18456,-250504,-8160); Engine.MoveTo(-16792,-250536,-8160); Engine.MoveTo(-16424,-250760,-8160); Engine.MoveTo(-14888,-250776,-8160); Engine.MoveTo(-14536,-250424,-8160); Engine.MoveTo(-14408,-249160,-8160); Engine.MoveTo(-13768,-249064,-8160); Engine.MoveTo(-13736,-247848,-8160); Print('AA farm: ON!'); Delay(500); Engine.FaceControl(0, true); while not deadCheck do delay(1000); //while not dead, do nothing and wait. end; end; end.
  10. What you mean "the kid cryer of L2Neo"? For what thing cryer? Maybe you little men, confuse me with someone else ... Go play L2 now, give your time there, and after 15 years of playning, then come and tell me "cryer". Good Luck!
  11. Hello guys. I want to ask something.. I use adrenaline for over 3 months, but I can't find a way to make my bot to do teleport in a position. For example: When my bot dies, I want to take re-buffs and teleport in a zone. After this, to walk arround in another locations. Sorry for my bad english..
  12. This "shit" as you call it, it's working perfect on l2blaze.
  13. Καλησπέρα φίλε. Εγώ προσωπικά θα σου πρότεινα να κάτσεις λίγο καιρό και να ασχοληθείς μόνος σου να μάθεις 5-6 πράγματα, και να το ανοίξεις όπως θες, αφού λες πως έχεις "κάποιες πολύ καλές ιδέες", παρά να χαραμίσεις άδικα τα λεφτά σου για κάτι που θα μπορέσεις να το κάνεις και μόνος σου με λίγη υπομονή. Ήμαστε στο 2015, όπου ΟΛΑ μα ΟΛΑ είναι share, και με πολύ βοήθεια. Τίποτα δεν είναι δύσκολο αν προσπαθήσεις να το μάθεις. Αν θέλεις για pvp server, υπάρχει αυτό το L2JFrozen, (αν υπάρχει ακόμα, δε ξέρω γιατί δεν ασχολούμε με αυτά πλεόν), να σηκώσεις κάτι όπου ακόμη και να μην πάει καλά, θα έχεις μάθει λίγα πράγματα. Μην ακούς που λένε "όχι frozen γιατί είναι unbalance", παίζεις pvp server me +16++, όπου ότι και να βάλεις, πάλι unbalance θα είναι.. Βέβαια μακράν καλύτερο το aCis, αλλά pvp server θες να ανοίξεις χωρίς να γνωρίζεις 5-6 πράγματα, άρα μην προχωράς ακόμη σε τέτοια.. Μια χαρά θα σε βολέψεις για αρχή το frozen. Δεν μου αρέσει να βλέπω topics όπου ψάχνουν δήθεν "καλούς" developer, γιατί το maxcheatets δεν έκανε ποτέ κανέναν "developer". Developer εδώ μέσα είναι μόνο ο SweeTs και ο Tryskell. Κανένας άλλος! Οι δήθεν απλά ακολουθούν τα ήδη share και τα εμπλουτίζουν, κάτι που θα κάνεις ο ίδιος αν ασχοληθείς λίγο καιρό. Αυτά! Καλή συνέχεια, και καλή τύχη στην αναζήτησή σου!
  14. 'Baggos'

    Gamepad

    I found the problem.. Thank you guys for your help... Lock it.
  15. 'Baggos'

    Gamepad

    I already tried a tool from here but the same problem... The controller it's working only in the tool.. Maybe I do something wrong, I don't know... Can you help me more? Send me PM when you have the time to give me some help..
  16. 'Baggos'

    Gamepad

    I buy it from e-shop. The gamepad it's ok, something else block the controller on games.. But what??? PRO 2015 Prototype I tried it to move the camera on Lineage 2 with the gamepad, and it's working... But on pro and prototype nothing happens... Something block the controller on the games, but I don't know what..
  17. 'Baggos'

    Gamepad

    hello people. I've buy a gamepad <Natec Genesis P44 LIMITED> for my PC and it's not working. I've connect it normally to my usb port. I've install the driver, but nothing.. On Contorl Panel -> gamepad, all it's ok. The gamepad it's working there, but no on the games.. Any idea?
  18. Καλησπέρα παιδιά. Σήμερα μου είπανε πως υπάρχει κάποιο πρόγραμμα, το οποίο επιλέγεις τα ματς που θέλεις να σου καφτάρει, και το κάνει αυτόματα.. Δηλαδή, ενώ εγώ έχω μέσα online τον crafter μου, το πρόγραμμα θα δημιουργεί αυτόματα, τα ματς που θέλω. Όπως π΄.χ Mithril Alloy. Μήπως κάποιος γνωρίζει πως λέγεται αυτό το πρόγραμμα? Δεν γνωρίζω περεταίρω πληροφορίες... Ευχαριστώ προκαταβολικά..
  19. Όπως σου είπα και στο ΠΜ, είναι πολύ παλιό για να ασχοληθείς μαζί του, μιας και πλέον έχουν βγει νέοι κώδικες, καλύτερα commands κτλπ.. Στείλε πάντως μια φώτο από το gameserver console, να δούμε τα error που βγάζει..
  20. χαχαχαχαχα... Τα διάβαζα και έλιωσα... Καλησπέρα μάγκες..
  21. I had tried 2 hours later and nothing. Anyway.. I don't tried to log with this programm. I had it alive on my pc from a another server. (Once I saw it, I stepped enable to try it ,and QQ). Anyway now it's ok. I can play normally because I speak with admin.
  22. I get ban IP, because I tried to use Andrenaline. What I can to do to play with my friends? Ok, give me ban the main account. Why I cannot play with another? I have create 4 accounts but nothing. I have change my IP, nothing... I started today with 12 friends. I do a stupid thing, can you do something?
  23. Hello people! Before few days I start in bellow server. As I can say, it's a very good mid rate server. You can try it.. The server it's not mine. Just I play there.. Website: http://l2grimm.com/ SERVER RATES: • EXP/SP: x35 • Party EXP/SP: x1.5 • Adena: x65 • Drop (chance): х10 • Spoil: x10 • Raid boss drop: Quantity - x5 / Chance - 1.5 x Drop rate(x10) QUESTS: • Gather the Flames x5 • Relics of the Old Empire x5 • Delicious Top Choice Meat x3 • Alliance with Ketra/Varka x5 • War with Ketra/Varka x5 • Heart in Search of Power x5 • The Zero Hour x6 • Yoke of the Past x5 • In Search of Fragments of Dimension x5 • Reward (adena/EXP/SP): x10 7 SIGNS PERIOD: • Seven Signs cycle period is:Aproximately one week. • Between Quest Registration and Seal Validation there is a 15 minutes period for Seal Calculation and preparing the Validation Period • Quest Event Period begins on Monday 6 p.m. Events: • TVT fixed hours:11:00; 13:30; 15:30; 18:00; 21:00; 23:30; 01:30; 04:00; 07:00; • CTF fixed hours: 16:00; 20:00; 23:30; 02:30; 06:00; 10:00; • DM fixed hours: 13:00; 17:00; 20:30; 23:50; 04:30; CHAMPIONS: • Champions are very important here. Beginning with level 20, they will drop Surprise Boxes that will give your game an element of excitment, thrill, relief. • Champions will be 4x times stronger than ordinary npc and the reward is 12x times bigger. • Chance for a monster to become champion is: 10% • Chance for a champion to drop Surprise Box is: 70% GM SHOP: • Armors: Up to B grade. • Weapons: up to B grade. • Jewels: up to B grade. • Entertaiment Stuff: Ordinary Masks, Fireworks. • Consumables: Enchant scrolls (Grades: D,C,B - only armor). Dye, General Stuff: Shots, Arrows, other consumables • Recipes and Materials: Recipes: All materials recipes - with Ancient Adena, Materials: First grade materials - Stem, Animal Bone, Animal Skin, etc. • Special Section: Based on Event Coins: Book of Giants, Clan Skill Items, Epic Bosses Quest Items: Blooded Fabric, Portal Stone, Floating Stone, Life Stones, Divine Inspiration book, Caradine Letter lvl 65, Silver Pack - Box, Farm Buff Book, Weapon heads/shafts/edges, Fresh Box. Based on Adena: Blood Mark, Alliance Manifesto, Seal of Aspiration NPC BUFFER: • Normal Buffer and Scheme Buffer - on the same Npc. • Max allowed schemes: 4 / char. • Ordinary Buffs: For free. • Songs: For free - not including 3rd songs. • Dances: For free - not including 3rd dances. • 3rd Buffs: For free - including Prophecy of Fire, Water, Wind. PERSONALIZED SERVER FEATURES: • GENERAL: • Starting with non grade equipment and soulshots packs + 50 k Adena. • Unstuck command has been set up to 30 seconds duration. • Skills – autolearn except divine inspiration. • Buff time - 1 h + 10 minutes. • Pickup – autoloot • Mana Potion – 400 mana recharge • Weight limit – x3 more • Dual-box: Allowed - max 5 box • Offline shop system: Working - activated by .menu • Noblesse Quest: Retail like - Caradine lvl 65 Letter in Shop, section Special. • Anti PvP-farm: PvP against clan, ally, same ip, 30 lvl difference will not count as kill, thus no PvP increasing score. • Daggers / Archers are not allowed to wear heavy armor. • Class change: • 1st class: 50k Adena • 2nd class :1kk Adena • 3rd class: 10kk Adena + 15 Event Coins USEFUL SERVER COMMANDS: • .menu – Disable exp/sp, Disable SoulShot animation, Disable Trade, Disable auto-loot, Become AiO, Repair character. • .deposit – turns 500.000.000 Adena into one gold bar. • .info – access the server information anytime. • .bug – used to report any bug anywhere in the game. This is very important, because it is sent directly to the Admin+Gm’s e-mail. Once checked, you can send new reports. PROTECTION: • Buff Block – Customized block buff very friendly. Blocks incoming buffs but allows you to self-buff and allows party members to buff you. • Customized character+account protection: Very friendly usage and interface, this option allows you to setup a security question in order to protect your account. You only setup this once and it will only require the security answer if the account is accessed from a different computer. • Customized server protection against – DDOS, SYN Flood, ICMP Flood, LAND attack, SMURF Attack, WinNuke Attack, PingSweep Attack, other DOS, etc. • Bot Protection: We are very precautious about this part. Right now there isn`t any software available that protects 100%. So we designed a custom protection. Cannot give details about mechanism but protects against ALL current bots – Botters can be banned on login, on char select, after 5 minutes or after 2 hours. NO warnings given so don’t try. • Anti dual-box exploits(max 4 - for now), anti subclass exploits, anti sell/multi-sell/trade/store exploits, anti-geodata exploits, anti pvp farm, anti Olympiad exploits protection etc. etc. • Entrance and alleys protected from private stores: Giran, Aden, Goddard alleys, stairs, entrances. • Soulshot skipping shot bug fixed, some quests small fixes applied, buffer stuck/bug/lag fixed SUBCLASS: • Subclass system is based on an original idea, a special quest designed by our team. You will need to step into a story of a long forgotten war between Lair of Antharas and Tower of Insolence. The whole war was fought with deception and the unjustice done remained until now. You have to set the things right, and claim justice to those banished and casted out. • You will be given two special spears: Death Horn of Karik and Lightning Spear of Kernon. In order to set things right you need to shed the Blood of the Sinners: Death Lord Hallate and Longhorn Golkonda • With the Death Horn - of Karik you will have to stab Hallate while he has lesser than 40% HP (<40%) • With the Lightning Spear - of Kernon you will have to cut the flesh of Golkonda while he has lesser than 20% HP (<20%) • The blood of the Sinners will turn your spears into Red. These will be your proof that you slayed requested raid bosses. • With the Spears coated in blood you must speak with subclass manager NPC and finish the quest. Only then you may proceed to do yourSUBCLASS. SERVER SPECIAL ITEMS: Event coin - are designed to purchase items from GM Shop: Masks, Life stones, Noblesse lvl 65 letter, Buff books etc. Also you can upgrade your Clan Lvl with them. You can achieve Event Coin by Voting or participating in Events. Donation coin - are designed to purchase items from Donation shop: Ketra/Varka Alliance lvl 5, Enchants, Nobless/AiO/VIP items -check the descriptions below for details. Also you can transfer Enchants/Augs, change Name etc. These can be obtained by donation. Noblesse coin - is designed to become Noblesse and can be found in Donation shop - section: Special Items. You only need to double click this item. This item can be obtained with donation coins. Clan crown - is designed to increase your Clan level to 8 and give your Clan full reputation. You need to be a Clan Leader in order to use this item. This item can be obtained with donation coins. VIP Coin - is designed to become a Vip for 24 Hours. A VIP character will have EXP,ADENA, SPOIL and DROP doubled. You can buy this item with donation coins from Donation Shop. AIO item - is designed to become an AIO for 15 days. An AIO, is a character that instantly becomes lvl 80 and receives Buffs that lasts for 2 hours and 20 minutes. However AiO cannot leave town or buff outside the village. This item can be obtained with donation coins. Wooden Surprise Box - a beautiful box that can be found on champion monsters - lvl 20-40. This box will provide some random reward: Adena (250k), Materials (Iron Ore, Animal Bone etc.) Water Surprise Box - a wonderful box that can be found on champion monsters - lvl 40-60. This box will provide some random reward: Adena (700k), Materials (Iron Ore, Animal Bone etc.) Sweet Surprise Box - a sweet colored box that can be found on champion monsters - lvl 60-75. This box will provide some random reward: Adena (1,6kk), Advanced Materials (Crafted Leather, Varnish of Purity etc.), Recipe Jewel A grade, enchant A grade. Fresh Surprise Box - an awesome box that can be found on champion monsters - lvl 75+. This box will provide some random reward: Adena (3kk), Advanced Materials (Mithril Alloy,DMP etc.), Recipe Armor A grade, enchant A grade. Magic Pack - an outstanding coffer that can be found on Raid Bosses - lvl 75+. This box will provide some random reward: Tateossian recipe, Ancient divine original book(lvl 2), Manuscript(lvl 3), Enchant S grade, Strider Silver Pack - a full silver made coffer that can be found on GM Shop - section Special. This box will provide some random reward: Beautiful Accessories. What makes it so special ? Many of the these accessories cannot be found on the ordinary GM Shop!. Golden Pack - a coffer made from the purest gold of L2 World that can be found on Donation Shop. This box will provide some random reward: S grade armor recipe, Ancient language book(lvl 4), Blessed enchant s Grade, Noblesse Coin, Wyvern Item. Farm Buff Book - a valuable book, that upon reading allows the player to buff himself. Includes all buffs + Cat Buff/Seraphim but does not contain: Resists, Malaria/Flu. However, this cannot be used while fighting, events, olympiad, riding a wyvern, etc. PvP Buff Book - a valuable book, that upon reading allows the player to buff himself.Includes all buffs + Cat Buff/Seraphim + Resists but does not contain: Malaria/Flu. However, this cannot be used while fighting, events, olympiad, riding a wyvern, etc. AiO Buff Book - a valuable book, that upon reading allows the player to buff himself. Includes all buffs and also: Ressists + Malaria/Flu. However, this cannot be used while fighting, events, olympiad, riding a wyvern, etc. RAIDBOSS: • Raid Bosses will respawn in 12h + 2 h random time with the following exceptions: Barakiel - 5h + - 30min Death Lord Hallate - 6 h +- 30 min - for Subclass quest Longhorn Golkonda - 6 h +- 30 min - for Subclass quest Varka’s Hero Shadith - 10 h +- 1h - for Alliance lvl 4 Ketra’s Hero Hekaton - 10 h +- 1h - for Alliance lvl 4 Varka’s Commander Mos - 10 h +- 1h - for Alliance lvl 5 Ketra Commander Tayr - 10 h +- 1h - for Alliance lvl 5 Following Raid Bosses have a chance ( ~80% ) to drop Magic Pack: Kernon Storm Winged Naga Last Lesser Giant Olkuth Last Lesser Giant Glaki Palatanos of Horrific Power Death Lord Ipos Death Lord Shax Fire of Wrath Shuriel Hestia, Guardian Deity of the Hot Springs Longhorn Golkonda Ember Uruka Soul of Fire Nastron Soul of Fire Ashutar Sailren Master Anays EPIC BOSS: Orfen: 20 h + 1 h random Core: 30 h + 1 h random Queen Ant: 24 h + 1 h random Zaken: 40 h + 2 h random Frintezza: 60 h + 2 h random Baium: 100 h + 1 h random Antharas: 140 h + 2 h random Valakas: 170 h + 2 h random OLYMPIADS: • Olympiad period – 1 week. • Olympiad starting at 18:00 GMT +2 and ending on 00:00 GMT+2 • Olympiad Class Based fights starts with 5 participants. • Olympiad Non-Class Based fights starts with 9 participants. • Items forbidden in olympiad: Coins (Noble coin, Aio item. Clan coin, etc.), Champion/Raids Boxes, Buff Books (all of them), Wyvern Item • Augments in Oly: Allowed • All other settings: Like Official L2 Server. Website: http://l2grimm.com/
×
×
  • Create New...