Jump to content

Afou To Patisa

Members
  • Posts

    85
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Afou To Patisa

  1. Banned for what? Because i opened a report topic ?
  2. Just don't spread lies behind my back for scam. I never tried to sell you multiclient code. I said ill check it and i 5 min later i said i won't work with you obviously because i can't do it. If you don't like me you can simply no pick me for coding but don't create fake enviroment around me as if i tried scam you.
  3. I don't do client editing. I said ill check it and 5 min later i send i can't do and i wont work with you. I don't see how he say "I tried to scam him". Ask him to show you the conversation :) It was like: - Can you do it? - Ill check it and tell you. 5 min later. - No i cant i wont work with you. If you don't believe me ask him to show u conversation, i didnt try to sell him anything. He just got rejected and because he can't find anyone he got mad and write random stuff.
  4. No really i just dont care. I have more important things to care than just a greek who is same age with me and he try teach manners while in his life is worst. Plus i never hated anyone in this forum. They accept as hate the fact that i trashtalk to kids who open topics and asj things like "i want someone to make me a server for free". Its not baggos or reborn problem they just show how sad they are inside them. Its my problem for write down and respond while i just use this forum as marmetplace to buy and sell. Anw goodluck aint write further more. No worth to waste my time for pixels.
  5. Thx for been realistic they chat ban m for 2 days and gave me 2 warning not 1 but 2 for just saying fuck. Its my mistake for giving value to those people by reacting to their actions as if they are better than me while they are same age with same life and write same words. Baggos has the worst mouth in this forum but all of sudden he is polite and reborn12 he simply take advantage of moderating rights to have fame and call ke scammer why people on skype tell me that he sell trance pack for hs job. Afc he will deny this and make a reference t something else but i know its true. But again i repeat is my mistake for give value this person whos life i guess is full of problens which he take them out on me with a button. Maxcheaters is dead so its pointless to defend my self in a forum where admin no care. Take care frank and to others stay in this forum without people to protect it from haters who just write fuck.
  6. Elfo said the same, i did.. it's a common problem in all L2J packs. It only works if you add the teleportTo in a threadpool and happen 90 ms after the spawn me
  7. hi i really stuck on this along with other people i asked. at EnterWorld.java there is the activeChar.spawnMe(x,y,z); which spawn the character upon login. If you add after this example activeChar.teleToZone(x,y,z); at first when u login its fine but if you restart and no relogin and u click enter in game it crash. It happen in H5 also but in some specific places..
  8. Ο τυπας γραφει περιπου 9 μηνες πριν κ εσυ απαντας τωρα.. καλοι βλακες ειστε
  9. Hello, i wanted ask people let's say we have a project that is really old and it use java 6 or 7 and we want upgrade it to java 8 (latest). How we do this via eclipse? And if yes will this affect the java coding part? I think java 7 is included all in java 8 so it wont affect the code right? Still how we do it via eclipse?
  10. HellboundLoader HellBoundEngine It throw null exception but i dont know why.. i get that player and npc are both null but as far i checked other Quest ex Freya also start Timers with Null, null and no errors. Why this happen?
  11. Hi, i've got a question. Let's say you let 1 character in middle of dion and you log out. Then a player start running from 1 corner of dion to the other. While he start run u login with the other char. With the char u just logged in u see the moving char walking 2 second delayed while passing infront of you. In his window he already passed you but in your window (logged in char) you see him just passing by. Why this 1.5 - 2 Delay ? What i can adjust to remove this? Ty
  12. i did 150 same.. it show concestration but others buffs just show it casting until the 5 seconds pass
  13. By default npc had 340, + in some buff like Concestration after 4 seconds it show it on players but idk why
  14. Hi, i made an npc buffer i wanted ask how to make it properly cast the buff on you with animation. I did broadcastPacket(new MagicSkillUse(this, player, 5557, 1, 5000, 1)); but it just show npc casting the buff and never show it on player. i even increased npc's c speed to 2000 still
  15. I changed the code its working fine now it use my var and set sieges every 14 days and if example the date is set on Monday it add +4 days to reach Saturday cause sieges are by default only at Saturdays or sundays. But the question here is Whats with the (!SevenSigns.getInstance().isDateInSealValidPeriod(getCastle().getSiegeDate())) ? If sevenSigns are running then sieges should be 1 week later? or what?
  16. Bonjour. Someone can tell me how to configure this part of code that refer to nextSiegeDay? /** Set the date for the next siege. */ private void setNextSiegeDate() { while (getCastle().getSiegeDate().getTimeInMillis() < Calendar.getInstance().getTimeInMillis()) { if (getCastle().getSiegeDate().get(Calendar.DAY_OF_WEEK) != Calendar.SATURDAY && getCastle().getSiegeDate().get(Calendar.DAY_OF_WEEK) != Calendar.SUNDAY) { getCastle().getSiegeDate().set(Calendar.DAY_OF_WEEK, Calendar.SATURDAY); } if (getCastle().getSiegeDate().get(Calendar.DAY_OF_WEEK) == Calendar.SATURDAY && !Config.CL_SET_SIEGE_TIME_LIST.contains("day")) { getCastle().getSiegeDate().set(Calendar.DAY_OF_WEEK, Calendar.SUNDAY); } getCastle().getSiegeDate().add(Calendar.DAY_OF_MONTH, 7); } if (!SevenSigns.getInstance().isDateInSealValidPeriod(getCastle().getSiegeDate())) { getCastle().getSiegeDate().add(Calendar.DAY_OF_MONTH, SiegeManager.getInstance().SiegeEvery()); // I set this at 14 } } The SiegeManager.getInstance().SiegeEvery() is basically an int that you set (days) Example if you set 7 sieges must start every 7 days or if you set 14 sieges start every 14 days (On Saturday or Sunday) as it says. But i'm not sure if i did it properly. Cause in server it says siege start at 8/13/2017 so in 7 days instead of 14 i put. + How to avoid confilct with isDateInSealValidPeriod idk how this work.
  17. Ok i have a question that bother me 5 seconds now Let's say we make a class and this class just do something public class Spammer { final L2PcInstance _player; int index = 0; Spammer(L2PcInstance player) { _player = player; start(); } public void start() { ThreadPoolManager.scheduleFixedRate(new Runnable() { @Override public void Run() { if (index == 5) { _player.sendMessage("hi"); index++; } else _threadpool.cancel(true); } }, 1000, 1000); } ​} The code is really to explain you. So let's say we do new Spammer(player); this will start the threadpool and after 6 times it will stop send player a message. But what java do afterwards? What happen to this class created as new object ? It get fucked up garbage collector since its not doing anything ? I did a code that basically create a new object for vote but i was wondering after the time expire and give reward or no give reward what happen to this class? Thanks
  18. Hi, i've got a problem at Boats and Airship. 1. When you boat on boat and the 1st player is in middle, the 2nd player move and click to walk against the wood. The 2nd player fall down while the first one see the 2nd player still at the edge of the wood and after 5-6 sec he fall down. Sometimes also when 2 people are on the boat a 3rd player who came no see both on boat, just one of them until the one that is not visible, move out of boat and then move in again. 2. Airship. when u enter in airship you spawn in middle. When a s2nd player enter in airship the 1st player see him like he is running at the edge of airship while he is actually not. and the 2nd player see the 1st one running at the edge of the ship. Basically some packet problem (broadcast) etc Pm me.
  19. In same day?So basically all sieges are in same day right? And a clan leader set the siege time?
  20. hi, i want ask some people who are experienced with lineage 2 (high 5) 1. Sieges are all start at the same time? Or each siege has different date? 2. TerritoryWar starts 24 hour before each siege right? 3. If each siege has different starting date then if for example Dion siege is at 7/27 at 18:00 and Giran's at 7/27 at 18:30 the territory war will override the previous one ? I'm a bit confused.
  21. What's the best way to find the highest value in a HashMap / Map Example. Map<String, Integer> _ILoveCookiesButMySisterAteAllOfThemIn1NightThatBitch = new HashMap<>(); What would u use to get the highest value? Collection.max ?
  22. Close it it was java relative.. in BBS seperate and send it had max 12700
×
×
  • Create New...