Jump to content

Recommended Posts

Posted

alines = fake, don`t belive in this crap u.U if they are real why there are no REAL evidence about them ?

 

can a cat prove that humans are the "rulers" ?

 

what cat thinks of greater danger? a human or a lion?

think like this for humans. if someone way more smart of us in order to control us he would never give you 1 hint about his existence

Posted

can a cat prove that humans are the "rulers" ?

 

what cat thinks of greater danger? a human or a lion?

think like this for humans. if someone way more smart of us in order to control us he would never give you 1 hint about his existence

Actually world is full of evidences that smarter civilazations walked the earth before us.I Just read a fukin' awesome interview about ancient greeks , and more specific aristoteles.

 

Did you knew that a helmet was found in Australia (!) which the sience said it was 120.000 years old , was writing on the top "I am coming from the Big Greece the Small one"

 

explain me this firstly.

Posted

What do you mean? The Templars and the Assassins really existed.

The Templars wanted to rule the world by covering high positions in the trade , and politics.

 

Thus , the assassins knew that and tried to stop them.

Posted

Well i saw the topic's title and it seemed interesting.But i lost interest when i started reading the comments.Didn't bother watching the first video but i'll say my opinion and you'll see why i didn't even bother seeing it.First of all you talk about religions and god.And i'm gonna ask "How do you know god exists?" You'll probably say "Well i don't know if god exists but i believe he does." but you wouldn't have answered the question.Actually no1 can prove that god exists.It's like another reason to spend their time sometimes.Go to a church pray and all those things.Some believe in Allah some in Buddha and so on.But no1 knows if he exists or not.They just believe in him.What about human souls.Where all those souls came from?I mean they say we were made from mud or w/e but the population of the earth keeps increasing so where all those souls come from?And then again no1 knows what happens to souls when we die.What i do believe that exists is aliens.If you don't believe that aliens exist and you think you are alone in the whole universe then you're stupid.It's like believing you're the only human on this planet.People believe in god but they don't believe aliens exist isn't it weird?I've seen a documentary about the pyramids.Scientists say that they're 5000-6000 years old on the other hand in the documentary they found proofs that they're more than 14000 years old.So 14000 years old when people didn't know what mathematics is.How in the hell they built those pyramids without the right equipment?And in such a little time.How was that achieved?Would you believe that pyramids weren't built by humans?That's on your hand.

About the helmet you mentioned well i want to know where did you find this information and i will say my opinion on this too.

The truth is we're ruled by the most rich people in this world and what happens is all about money.Money is the cause for everything.Everything is planed years ago and no matter what we do we can't change that.My point is it doesn't matter what we know about this world because it won't help us anywhere.You read that there were smart civilizations before us or you read history or you believe in religions.But is it going to help you with your life?So does it matter if aliens exist or god or smart people thousands years ago?No it doesn't.If you're lucky you might get an answer to some of these questions but it won't help you with your own life.You might change they way you live by knowing something you didn't know before but it won't help you at all.We believe what we read in some books or what we see in some documentaries but we don't believe in some others.Everyday money are being made.And now we're in a economic crisis, well, almost the whole World.So where do the money go?

What i want to point out is that we should live our life like we want and be happy.Do things that make us happy and in the end die happy with a smile on our face.Because we might never find an answer to all those things we read or see.It's good to know things that some people will probably never know.It helps us communicate sometimes with others that have the same interests.

 

Well that's all from me!I guess i kinda went off-topic but it was a good chance to say what i believe.

Sometimes i change the subject but it was because i was writing what it came down to my mind at that moment.So sorry about that.

I hope you don't get angry i wrote so many things :D

Also sorry about the mistakes i've made but i guess you understood what i wanted to say.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • 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