Jump to content

Recommended Posts

Posted

http://www.maxcheaters.com/topic/204800-prehistoric-ape-man-abusing-mod-powers/

this thread has gone unanswered and it is confirmed elfocrash deleted my thread for NO REASON WHATSOEVER

although we can see  here that my thread is perfectly fine and has been unlocked and returned to its proper place by a sensible greek moderator 

f2f48fdf0a.png

 

f4c82c9187.jpg

 

this however, is not even a valid response and does not even attempt to address the situation in question

lets go over this sentence by sentence

how dare i report a mod? i reported the faux british mod elfo crash who CLEARLY ABUSES HIS MOD PRIVS BECAUSE OF PERSONAL PROBLEMS AND LOW SELF ESTEEM. what does the second part of your sentence even mean? how am i abusing my powers 'and more' when i have no privs at all? lmao

who do i think i am? ive been a member since 2008 and have witnessed the decline of quality in this forum with increasing corruption and staff getting worse and worse

enough chances? where am i at fault here? LOL

 

here we can clearly see justice and elfo crash working hand in hand thinking 'we wuz kangz' and abusing their virtual powers as much as possible in attempt to make up for their lack of self worth

i bet they're giggling in skype too saying shit like 'hehe got it!! hehe haha'

Posted

that feeling when u say 24/7 that forum is blablablablabla and u still write 50 lines crying XD . if thats not pathetic then what is it?

 

i vote for DNA ban

Posted (edited)

Trumb you write already many bullshit for greeks yet is a greek forum.. Elfocrash is not the best guy but from what i read he had any right to del your topic since you used / created other profil in these 5 days.

You refer to face images yet you no show up your image... and don't tell the guy in the profil photo is you cause you know im one of the best designers and i can already point out

3 cut mistakes 2 light mistakes 2 color mistakes 2 IO mistakes 1 depth mistake 1 texture mistake if you want. So in other word you don't use your real face also, why complain about it.

True people shouldnt be allowed to post other's personal info and i would vouch for perma ban in actions like this (even tho i enjoyed when xdem exposed ThugLife's image and i rofled, still when i found his fb i didn't expose his shitty photos).

 

Elfo and Justice together? No..  human connection is way too mainstream for him. Even if elfo try to make friendship with Justice i'll KILL them BOTH. I do not allow any contract with other people

to Justice.

 

You know what you came few minute ago into my topic and called me "retard" because i requested ALEXTOTI'S shared server to be junked. Give me 1 reason why i should start spam forum and no start spam you.

So in other words you might be the shitty person no others.. 5 days ago you were licking me for a code and now you call me retard without not even 1 thank. Someone else is selfish and jerk..

 

If you were FINE person trust me i would make them quit their lives for 1 month and go for vacations but i see Elfo is fine and you're the shit one now... Greeks are scums, greeks are soap, greeks bla bla bla

yeaa yeaaaaa .. we get it you don't like greeks.. But let me tell you something, in this forum the majority is greeks and you receive help and codes from greeks. If you don't like go at russian or british forums.

 

Also congrats you comment on your own topic with other account.. http://www.maxcheaters.com/topic/201143-report-l2aaron/?do=findComment&comment=2542583

how we call this uhm OH YEA Dissociative identity disorder

 

Ps. the way you write your topics.. cancer 8th grade.

Edited by AccessDenied
Posted

You don't leave me another choice.

Really, I am not the guy who likes to ban, although we have warned you so many times. It's not about Greeks only, as there are staffers from other countries too and most of the times, we discuss about such cases.

 

Racist behaviors are not allowed..... and believe it or not you had so many times to comply with that.

Now, we don't discuss about your sales topic, but for the racist comments.

 

All your accounts will be banned.

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
    • ZonePvPSpawnBossRadio=0 ZonePvPSpawnBossBarakiel=0 at the Customs.ini in L2Server folder. Im prety sure this is it because i had the same problem with you in cruma 1 floor for example and i couldn't fix it but i fixed it finally by changing these 2 lines
    • Siege Reward Start PM Msg Rework Config root BossDieAnnounce and BossDieSound in the L24Team.properties and Config.java files for global raid boss death notifications and sounds. Adds a new reward_list table to the DB.sql file to track castle rewards. Improves character creation logic for thread safety and validation. Adds extensive state checks to the RequestEnchantItem method to prevent enchantments during inappropriate player states. Fixed auto-attack animation bug (there was no attack animation, only damage animation) Clean Code Other fixes I forgot to list! Java 14 Fixed issue where deleting a character would prevent it from leaving the screen or being removed, or even after a delete CD (it would only exit when re-logging in or creating a new character). Added Premium System from the other C2 project (Needs testing and improvement). Added the "Improved" Community Board (incomplete).
  • 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