Jump to content

Kara

Banned
  • Posts

    2,100
  • Joined

  • Last visited

  • Days Won

    46
  • Feedback

    100%

Everything posted by Kara

  1. After some work we had he asked to buy the tournament system but he said he dont have money in paypal so i gave it to him and told him to pay me later. 5 days later he said he added money but paypal held money for unknown reason and i had to wait 10 days. After 17 days he said he wont pay cause its full of bugs. The full of bugs is just 2 known issue: 1. Some extra code (check when player participate in tournament and no let him join again for 24 housr) which i wrote him few days ago which the problem is at player.sendMessage(); it says 5025230 hours cause i forgot to delete the System.currentMilliseconds() 2. Players can revive during match (which i again forgot to add a check on Ressusect.java to not work during match). After blabla i asked him to enter to fix those 2 and he denied while continously writting with caps FULL BUGS FULL BUGS like most of latino do. So basically after 17 days i got no money + he deny me to enter and fix those 2 line fixes. I literally told him even after 17 days to enter and fix the damn wrong message to the player and he continue saying about the bug as if he dont know a shit of what grammar is. Idk why latinos are not banned from this community yet. His server is L2Grimson His skype:
  2. I have a better idea. Download Lisvus files, make a C4 server, create a char, login and make +30 and say you're GM also :'( its very trueeeeeee
  3. Ya noob :'( thats very sad storki. He can't find your char in database because you were too noob for this SQL Afcourse you're not me. If you were u would be einstein or something :'(
  4. [GR] Περιοδο εχεις? Φυσικα και δεν ειναι ο real gold. [/GR]
  5. No shit, 6 days ago someone asked for a system that even elfo would sell it 300+ euro for free and because i comment "stop asking for free stuff and blabla people work and need money" Nevermore came and gave me -1 reputation for no reason rolf and because i called him "id**" i got banned for 5 days. Sure calling Idiot someone give 5 days ban but having 500 topics and bump them or give -1 reputation for no reason is fine.
  6. His work is already shared :D a client yesterday pm'ed me and said he ask 80 euro for 3 NPC's and 5 min later he said "np i downloaded from l2rr" I hope they join this topic and comment. And about his topics, sure next time i code something ill open new topic so Marketplace will end up with 5000 topics of mine. They are friends with celestine and deMEV and they give reputation to each other for no reason.
  7. Whats wrong with those two? Everyday they spend their 5 rep points in adding them onto random posts of each other Many people on skype came lately and told me that virus ask huge prices for stuff that are shared in russian sites. More than 2 people in 1 month came and said he ask 100 and 300 euro for 3-4 NPC's that 2 min later they downloaded from ru sites. Ex. http://l2rr.ucoz.ru/load/npc_for_interlude/npc_ndwarf_warrior_for_interlude/8-1-0-1861 and i hope those persons who are VIP in this forum to check this topic and reply to confirm it if you think i lie or so. Whats the advance of being russian? You can join and read unreadable sites that others can't reach or search? I'm 100% that most of the work of ViruS is shared, still 5000 reputation and 100000 euro prices. ViruS has more than 200 topics in Marketplace. So basically everytime i make a code i should make a new topic? I'm the idiot who post all my codes in 1 topic as a list a? Why i have to see ViruS, ViruS, ViruS, ViruS, ViruS, ViruS, ViruS, ViruS, ViruS, ViruS, and then other WTS topic? Maxtor you're 7.5 years busy adding the banned group and ignore basic stuff. Got scared by Elfocrash for losing money and added the "Agreement statement" upon enter in site but for people who make 5000 topics and abuse the reputation system you close your eyes. Ps. ViruS stop using 3D's max LOGO in your video thumbnails. You don't know how to use 3D's max, other than just import -> export
  8. Εκτος σερβερ δηλαδη στο website?
  9. Don't be bitch else i'll SIN you :)) bitchhhhhhhh
  10. Ok stop crying now, i'll make a Gold Balance server, insert the nickname and make you happy! My server will be 200% balanced trust me.
  11. It's ur fault. Brutus got banned for scam 200 euro few days ago @Maxtor That happened because of you. Cause you haven't add banned group yet and people still pm to brutus and add him on skype.
  12. O Designatix σβηνει οτι σχολια δεν του αρεσουν. Γεμισαμε χοντρους :'(

  13. What you mean compose?
  14. Searching about 2.5 months now in all sites, all softwares (shazam midomi e.t.c) all forums this classical instrumental song: Anyone have a clue what this song is? Thanks.
  15. Hello, just a quick question. I noticed while i ride Wyvern in all L2J revisions, monsters can hit you even if you're flying at the top. In official how this work? Above X difference of Z hit cannot be done? Or can someone enlight me?
  16. I won't even bother answer seriously mostly because wannabes like Nightwolf come and judge someone's code who wrote it in 1-2 minute while playing DotA. And to be honest i'm done with this forum anyway so that was my last post.
  17. Yeap and if it works come back and give me 1.000 euro, took me 2 minutes.
  18. I made you a quick code, is up to you how to use it e.t.c package com.l2evie.gameserver; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import com.l2evie.L2DatabaseFactory; import com.l2evie.gameserver.model.actor.instance.L2PcInstance; /** * @author Evie Frye */ public class Color { private static Color _instance = null; public static Color getInstance() { if (_instance == null) { _instance = new Color(); } return _instance; } /** * @param objectId * @return */ public void setColor(final L2PcInstance activeChar) { Integer[] holder = null; try(Connection con = L2DatabaseFactory.getInstance().getConnection()) { ResultSet result = con.prepareStatement("SELECT hexName, hexTitle FROM character_color_table WHERE objectId = " + activeChar.getObjectId()).executeQuery(); if (result.next()) { holder = new Integer[]{(Integer.parseInt(result.getString("hexName"))), Integer.parseInt(result.getString("hexTitle"))}; } } catch(SQLException e) { return; } if (holder !=null) { activeChar.getAppearance().setNameColor(holder[0]); activeChar.getAppearance().setTitleColor(holder[1]); activeChar.broadcastUserInfo(); } } /** * * @param objectId */ public void storeColor(final L2PcInstance activeChar) { try(Connection con = L2DatabaseFactory.getInstance().getConnection()) { PreparedStatement statement = con.prepareStatement("INSERT INTO character_color(objectId, hexName, hexTitle) values(?,?,?) ON DUPLICATE KEY UPDATE hexColor=?"); statement.setInt(1, activeChar.getObjectId()); statement.setInt(2, activeChar.getAppearance().getNameColor()); statement.setInt(3, activeChar.getAppearance().getNameColor()); statement.execute(); } catch(SQLException e) { } } } And the SQL: /* MySQL Data Transfer Source Host: localhost Source Database: l2jgs Target Host: localhost Target Database: l2jgs Date: 4/3/2018 9:18:52 PM */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for character_color -- ---------------------------- DROP TABLE IF EXISTS `character_color`; CREATE TABLE `character_color` ( `objectId` int(10) NOT NULL, `hexName` text NOT NULL, `hexTitle` text NOT NULL, PRIMARY KEY (`objectId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; Consider those should load once upon server start and server shutdown to avoid connection everytime a player login and logout but nowadays with so fast queries and store procedures nobody cares. To use the code just go on EnterWorld and write Color.getInstance().setColor(activeChar); and to store go in L2PcInstance, find cleanMe method and somewhere inside write: Color.getInstance().storeColor(this);
  19. Lock it, he didn't know L2J had this way implemented, he will get scammed..
  20. What is your problem? I would love to know about your life. Are you goin to sit behind ur pc and continuously judge for the next 20 years as if i care? I would advice you to continue if somehow u could affect my life but since u cant just move on and let people continue their lives also. Stay in past while everyone move forward gj
  21. Ok stop hate me :/ i wont enter in maxc again you guys ruined my month :'(
  22. Like always wrong? Tell me cases i was wrong. I give you arguments about what i say and you say im wrong. It's not a low rate server it's mid. Why he want empty char when he can make-levelup in 3 hours? Seriously he just want free items (which is not bad lol) just saying that he is interest in items no the char itself. Else ill give him right now 3 accounts with 75 level chars, i'm sure he won't care cause they have no items in. ...
  23. Don't talk to me like that you fucking bitch :/ you made me sad now... Obviously it's not the acc it's the item. L2Elite is x45 you make 78 lv char in 3 hours. I think he wants the item inside no the acc iself am i right S w e e e e e t s ?
  24. Add me on skype if you want
  25. Afc they never wiped l2elite is obviously the best server ever. I made an acc in 2008 and i found it in 2017
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock