Jump to content

Recommended Posts

Posted (edited)

http://www.mmocast.com/lineage-2-ncsoft-open-classic-server/


I wonder if this will come to the US in the future.

ps: ignore if old by any chance, just came across this and didn't see it posted in MxC.

Edited by Universe
Posted

From the pictures. the plan s up to Gracia Final. Higher chronicles would depend on the population wanting it or not.

 

Who knows tho, maybe they stop in IL or sooner or even have servers on diff chronicles (one IL, one GF would rock)

Posted (edited)

 

http://m.inven.co.kr/webzine/wznews.php?idx=110393&site=lineage2 from the google translation i saw that it says something about usa so it will probably come in eu too :D:D:D

 

 

Interesting read. Thanks.

 

▲ 하지만 클라이언트는 동일하며, 서버 목록에서 일반↔클래식 서버를 선택할 수 있다

 

Seems you will connect with the same client from GOD+ live servers oO. Going to be interesting.

Edited by ericvini
Posted

That's quite a big project of going thru their old codebase.

 

Looks like a mix and match of some c2-c3 stuff, then c4-int- and so on.

 

 

Would be interesting to see how they balance things and which chronicle they stick to interms of algorhythms and logical calculations.

Gonna suck for EU pservers if it comes - but it's not gonna come thru West that's for sure.

 

Innova will be first on the spot...which means certain people get access to it atleast.

Posted (edited)

It gonna be pay-to-play from June 3 while testing server, if there will be one in EU/NA, is free-to-play.

 

They also announced that in 2 years this server will reach current version, unless there will be a big reaction from the players.

 

 

http://boards.rochand.com/viewtopic.php?f=52&t=1265

Edited by Gries
Posted (edited)

 

It gonna be pay-to-play from June 3 while testing server, if there will be one in EU/NA, is free-to-play.

 

They also announced that in 2 years this server will reach current version, unless there will be a big reaction from the players.

 

 

http://boards.rochand.com/viewtopic.php?f=52&t=1265

 

 

Second line is kind of incorrect. Where they stop will depend on the players. They don't seem to want to go to GoD at all, maybe not even more than Gracia (if they get this far).

 

Current plans are on the pictures.

Edited by ericvini
Posted

  

 

Second line is kind of incorrect. Where they stop will depend on the players. They don't seem to want to go to GoD at all, maybe not even more than Gracia (if they get this far).

 

Current plans are on the pictures.

I believe they will go up to Gracia Epilogue,cause after that is when L2 lost a majority of players. Hope it's free-to-play and not pay-to-play

Posted

 

I believe they will go up to Gracia Epilogue,cause after that is when L2 lost a majority of players. Hope it's free-to-play and not pay-to-play

 

 

In Korea at least its p2p, always has been. It also has f2p features tho (not as much p2w as here).

Posted (edited)

Game is C1 now with the according world map.

 

Like 300 players in the starting zone, killing gremlins was awesome...

 

They already opened a second server.

 

Skills acquire method are GOD LIKE - aka their own window, no trainers (I edit this as their SP cost MAY be the same, not sure).

 

Game is not exactly as it was. Townsare a bit different (for the better).

 

There seems to be more quests too.

 

No pictures as I'm too lazy to edit the shots to protect my char name.

 

One last thing: chars don't have collision detect anymore...lame.

 

Already got my pvps going tho. Daggers can kill me in 2 hits (DE mage) and I kill them in 1 hit. Lovely stuff. I really miss the collisions tho.

Edited by ericvini

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




  • Posts

    • hello, i want to wtt my charracter in l2elmorelab 1x harbor for 1.5kkk adena in l2reborn 10x new. Or if you interested tell me your offer. :)) Clean Mail 30 lvl Cleric Naked   Updated.
    • package ai.npc.NFWalker; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Random; import l2r.gameserver.enums.CtrlIntention; import l2r.gameserver.model.Location; import l2r.gameserver.model.actor.L2Npc; import l2r.gameserver.model.quest.Quest; import l2r.gameserver.network.clientpackets.Say2; import l2r.gameserver.network.serverpackets.NpcSay; public class NFWalkerAI extends Quest { private static final int WALKER_NPC_ID = 20116; private final Map<String, Route> routes = new HashMap<>(); private final Map<Integer, Integer> npcIndexes = new HashMap<>(); private final Map<Integer, Boolean> npcReverse = new HashMap<>(); private final Map<Integer, String> npcCurrentRoute = new HashMap<>(); public NFWalkerAI() { super(-1, NFWalkerAI.class.getSimpleName(), "ai/npc/NFWalker"); loadRoutes(); addSpawnId(WALKER_NPC_ID); } private void loadRoutes() { // Route 1 Data Route route1 = new Route("route1"); route1.addPoint(new RoutePoint(0, 149363, 172341, -941, 0, false, "")); route1.addPoint(new RoutePoint(1, 148568, 172328, -980, 5, true, "Puff")); route1.addPoint(new RoutePoint(2, 148536, 172792, -980, 0, false, "")); // Route 2 Data Route route2 = new Route("route2"); route2.addPoint(new RoutePoint(0, 149363, 172341, -941, 0, false, "")); route2.addPoint(new RoutePoint(1, 150248, 172328, -980, 5, true, "Rise my children! Bring me the servants of the god! Let them be offered to our god Bifrons!")); route2.addPoint(new RoutePoint(2, 150248, 172776, -980, 0, false, "")); // Add routes to the map routes.put("route1", route1); routes.put("route2", route2); } @Override public String onSpawn(L2Npc npc) { if (npc.getId() == WALKER_NPC_ID) { selectInitialRouteForNpc(npc); } return super.onSpawn(npc); } @Override public String onAdvEvent(String event, L2Npc npc, l2r.gameserver.model.actor.instance.L2PcInstance player) { if (event.equalsIgnoreCase("move")) { moveNpc(npc); } else if (event.equalsIgnoreCase("check_reached")) { checkIfReached(npc); } return null; } private void moveNpc(L2Npc npc) { String routeName = npcCurrentRoute.get(npc.getObjectId()); Route route = routes.get(routeName); Integer pointIndex = npcIndexes.get(npc.getObjectId()); if (route != null && pointIndex != null) { RoutePoint point = route.getPoints().get(pointIndex); if (point.isRun()) { npc.setRunning(); } else { npc.setWalking(); } if (!point.getChat().isEmpty()) { npc.broadcastPacket(new NpcSay(npc.getObjectId(), Say2.NPC_ALL, npc.getId(), point.getChat())); } npc.getAI().setIntention(CtrlIntention.AI_INTENTION_MOVE_TO, new Location(point.getX(), point.getY(), point.getZ())); // Log movement intention System.out.println("NPC " + npc.getObjectId() + " moving to " + point.getX() + ", " + point.getY() + ", " + point.getZ()); // Schedule a check to see if the NPC has reached its destination startQuestTimer("check_reached", 1000, npc, null); } } private void checkIfReached(L2Npc npc) { String routeName = npcCurrentRoute.get(npc.getObjectId()); Route route = routes.get(routeName); Integer pointIndex = npcIndexes.get(npc.getObjectId()); if (route != null && pointIndex != null) { RoutePoint point = route.getPoints().get(pointIndex); Location currentLocation = npc.getLocation(); Location targetLocation = new Location(point.getX(), point.getY(), point.getZ()); // Check if the NPC has reached the target location if (currentLocation.equals(targetLocation)) { // Log that the NPC has reached the target System.out.println("NPC " + npc.getObjectId() + " reached target " + targetLocation); // Schedule the next movement startQuestTimer("move", point.getDelay() * 1000, npc, null); if (!npcReverse.get(npc.getObjectId())) { pointIndex++; if (pointIndex >= route.getPoints().size()) { npcReverse.put(npc.getObjectId(), true); pointIndex = route.getPoints().size() - 1; } } else { pointIndex--; if (pointIndex < 0) { npcReverse.put(npc.getObjectId(), false); pointIndex = 0; // Choose a new route after completing the current one in both directions switchRouteForNpc(npc); return; } } npcIndexes.put(npc.getObjectId(), pointIndex); } else { // Check again after 1 second startQuestTimer("check_reached", 1000, npc, null); } } } private void selectInitialRouteForNpc(L2Npc npc) { // Randomly select either route1 or route2 String selectedRouteName = "route" + (new Random().nextInt(2) + 1); npcCurrentRoute.put(npc.getObjectId(), selectedRouteName); npcIndexes.put(npc.getObjectId(), 0); npcReverse.put(npc.getObjectId(), false); startQuestTimer("move", 5000, npc, null); // Log initial route selection System.out.println("NPC " + npc.getObjectId() + " selected initial route " + selectedRouteName); } private void switchRouteForNpc(L2Npc npc) { String currentRoute = npcCurrentRoute.get(npc.getObjectId()); String newRoute = currentRoute.equals("route1") ? "route2" : "route1"; npcCurrentRoute.put(npc.getObjectId(), newRoute); npcIndexes.put(npc.getObjectId(), 0); npcReverse.put(npc.getObjectId(), false); startQuestTimer("move", 5000, npc, null); // Log route switching System.out.println("NPC " + npc.getObjectId() + " switched to route " + newRoute); } private static class Route { private List<RoutePoint> points = new ArrayList<>(); public Route(String name) { } public void addPoint(RoutePoint point) { points.add(point); } public List<RoutePoint> getPoints() { return points; } } private static class RoutePoint { private int id; private int x, y, z, delay; private boolean run; private String chat; public RoutePoint(int id, int x, int y, int z, int delay, boolean run, String chat) { this.id = id; this.x = x; this.y = y; this.z = z; this.delay = delay; this.run = run; this.chat = chat; } public int getId() { return id; } public int getX() { return x; } public int getY() { return y; } public int getZ() { return z; } public int getDelay() { return delay; } public boolean isRun() { return run; } public String getChat() { return chat; } } } I looking for help, with this, the npc not start to move. Im trying to create, an NPC wich have multiple walk routes basic logic is  random pick a route complite the route  like Route 1 start form zero (0 -> 1 -> 2(or more) -> 1 -> 0) When the npc return to 0, the script should pic the other route and start again.  And if there is a message like point 1 here     "route1.addPoint(new RoutePoint(1, 148568, 172328, -980, 5, true, "Puff"));" The npc should display the chat message. Currently my problem is the npc not moving, but if I manage it to start moving its randomly move between the route 1 and 2 set of coordinates. Currently for me its  a nightmare. I hope anyone can help somhow.
    • We are certainly not an ambulance, but we will definitely cure you of blacklists and empty pockets. Live freely with SX! Each of you will receive a trial version of SX to familiarize yourself with the product, all you have to do is post in this thread
    • qual e o valor pra atualizar o java da soucer ?
  • Topics

×
×
  • Create New...