Jump to content

[GUIDE] ByPass Bake-Ice Step By Step (Works For Interlude) [IG]


Recommended Posts

Posted

i am confused then >.<, that could be it, because when i open the clean walker client, it isnt even in english, but its the only one i could find that gets past bake ice, anyone got a GG killer that works for sure?

Posted

thats my set.ini

[DEFAULT]

CountryList=Dragon 15x

DefaultCountry=0

DefaultServer=0

DefaultCharacter=0

DefaultAccount=

DefaultPassWord=

[Dragon 15x]

LoginServerIP=127.0.0.1

LoginServerPort=2107

ProtocolVersion=746

ServerList=Dragon 15x

 

and here is what i get >.>

 

19:02:41 - Debug build

19:02:41 - Using Proxy: False

19:02:41 - Starting... SOCKS[1999] LOCAL[2106] OOG[2107]

19:02:50 - New local connection[2107]

19:02:51 - Local LS connection->Handle

 

some how i can't get it to queue the game server connection.... i got l2fork,l2asrv,l2walker 10.7.4,proxifier on,and the packet changer....

i get this in walker

 

19:02:50 Now we will use local verification:o)

19:02:50 Link LoginServer Succeed.

19:03:20 ->Login LoginServer Timeout.

 

Posted

oh I forgot to say.. kinda dumb but I never bothered to make my fake c5 login use default token

 

you have to use 5F3B352E5D39342D33313D3D2D257854215E5B24

Posted

18:52:44 - New local connection[2107]

18:52:44 - Local GS connection->Add to queue

18:52:44 - Local connection waiting

18:52:50 - Established connection - Remote IP '85.14.217.252' Remote Port '2106'

18:52:50 - New SOCKS connection for 85.14.217.252:2106

18:52:51 - Proxy LS connection->Handle

18:52:55 - Removed a SOCKS:LS connection

18:52:55 - Remote listen thread exit

18:52:55 - Local listen thread exit

18:52:55 - Established connection - Remote IP '89.163.146.236' Remote Port '7777'

18:52:55 - New SOCKS connection for 89.163.146.236:7777

18:52:56 - Proxy kicked~

18:52:56 - Proxy GS connection->Add to queue

18:52:56 - New pair

18:52:56 - Removed a gameconnection

18:52:56 - Remote:Unable to read data from the transport connection: A blocking operation was interrupted by a call to WSACancelBlockingCall.

 

What is this?

 

I did this: start proxifier, gameguard.des -> localhost, start l2fork, l2wpc, walker, dn l2. Set in oogwalker 127.0.0.1 2007 to gameserver, log in with normal client, oogwalker writes login server succeded, then i get that error in l2fork above ^

 

 

turksauron! your wpc listening at what port? If if you did this, it's not too hard to make it to save login packets, and replace login packets of l2walker with the saved login packets :)

Posted

you must make the proxy in walker only gameserver proxy with ip and port 127.0.0.1 : 2222

 

some how the token.exe i got aint working.. will give it few more tries..

 

EDIT: cant get token.exe to work right.. it either don't work at all or it works and i get an error saying "l2walker not found"

ideas?

Posted

I m making quest now, when it finish, i ll put a guide here. Working good but there is something that delays the packets.

 

This program catches the packets, decrypt them, translate them to C6 or C5 packet language, encrypt them then send. Some messages contain multiply packets. The last packet of this messages could be splitted and the other part comes with the next message. I ve to get whole packet to translate. So I made the program to wait the next messages to complete the parts then process it and send. But I saw that, char position in walker, is not fit the l2 client. The reason of the problem may be this, may be not. I didnt understand why exactly, just a guess but I ll fix it, promise ;)

Posted

this topic got sticky.

 

I will start to clean it By Useless shitty replies.

 

DONT SPAM !

Posted

I have problem to log few chars, in select screens ( char 2 ) show a lot of things and lvl 544456465, what is this?

 

ps: now my antivirus ( nod32 ) is detecting ur l2wpc win32/jeefo

ps2: my antivirus now its crazy, its detecting a lot of win32/jeefo ,its normal?

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

    • im using l2jmobius
    • 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