-
Content Count
1,621 -
Joined
-
Last visited
-
Days Won
33 -
Feedback
100%
Kara last won the day on January 31
Kara had the most liked content!
Community Reputation
30 ExcellentAbout Kara

- Currently Viewing Topic: Hello_Kitty Effect HF5
-
Rank
Marquis
Profile Information
-
Current Mood
Shy
-
Gender
Male
-
Country
Greece
-
Help l2scripts password encryption
Kara replied to MaXUN's question in Request Server Development Help [L2J]
Do you have access to the source? If yes you can check the encryption style though java. If not you can write here. I have access in all Scripts sources i can paste you the part where it encrypt/decrypt the password. -
Help a little help with ArrayList and Map
Kara replied to tazerman2's question in Request Server Development Help [L2J]
You basically ask me to describe/code you a whole system. Before you code something you need to think of a hierarchy, means how your code will look like. Ex. each guard belong to a flag and maybe flags belong to a bases. So guards are children of flags and flags are children of bases. So we start from the top to the bottom, we move from the parents to the children. Let's say we have a Flag class, we want upon spawn to spawn guards around it and upon delete or capture to delete guards. So basically this flag will own a List with the spawned guards. -
EN Sell account Paypal with a balance 1,242,522.84$,117k$,257k$
Kara replied to Jacklondon's topic in Spam Topics
The 1,242,522,84$ is mine tho -.- -
Help Where and how can i change this?
Kara replied to Irrelevant's topic in [Request] Client Dev Help
-
Help Where and how can i change this?
Kara replied to Irrelevant's topic in [Request] Client Dev Help
I see well wait for some CDeveloper to respond. My knowledge is limited to UTX editing. -
Help Where and how can i change this?
Kara replied to Irrelevant's topic in [Request] Client Dev Help
I don't know exactly the location of it but it's texture so i guess somewhere inside SysTextures. L2Font-e.utx maybe? You can download this (L2Tool.jar) and open easily with 1 click any UTX file and view it's files in real time (even export and re-import). -
Help a little help with ArrayList and Map
Kara replied to tazerman2's question in Request Server Development Help [L2J]
Your whole structure is wrong and this is java before VM was a thing. First of all your code can be all in 1 line. You haven't understand what a MAP is and how to use it base on this code i just saw: MAP.getOrDefault("key", Collections.emptyList()).forEach(s -> s.doDie(s)); But again this is not the best perspective. The proper one is to bind the guards on the flag itself. Either create a method on the FlagInstance.java you created such as: public void addSpawn(final L2Spawn spawn) { GUARD_SPAWN.computeIfAbsent("key", k -> n -
Help mass create per ip
Kara replied to Irrelevant's question in Request Server Development Help [L2J]
Ah alright then, i didn't know. For sure you should upgrade to java 8 since scripting engine is still supported and java 8 has some future proof features and it's the current stable java version. I don't see the reason why you stick with Java 7 in 2021. Saying you're lazy and you spend 10 minutes writing in this topic while updating java only take 5. So vouch for java 8 ! -
Help mass create per ip
Kara replied to Irrelevant's question in Request Server Development Help [L2J]
Consider this is just the way i write java. Clear and short. It doesn't mean you have to use it. But for sure you can experiment. (Also i believe it require java 10+) -
Help mass create per ip
Kara replied to Irrelevant's question in Request Server Development Help [L2J]
I wrote you a more organized and 1 line code. (Consider i just giving you a different perspective of java). The code the other guy gave you it's good and java proof for sure but it's very messy. L2World.getInstance().getPlayers().stream().filter(s -> Objects.nonNull(s.getClient().getConnection())).collect(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(s -> s.getClient().getConnection().getInetAddress().getHostAddress())))).forEach(s -> s.addItem(getClass().getSimpleName(), 57, 100, s, true)); It check for offline shops (since offline pla -
WTS L2J Acis Rev382. Selling Server+Source+ Free srv website
Kara replied to prostylw1's topic in Marketplace [L2Packs & Files]
He is a fine person in case anyone is interest in, he does no fishy things. -
Help Community Top: Pk/PvP
Kara replied to 0flee's question in Request Server Development Help [L2J]
Ouch ! The code you've given is like... Java had a head on collision on Autobahn while a meteor in size of earth fall on it at the same time. Let's just mention few of the "abnormalities". 1. if (command.startsWith("toppk")) This part is not required because you have only 1 String inside the array hence the only time this method is called only when a voice command matches the given String 2. Why the if check exists anyway? It doesn't do anything. Remove it completely 3. player.getPkkills(); Why this code exists? It does nothing. It won't pa