-
Posts
1,046 -
Joined
-
Last visited
-
Days Won
23 -
Feedback
100%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Dragic
-
You talking about scams the time you resell Denart Donate Panel in this forum via pms irony! https://l2hydra.org/donate/ One of the reason i leave this staff is because i dont like this policy we should protect our members in this forum, I dont like the idea to keep unbanned members that trying to make money from other people work you should be banned all but none cares when i suggest something. My regards!
-
Εγώ ζήτησα demote γιατί κάποιος staffer μίλησε πολύ άσχημα προς το πρόσωπο μου όταν ζητήθηκε η γνώμη μου για κάτι ( ονόματα δεν λέμε οικογένειες δεν θίγουμε ) εγώ δεν θα συνεργαστώ με ανθρώπους που δεν έχουν παιδεία και δεν ξέρουν τι θα πει σεβασμός, ειναι απαράδεκτο να μην σέβεσε την γνώμη του άλλου έχουμε και μια αξιοπρέπεια και όλα έχουν και ενα όριο! Οταν και αν αποφασίσει ο Maxtor να φτιάξει αυτό το φόρουμ και πετάξει τα φαντάσματα από το Staff τύπου μπαίνω κριτικάρω τους πάντες και κάνω μόνο reload το main index τότε ίσως ξανά προσφέρω την βοήθεια μου. Εις το επανιδείν!
-
Λυπούμαστε πολύ που σε έκλεψε κάποιο Member. Είναι αδύνατον να ξέρουμε της προθέσεις του καθένα! Το MaxCheaters δεν φέρει ευθύνη για τα members που έχουν σκοπό να σε κλέψουν, κλέφτες δυστυχώς παντού υπάρχουν καλό είναι πριν αγοράσεις κάτι από κάποιον να κοιτάς και το feedback του και γενικά να είσαι επιφυλακτικός! WARNING: In order to prevent scamming notice that you make trades at your OWN risk while trading with users. if you want to know about trustfull members consider PMing a staff member and ask for his opinion...
-
Χριστός ανέστη χρόνια πολλά με υγεία !
-
Then post Here your proofs
-
Discussion Toplist iTopZ (OPEN BETA)
Dragic replied to Nightw0lf's topic in General Discussion [English]
You can comment on anything you want in a negative or positive way, but you have no right to being toxic! Topic cleaned- 7 replies
-
- discussion
- itopz
-
(and 1 more)
Tagged with:
-
I do not have to apologize for something, i clarify my position thats all. (since my topic have been reported)
-
I never delete only this comment this is a lie i clean whole topic including nightwolf comment, this remaked code doesnt works it didn't even have the strings for the custom msg (strings added after i share this code).
-
I would say the same thing if I were you but we are not all on the same level
-
Lucera doesnt give you source the only you can do is to create extensions with intelij or the IDEA program you are using in my subject (im not professional java coder) i just take some examples and i make it thats all nothing special !
-
First of all you are perma banned, i want to let you know that we can see your ip/devices registrations from all your profiles we know who are you and when you trying to make a new account so stop this drama. About my topic i clean all comments not only from an4rchy! This code in an4rchy comment doesnt works! Take lucera first and try to remake it and then you can post it if you are sure that it works nothing personal with an4rchy its only about you and your drama you are trying to make all thoese years!
-
Help Can't make connection to GAME server locally, only LOGIN srv
Dragic replied to An4rchy's question in Request Server Development Help [L2J]
Hmmm weird situation, i guess something wrong with your configs this is doesn't make sense -
Help Can't make connection to GAME server locally, only LOGIN srv
Dragic replied to An4rchy's question in Request Server Development Help [L2J]
Did you change something in internet protocol version 4 tcp/ipv4 properties? If yes make it default and try again I mean this: -
First of all your code is not working and as i say in description i make it for my needs if you can make it better you can reshare it this maybe helps more than to judge my code when you dont give any solution here, a simple teleport is not better since you can walk into the zone!
-
Share Custom Community Board Interlude With Frame
Dragic replied to Dragic's topic in Client Development Discussion
Who playing lineage 2 in low graphics 2020 ? :D -
Help Xriazwme Help. me ton server m.
Dragic replied to optimousprime's question in Request Server Development Help [Greek]
https://www.canyouseeme.org/ -
You are not allowed to up/bump via comment, use the bump button!
-
Make a zone required party with minimum members for lucera. package zones; import java.util.Collection; import java.util.Iterator; import l2.gameserver.instancemanager.ReflectionManager; import l2.gameserver.listener.zone.OnZoneEnterLeaveListener; import l2.gameserver.model.Creature; import l2.gameserver.model.Party; import l2.gameserver.model.Player; import l2.gameserver.model.Zone; import l2.gameserver.network.l2.components.CustomMessage; import l2.gameserver.network.l2.s2c.ExShowScreenMessage; import l2.gameserver.scripts.ScriptFile; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class PartyZone implements OnZoneEnterLeaveListener, ScriptFile { private static final Logger bEb = LoggerFactory.getLogger(PartyZone.class); private static final PartyZone bHe = new PartyZone(); private static final String bHf = "PartyZone"; private Object PartyInfo; public PartyZone() { } public void onLoad() { byte var1 = 0; Collection var2 = ReflectionManager.DEFAULT.getZones(); Iterator var3 = var2.iterator(); while(var3.hasNext()) { Zone var4 = (Zone)var3.next(); if (var4.getParams().getBool("PartyZone", false)) { var4.addListener(bHe); } } if (var1 > 0) { bEb.info("PartyZone: added {} party zone(s).", Integer.valueOf(var1)); } } public void onReload() { this.onShutdown(); this.onLoad(); } public void onShutdown() { Collection var1 = ReflectionManager.DEFAULT.getZones(); Iterator var2 = var1.iterator(); while(var2.hasNext()) { Zone var3 = (Zone)var2.next(); if (var3.getParams().getBool("PartyZone", false)) { var3.removeListener(bHe); } } } public void onZoneEnter(Zone var1, Creature var2) { if (var2.isPlayer()) { Player var3 = var2.getPlayer(); Party var4 = var3.getParty(); if (var4 == null) { String var10 = (new CustomMessage("zone.services.PartyZone", var3, new Object[0])).toString(); var3.sendPacket(new ExShowScreenMessage(var10, 10000, ExShowScreenMessage.ScreenMessageAlign.TOP_CENTER, false)); var3.teleToClosestTown(); } if (var3.getParty().getMemberCount() <= 4) { String var10 = (new CustomMessage("zone.services.PartyZone", var3, new Object[0])).toString(); var3.sendPacket(new ExShowScreenMessage(var10, 10000, ExShowScreenMessage.ScreenMessageAlign.TOP_CENTER, false)); var3.teleToClosestTown(); } } } public void onZoneLeave(Zone var1, Creature var2) { } } Next you have to add this parameter in zone: <set name="PartyZone" val="true" /> For example: <zone name="[primeval_peace1]" type="fun" > <coords loc="10408 -27395 -4290 -1290" /> <coords loc="12065 -25334 -4290 -1290" /> <coords loc="12223 -23159 -4290 -1290" /> <coords loc="10424 -22340 -4290 -1290" /> <coords loc="9566 -23131 -4290 -1290" /> <coords loc="9290 -24261 -4290 -1290" /> </polygon> </zone> Make it like this: <zone name="[primeval_peace1]" type="fun" > <set name="PartyZone" val="true" /> <coords loc="10408 -27395 -4290 -1290" /> <coords loc="12065 -25334 -4290 -1290" /> <coords loc="12223 -23159 -4290 -1290" /> <coords loc="10424 -22340 -4290 -1290" /> <coords loc="9566 -23131 -4290 -1290" /> <coords loc="9290 -24261 -4290 -1290" /> </polygon> </zone> Then go to en string gameserver\data\string and add this line: zone.services.PartyZone=You Are Not Currently In A Party With Minimum 5 Party Members So You Cannot Enter. And this line to ru string gameserver\data\string: zone.services.PartyZone=Вы не находитесь в партии с минимум 5 членами партии Так что вы не можете войти. If you want to change the value of minimum players then you have to change the number 4 in this line in ext: if (var3.getParty().getMemberCount() <= 4) { DOWNLOAD EXT This is a simple code i make it for my needs you can remake it as you want don't spam this topic.
-
Επειδή έμαθα ότι ρωτάς ποιος σε κάνει συνέχεια ban και με βρίζεις παλι κιόλας τρομάρα σου και ότι είπες πάλι ο Καρα-γκιόζης ο Χρήστος με έκανε Μπαν χωρίς λόγο!? Θα σου κάνω μια τυπική υπενθύμιση ότι είσαι perma banned οπότε σταματά να αναρωτιέσαι γιατί σε κάνουμε ban τους λόγους τους γνωρίζεις δεν χρειάζεται να το αναλύσουμε περαιτέρω. Τώρα που βλέπω την προηγούμενη σελίδα πραγματικά είσαι όλο εκπλήξεις! Υστερόγραφο: Εάν ά τοις άλλοις επιτιμώμεν, αυτοί μη δρώμεν!
-
Discussion LF DDOS DEDICATED SERVER
Dragic replied to L2-Luna c6's topic in General Discussion [English]
Last years i was using StormWall but now im working with ovh servers its fine until now. -
You have not the access to ban members. If you have serious proofs about this person is scamming people send me private message topic cleaned.
-
I'm working on it! I think I've found his buttons
-
@Justice I never say something bad about you mate! You are one of the most i respect here that i was saying to maxtor before some days we need guys like you in our staff.. I'm talking about everyone who has been on staff last years most of them did a BIG nothing just using the mod for ads etc i think everyone knows that... I can speak public here with proofs and names but people who saying the truth are bad so the only i can do is to tell @Maxtor almost everyday about who i think needs to be demoted and i hope one day @Maxtor will hear me.
-
I'm just telling you how i got it! I am a person who always expresses my opinion and speaks straight when something disturbs me is not personal !

