Jump to content

`Son

VIP Member
  • Posts

    318
  • Credits

  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    0%

Everything posted by `Son

  1. Read this after i posted. Already messaged the guy. Thanks e-warrior :D
  2. First of all, im just comparing pretty simple stuff. The fact that you are selling 10 revisions per each period of aCis is just some garbage logic because as pretty much said any kind of customer expects to see innovative things plus some future plan on the project. Something that aCis lack for many reasons. The last big rework you did was like hmm maybe a year ago or even more with Knownlists which could really make some difference affecting the game in total. After that your project remained ALMOST the same ridiculizing urself and your big ego as the grand leader of THE grand project and you delivered almost nothing. "Used to be good" ? What makes it WORST than before ? --> Yes it used to be better when you've been active reworking core issues. There are million of things to start reworking but still u just stay commiting bullshit micro-optimizations which have minimal meaning in the end of the day. Moreover, if you find it doesn't go fast, you can help. It's a collaborative project. --> Being an ass in every single topic doesnt really help collaboration. Skill differs from coder to coder but still. Being the same kid as xxDem doesnt really help at all. Stick to L2JFrozen/Hellas/Archid/vanilla if you're unhappy. I don't force you to use my pack. --> Im refering to aCis and not to any other garbage Greek or Russian project since they never really had any kind of potential in contradiction with aCis so get real.
  3. The following codes are just some tools i made years ago on the go to help me deal with time consuming shits faster. Code is not perfect, its crap and stupid but still will help you work faster instead of wasting time doing things by hand. 1. Add new zones while in game. Just hit //addzone (ID) and put the first zone_id which is going to be put in ur zone_vertice in DB. Once you u hit the command, all the next calls will continue adding routes for the previous ID. If you wanna go for another ID just call the first command again. public class AdminZone implements IAdminCommandHandler { static int _zoneId = -1; private static final String[] ADMIN_COMMANDS = { . . "admin_addzone" }; . . . @Override public boolean useAdminCommand(String command, L2PcInstance activeChar) { . . . else if (actualCommand.equalsIgnoreCase("admin_addzone")) { if (st.hasMoreTokens()) { try { int zoneId = Integer.parseInt(st.nextToken()); if (!checkIfZoneExists(zoneId)) { // add new field in db addNewZone(zoneId, activeChar.getLoc()); activeChar.sendMessage("New zoneId added!! new zoneId: " + zoneId + "."); activeChar.sendMessage("Added new route point. zoneId: " + zoneId + " X: " + activeChar.getLoc().getX() + " Y: " + activeChar.getLoc().getY()); _zoneId = zoneId; } else { // already exists, find last route and add next with route ++ addNextRoute(zoneId, activeChar.getLoc()); _zoneId = zoneId; activeChar.sendMessage("Next route added for zoneId: " + zoneId + " X: " + activeChar.getLoc().getX() + " Y: " + activeChar.getLoc().getY()); } } catch (Exception e) { activeChar.sendMessage("Incorrect zoneId specified"); e.printStackTrace(); } } else { try { if (_zoneId < 0) { activeChar.sendMessage("ZoneId is negative."); return false; } // already exists, find last route and add next with route ++ addNextRoute(_zoneId, activeChar.getLoc()); activeChar.sendMessage("Next route added for zoneId: " + _zoneId + " X: " + activeChar.getLoc().getX() + " Y: " + activeChar.getLoc().getY()); } catch (Exception e) { activeChar.sendMessage("Incorrect zoneId specified"); e.printStackTrace(); } } } 2. Add automatically drops to more than 1 monster. (same droplist). Edit the first sql u can select all the monsters/raids you wanna add the same droplists, fill the drops void method with the drops and THE STRUCTURE that ur droplist table follows. Execute the file and get the output(sql code which u can call from an sql query to apply those changes in ur table. package test; import java.io.File; import java.io.FileNotFoundException; import java.io.PrintStream; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.util.ArrayList; import net.sf.l2j.L2DatabaseFactory; import net.sf.l2j.gameserver.datatables.FakePcsTable; class AddDropRaids { public static void main(String args[]) { ArrayList<Integer> raids = new ArrayList<>(); String RAIDBOSSES = "SELECT boss_id FROM raidboss_spawnlist WHERE `boss_id` IN (SELECT id from npc where `type`='L2RaidBoss' AND `level`>84 AND `level`<90);"; try (Connection con = L2DatabaseFactory.getInstance().getConnection(); PreparedStatement st = con.prepareStatement(RAIDBOSSES); ResultSet rs = st.executeQuery();) { if (rs.next()) { raids.add(rs.getInt("id")); } } catch (Exception e) { e.printStackTrace(); } droplist89(raids); } public static void droplist89(ArrayList<Integer> raids) { for (int raid : raids) { try { if (FakePcsTable.getInstance().getFakePc(raid) == null) { PrintStream myconsole = new PrintStream(new File("E://output.txt")); System.setOut(myconsole); myconsole.println("INSERT INTO `droplist` VALUES ('" + raid + "', '1000002', '1', '1', '17', '100000', '9', '0');"); myconsole.println("INSERT INTO `droplist` VALUES ('" + raid + "', '1000075', '1', '1', '18', '5000', '0', '0');"); myconsole.println("INSERT INTO `droplist` VALUES ('" + raid + "', '1000031', '1', '1', '19', '1000', '0', '0');"); myconsole.println("INSERT INTO `droplist` VALUES ('" + raid + "', '60081', '1', '1', '20', '5000', '0', '0');"); myconsole.println("INSERT INTO `droplist` VALUES ('" + raid + "', '1000076', '1', '1', '21', '80000', '0', '0');"); myconsole.println("INSERT INTO `droplist` VALUES ('" + raid + "', '1000070', '1', '1', '22', '150000', '0', '0');"); myconsole.println("INSERT INTO `droplist` VALUES ('" + raid + "', '98020', '25', '25', '23', '1000000', '10', '0');"); } } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } } Im sure i got more of such tools. Gunna share with u more in case i discover them.
  4. Isnt this a public forum? You're the one barking when you get some negative feedback about your project. Acis used to be good yes sometime in the past. The last months theres no progress and useless commits in ur git/svn or w/e u use. You should just either deal with it or just commit something when theres some real rework which someone worths spending money on ur freemium system.
  5. Can't see any reason contributing in such a project. You're pretty much the same arrogant craphead as xxdem. Also please change your signature. Your name combined with the word mature in the same paragraph just insults the meaning of the word.
  6. You should recode most of your crap instead of just renaming, just saying.
  7. Can u explain it on Greek? Your english is meh .. >.>
  8. Theres no real need for me to post any kind of Skype conversation of your reasons. This is your life and not anyone needs to know. I will not get so low. So you claim not being able to reach computer by any means in between the week and you cannot contact me. I pretty much understand this. Can you please explain me how is it possible for you to reply on other forums or here when you cant reach a computer just to type simple stuff like "I WILL BE AVAILABLE X DAY, Y HOUR". No its my fault being angry after waiting 5 months for something. I pretty much know that when i CANT finish something im just not getting the responsibility and the money to take the job and whatsoever. I will repeat once again. Im not getting mad with you being busy IRL or whatever it is. I demand to BE INFORMED AND ONLY whats the progress on something i ordered + prepaid and there are 5+ months passed since then and still in absilutely crap stage.
  9. I guess you are the smart guy over here who doesnt even read a sentence. I would like you to read the topic i posted already. The guy got prepaid for something and never finished it also hes doesnt refund the money or reply back to me.
  10. So im here to finally report this guy for good. Im here to provide all the proofs as he is literally not trusted of doing any kind of transaction with you. The first topic i made and in which he replied is this. So long story short. Neophron after almost a month replied back saying he had health issues etc. Unfortunately we are most likely being fooled since this guy never went again either online so i could talk to him or made some serious effort to get my product fixed. I'll just say that those 5 months after he got pre-paid for some work the only thing he ever said for the product he delivered is just that he doesnt know how to fix some function which pretty much he can just copy/paste from the original interface. Also, 6 hours ago, i posted in http://forum.l2soft.eu for which Neophron is working reporting him but my topic got deleted with a really miraculous way. I just made a new one so lets see how fast this will go down aswell. http://forum.l2soft.eu/index.php?/topic/110-bugged-interface/ Dont trust this guy for anything.
  11. Idk about you @SkyLord , but L2Neophron just delivered me the product.
  12. Well im not here to create drama. I fully respect you, just reply to my Skype messages whenever you can.
  13. It all started at 4 of July when i talked to the guy to do some stuff for me. http://prntscr.com/gl5xt3 So we had a deal, http://prntscr.com/gl5ye5 . They confirmation of the 1st pre-payment. http://prntscr.com/frjy8g http://prntscr.com/gl5yyd So it was a clear deal. This was the first preview. http://prntscr.com/gl60u6 http://prntscr.com/gl616n 10 of August was the second time i sent him money and we both agreed i would send him the rest 50 when id receive the product. http://prntscr.com/gl61so The last message i ever got from him was at 18th of August. I tried many times to contact him w/o spamming same day because everyone can be busy with real life issues but no answer was given. http://prntscr.com/gl62me In addition to all this, my 2 payments was as Friends or Family since this guy was a trusted person with some high reputation here in MaxCheaters. Its just sad to see this kind of treatment (ignoring) to customers who agree to prepay unconditionally when everyone says "PRODUCT FIRST UGH UGH!". my2cents @L2Neophron If you are still interested finishing what you didnt, and for real dont want to continue being an ass. Give some explanation.
  14. Prepaid this guy for some work. He never finished the job (he made progress). Ignores skype messages so far (30++ days passed). I paid him via PayPal and as the guy seemd to be a trusted person i prepaid with method Friends and Family so i cant even dispute.

  15. long stuff, you have mostly to upgrade your libs sad if u dont have the sources then opts are extra
  16. I just visited this Telegram group. Gladicek was on her period, she bite me. True and confirmed story.
  17. I guess l2red is indeed l2off. roflmao http://prntscr.com/er8rhn Source: http://l2-scripts.com/index.php?show_aux_page=28
×
×
  • Create New...