Jump to content

Wow - Sephirofl - Lifetime Unban Service


Recommended Posts

Posted (edited)

8bfv4mm.gif
KjcLkmn.jpg

 

Vouches from Clients: - THESE COME FROM OTHER SITES, I CAN LINK YOU IF NEEDED.




If you are one of those people who is on the fence about this service, ****ing buy it, this guy is so legit it blows my mind. I'm a long time leecher of this forum and literally never post anything and just search for stuff that interests me. But this gentlemen has me taking time out of smoking blunts and killing noobs to post this message. 14 Thumbs up to this amazing guy 5/5 stars, Legit service, legit person, friendly as hell and even took the time to help ON HIS BIRTHDAY. Zach you are the man and just being able to fight blizz like this really makes my day!


Seph has been able to unban me before, and is living up to his word of his lifetime service!  He is working to get me unbanned again!


I have purchased his lifetime unbanned service about two years ago which was only about $12 dollars back then it he successfully got it unbanned and it was the best 12 dollars I have ever spent and it was wroth it because I didn't have to buy the games and all the expansion and not to mention all the toons I have. A couple of days ago I got my main account banned and I remembered I had purchased his lifetime service two years ago and quickly got his Skype and asked him for help again. With no hesitation, he helped because he had confirmed that I did purchase his lifetime unban two years ago. His amazing writing skills got my account unbanned 4 hours later after I sent in a ticket.

If you account is banned, I highly recommend his service. If it is unsuccessful getting your account unbanned he will keep trying until it is unbanned which he did two years ago and now a couple days ago. The fact that I purchased his service two years ago and he honored my request and got my account unbanned a couple days ago is just A+++. He knows that he is doing!


I lost account about 3 weeks ago in that blizzard summer sweep, it was perma ban.
After contacting Sephirofl we made deal and give it a try, it wasnt easy i got some *** in costumer support but even with that after few tryes we managed to get me unbaned and my account restored.
Sephirofl gave me quite solid support and answer all my questions and mails i sent him, even after we were done with account he gave me some tips for my another account problems.
+ rep for u mate and keep good work! i sure will contact u again if i get into trouble with blizz again!


One of my WoW account was banned since 2007. I wrote and called Blizzard every year since to try to unban it. I've literally harassed them but without success. According to Blizzard, my account was permanently banned! So I was a bit skeptical about the Sephirofl unban services. But I decided to try because it is not expensive and telling me, you never know ... . Two days and two incredible letters later, my account was unbanned and ready to use! I could not believe it and yet it was true, I must recommend that incredible Sephirofl unban service because it really blew me away! Again thank you man!


Excelent Work Seph!! This person helped me at unban my last 3 year account!!. i was a part of the banwave in january this year 2012.. i paid 15 dlls by paypal, and sent the 1st letter.. blizz says "final world no UNBAN THIS ACCOUNT" but with the work of this guy and perseverance we finaly cross the river.... take us like 10 days be patient and do exactly what he says.. ty again Seph!


I paid Sephirofl $13 USD he wrote me 1 letter and my account went from being permanently closed to unbanned! WITH JUST 1 LETTER FROM THIS GUY! He is THE **** is all I have to say.

Thank you very much for your services Sephirofl!


Amazing! I paid, he wrote an amazing letter, I sent it [was confusing because you cant just email them now, you have to use their ticket system in battle.net], and literally 5 minutes later I was unbanned!

Edited by Sephirofl
Posted

this guy is amazing, got a lot of ppl unbanned dont ask me how he just do it, if you have an acc banned he will get it unbanned for you, no need to farm everything again or to quit your favorite game.


 


Trusted+++


Posted

hahahahhahaha 16 posts really?

not all spamming topics for posts count like you do , that don't make untrust someone :) gtfo and learn how marketing works , and than talk , anyway i know this guy from epicnpc and he's trusted alot there :) + from me Sep

  • 4 weeks later...
Posted

No offense mate, but why would anyone pay someone to unban him?? No offense again, but to me it looks like someone who just wants to get some money from the only thing he can do, which is no bad at all, but it is weird :)

Posted

No offense mate, but why would anyone pay someone to unban him?? No offense again, but to me it looks like someone who just wants to get some money from the only thing he can do, which is no bad at all, but it is weird :)

 

Well, unlike you, many users are connected to their accounts, and are willing to do what they need to recover their banned accounts.  Users may try on their own, and be unsuccessful at this, but I am here to recover what they cannot.  People can invest hundreds or even thousands of hours, as well as dollars into their accounts, so when it comes down to it, yes they are willing to pay a miniscule amount to recover what they had lost.

 

 

 

Online Now!

 

If you need Unbanned, message me at the following:

Skype - BigZuc0

Email - Zardoling@gmail.com

  • 3 weeks later...
  • 5 years later...

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