Jump to content

Recommended Posts

Posted

I have the right to do anything i want since i have the files in my computer,i can also share them and you will start crying about it so dont force me to do it,then this guy ledion will really loose his money,since for now as you removed the backdoors,he have a functional pack.

i dont need more share ok

Posted

I have the right to do anything i want since i have the files in my computer,i can also share them and you will start crying about it so dont force me to do it,then this guy ledion will really loose his money,since for now as you removed the backdoors,he have a functional pack.

share them i don't care as long they are outdated and i have +1000 more revs update in my source

you have them in your computer do whatever the fuck you wanna do, but you need to be banned for this shit you did

Posted

i dont need more share ok

Hahahahaha you guys sucks really,you make my name dirty without reason,i can only apologize you for getting files with backdoors,i didn't even knew that,im sorry you lost your money,but also i told you from the beginning dont open it.... The mistake is half & half,the only thing i could do is remove the backdoors for you but since L2 Dev did it for you,i think the topic end's here.

Posted

share them i don't care as long they are outdated and i have +1000 more revs update in my source

you have them in your computer do whatever the fuck you wanna do, but you need to be banned for this shit you did

Well,no you have not did any +1000 revs since you have no clue how to update shit,so stop it here since i get bored reading your shits and every newbie open servers with your shitty ready files.

Posted

Well,no you have not did any +1000 revs since you have no clue how to update shit,so stop it here since i get bored reading your shits and every newbie open servers with your shitty ready files.

you wasted my time for real, i will ignore you since now

and for spirakos, take care of your retarded kid friend, get him out of house he need some fresh air

PS: i never added backdoors , i said that backdoores was added there by other people who gave/sold him my files

and our conversation end here, no need to read more of this

Posted

you wasted my time for real, i will ignore you since now

and for spirakos, take care of your retarded kid friend, get him out of house he need some fresh air

PS: i never added backdoors , i said that backdoores was added there by other people who gave/sold him my files

and our conversation end here, no need to read more of this

Well,as far i remember the other guy had also 0 clue of Java so he couldn't add backdoors... Anyway i dont have any mood to chit chat with you without a reason.

Let Mod's decide what happend.

Posted

YBuclAQ.png

"Backdoor was added for kids like you for avoid reslling"...

So you mean that someone else added backdoors for stupid re-sellers right? you just accept that you had backdoors and you're trying to make me believe that you didn't but you can't.. anyway..

I won't continue this shiet. i'm done.

Posted

YBuclAQ.png

"Backdoor was added for kids like you for avoid reslling"...

So you mean that someone else added backdoors for stupid re-sellers right? you just accept that you had backdoors and you're trying to make me believe that you didn't but you can't.. anyway..

I won't continue this shiet. i'm done.

where i said i added them? you talk shit and i was trying to defend that you are not a scammer and that guy who is your real friend clam that is you and sell files to people in your name, good man , good... let it as it is...

but i know what i've done in the past and what i do, i never did anything wrong or scammed people

Posted

please can u tell me what kind of files L2Dev sold to this guy ?? i need a name

not me...

Ledion my friend bought files with all my codes inside, Ledion asked me for help and i saw this was the same server i made for a guy ( a client of mine ), and he told me that someone hacked server and need remove backdoors , i helped him to fix backdoors and i fixed his skills /balance and more bugs

Posted

not me...

Ledion my friend bought files with all my codes inside, Ledion asked me for help and i saw this was the same server i made for a guy ( a client of mine ), and he told me that someone hacked server and need remove backdoors , i helped him to fix backdoors and i fixed his skills /balance and more bugs

 

name of project?

Posted

name of project?

It's L2JFrozen it's not a project... it's just fancy outside,like npc's and bla bla

 

not me...

Ledion my friend bought files with all my codes inside, Ledion asked me for help and i saw this was the same server i made for a guy ( a client of mine ), and he told me that someone hacked server and need remove backdoors , i helped him to fix backdoors and i fixed his skills /balance and more bugs

Yes you helped him remove the backdoors you added so ironic.. hahahaha,seriously please stop posting until a Mod lock it and decides what to do. I can't spend more time for you

Posted

It's L2JFrozen it's not a project... it's just fancy outside,like npc's and bla bla

 

Yes you helped him remove the backdoors you added so ironic.. hahahaha,seriously please stop posting until a Mod lock it and decides what to do. I can't spend more time for you

 

if he tell about l2crap cadmus its Lunas pack files and he 100% fixed few shit things and started selling it to kids 

Guest
This topic is now closed to further replies.



  • Posts

    • what pack you use  send me on discord for it
    • package custom.events.RandomZoneEvent; import java.io.File; import java.util.ArrayList; import java.util.List; import java.util.Random; import java.util.concurrent.ScheduledFuture; import org.w3c.dom.Document; import org.w3c.dom.Node; import org.l2jmobius.commons.threads.ThreadPool; import org.l2jmobius.commons.time.SchedulingPattern; import org.l2jmobius.commons.time.TimeUtil; import org.l2jmobius.commons.util.IXmlReader; import org.l2jmobius.gameserver.managers.ZoneManager; import org.l2jmobius.gameserver.model.StatSet; import org.l2jmobius.gameserver.model.actor.Creature; import org.l2jmobius.gameserver.model.actor.Npc; import org.l2jmobius.gameserver.model.actor.Player; import org.l2jmobius.gameserver.model.quest.Event; import org.l2jmobius.gameserver.model.zone.ZoneId; import org.l2jmobius.gameserver.model.zone.ZoneType; import org.l2jmobius.gameserver.model.zone.type.RandomZone; import org.l2jmobius.gameserver.util.Broadcast; /** * Random Zone Event - Activates one random PvP zone temporarily. No modifica la clase de la zona: usa flags PvP en runtime. * @author Juan */ public class RandomZoneEvent extends Event { private static final String CONFIG_FILE = "data/scripts/custom/events/RandomZoneEvent/config.xml"; private static int EVENT_DURATION_MINUTES = 15; private static boolean _isActive = false; private ScheduledFuture<?> _eventTask = null; private final List<ZoneType> _availableZones = new ArrayList<>(); private ZoneType _activeZone = null; public RandomZoneEvent() { loadConfig(); loadZones(); registerZoneListeners(); } /** * Registra listeners a TODAS LAS ZONAS random */ private void registerZoneListeners() { for (ZoneType zone : _availableZones) { addEnterZoneId(zone.getId()); addExitZoneId(zone.getId()); LOGGER.info("[RandomZoneEvent] Registered listener for zone: " + zone.getName()); } } private void loadConfig() { new IXmlReader() { @Override public void load() { parseDatapackFile(CONFIG_FILE); } @Override public void parseDocument(Document doc, File file) { forEach(doc, "event", eventNode -> { final StatSet att = new StatSet(parseAttributes(eventNode)); final String name = att.getString("name"); for (Node node = eventNode.getFirstChild(); node != null; node = node.getNextSibling()) { if ("schedule".equals(node.getNodeName())) { final StatSet attributes = new StatSet(parseAttributes(node)); final String pattern = attributes.getString("pattern"); final SchedulingPattern schedulingPattern = new SchedulingPattern(pattern); final StatSet params = new StatSet(); params.set("Name", name); params.set("SchedulingPattern", pattern); final long delay = schedulingPattern.getDelayToNextFromNow(); getTimers().addTimer("Schedule_" + name, params, delay + 5000, null, null); LOGGER.info("[RandomZoneEvent] Event " + name + " scheduled at " + TimeUtil.getDateTimeString(System.currentTimeMillis() + delay)); } } }); } }.load(); } private void loadZones() { for (ZoneType zone : ZoneManager.getInstance().getAllZones(RandomZone.class)) { if ((zone.getName() != null) && zone.getName().toLowerCase().startsWith("random_zone")) { _availableZones.add(zone); LOGGER.info("[RandomZoneEvent] Loaded zone: " + zone.getName() + " (id=" + zone.getId() + ")"); } } LOGGER.info("[RandomZoneEvent] Total random zones loaded: " + _availableZones.size()); } @Override public void onTimerEvent(String event, StatSet params, Npc npc, Player player) { if (event.startsWith("Schedule_")) { eventStart(null); final SchedulingPattern schedulingPattern = new SchedulingPattern(params.getString("SchedulingPattern")); final long delay = schedulingPattern.getDelayToNextFromNow(); getTimers().addTimer(event, params, delay + 5000, null, null); LOGGER.info("[RandomZoneEvent] Rescheduled for " + TimeUtil.getDateTimeString(System.currentTimeMillis() + delay)); } } @Override public boolean eventStart(Player eventMaker) { if (_isActive) { if (eventMaker != null) { eventMaker.sendMessage("RandomZoneEvent already active."); } return false; } if (_availableZones.isEmpty()) { Broadcast.toAllOnlinePlayers("[RandomZoneEvent] No zones configured."); return false; } _isActive = true; Broadcast.toAllOnlinePlayers("⚔️ Random Zone Event has started!"); _eventTask = ThreadPool.schedule(this::activateRandomZone, 5_000); return true; } private void activateRandomZone() { _activeZone = _availableZones.get(new Random().nextInt(_availableZones.size())); _activeZone.setEnabled(true); Broadcast.toAllOnlinePlayers("🔥 Random Zone Event: " + _activeZone.getName() + " is now PvP for " + EVENT_DURATION_MINUTES + " minutes!"); _eventTask = ThreadPool.schedule(this::eventStop, EVENT_DURATION_MINUTES * 60 * 1000L); } @Override public boolean eventStop() { if (!_isActive) { return false; } _isActive = false; if (_eventTask != null) { _eventTask.cancel(true); _eventTask = null; } if (_activeZone != null) { _activeZone.setEnabled(false); Broadcast.toAllOnlinePlayers("🏁 Random Zone Event ended. " + _activeZone.getName() + " is back to normal."); _activeZone = null; } else { Broadcast.toAllOnlinePlayers("🏁 Random Zone Event ended."); } return true; } @Override public void onEnterZone(Creature creature, ZoneType zone) { if (!_isActive || (_activeZone == null)) { return; } if ((zone == _activeZone) && creature.isPlayable()) { creature.setInsideZone(ZoneId.PVP, true); if (creature.isPlayer()) { creature.sendMessage("Esta zona está en modo PvP temporalmente."); } } } @Override public void onExitZone(Creature creature, ZoneType zone) { if (!_isActive || (_activeZone == null)) { return; } if ((zone == _activeZone) && creature.isPlayable()) { creature.setInsideZone(ZoneId.PVP, false); if (creature.isPlayer()) { creature.sendMessage("Abandonaste la zona PvP temporal."); } } } @Override public boolean eventBypass(Player player, String bypass) { return true; } @Override public String onEvent(String event, Npc npc, Player player) { return super.onEvent(event, npc, player); } @Override public String onFirstTalk(Npc npc, Player player) { return null; } public static void main(String[] args) { new RandomZoneEvent(); } } i have this but its not working
  • Topics

×
×
  • 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