Jump to content

Recommended Posts

Posted (edited)

Hello All. Dunno what happened to my main Account named ProGramMoS with many trades done and 100% recommended, i can't log in.. i hope some admin can give me an answer in that. So i will post my trade list on this temporary account:

Items List:

 

Armor:

R99 Light Set +6 3x120 with appearance SOLD TO YEVONXXX

R95 Light set +4/3/3/3/3 3x120 SOLD TO YEVONXXX

Random Items:

Hunter's Talisman SOLD TO lajjala

Adena:

0b in stock at the moment SOLD ADENA TO iMini , Ryer(SCAMMER), iPwnzor, yevonxxx, Ephe, Melekh, mrdragonek, hakaman1

 

Accounts: (Accepting Adena too)

1st:

99 Othell GH / Dual 96.5 Yul - Dark Elf Male - 5 AP and 75% - Skills: Bloodstab +10 rest +6/5 - HellFire Talisman - Active Reflect on B oly weapon- 1300 Raid Points - 200k fame - 300k oly tokens - Enhanced Istina's Bracelet - 12 Paagrios Breeze (1h) - 900 quick healing pots - 45 feather of blessing and lots of random talisman's, mats , items on wh

2nd:

99 Aeore Cardinal / Dual 97 Wynn ES - Elf Female - 2 AP - Skills +3-5 - Aria's Bracelet INT - Hellfire Talisman - Active Reflect - lots of talisman's and random items on AH. SOLD TO mrdragonek

3rd:

99 Yul Archer / Dual 95 Siegel Knight - D.Elf Female - 2 AP - Skills +6-7 - Desire Talisman SOLD TO Limette

4rd:

96 Othell Wind Rider / Dual 90 Wynn ES - Elf Female - Naked SOLD TO YEVONXXX

Minor Accounts:

86 Yul GS - Dark Elf Male - Event Armor / Weapon / Jewells SOLD TO marcin88

86 Tyrr Duelist - Orc Male - tw hv set +5/3/3/3 with Tribal Warrior appearance / R jewells(+Freya/coc) / Apo pole Dmg Up 150 SOLD TO marcin88

86 Iss DoomCryer - Orc Female - Event Armor / Jewells / Weapon / 11 GEAR on her SOLD TO marcin88

 

ArcheAge:

50 Level Nui ShadowBlade with 6/7 GHA Leather set ( 2 parts are legendary / 2 epic-blue / rest green) and tier 2 hasla weapon with around 50 tokens if you wanna start hasla t3 farm. Around 150g on char also SOLD

Elder Scrolls Online:

Imperial Edition Preorder account with many perks, You can make any race at any faction also you have Imperial race playable. Veteran Rank 10 Khajit NightBlade. Faction is Ebonheart Pact. The account has around 100k gold plus many epic/legendary crafting mats on bank to craft whatever set you want. Clothier / WoodWorker / Blacksmith almost max level and many traits are researched that can take months to complete. Many Skyshards found aswell. It has the imperial mount with increased speed due to feeding daily

 

THERE IS NO CHANCE THAT I WILL GO FIRST. I HAVE ALREADY MADE MANY SUCCESFULL TRADES ON FORUMS. PAYMENT METHOD VIA PAYPAL. PM WITH OFFERS

IMPORTANT : USER NAME RYER BOUGHT 6b FROM ME YESTERDAY AND TODAY HE CHARGEBACK THE MONEY! I AM STILL WAITING FROM PAYPAL RESPONSE. PLEASE BAN THAT GUY AND ALL HIS ACCOUNTS!

Edited by CashOut
Posted

Queeen Ant's Soul Ring +3

Frintezza Soul Necklace +3

Istina's Earring +5

Blessed Zaken's Earring +4

Octavis Ring Warrior +3

Hunter's Talisman

 

Prices plz and a skype ?

Posted (edited)

IMPORTANT : USER NAME RYER BOUGHT 6b FROM ME YESTERDAY AND TODAY HE CHARGEBACK THE MONEY! I AM STILL WAITING FROM PAYPAL RESPONSE. PLEASE BAN THAT GUY AND ALL HIS ACCOUNTS!

Edited by CashOut

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