Jump to content

Toda la actividad

Este flujo se autoactualiza

  1. Hoy
  2. We are excited to announce a major change, after careful consideration, we have decided to fuse the 5-year-old Rise server into the recent Ascension server. Unlike our previous server fusions, this time Rise will be merged into Ascension, not the other way around. This weekend the Rise to Ascension merger will take place. Important Details: Impact on Ascension Players: Ascension players will not be affected in any way. The gameplay and existing settings on Ascension will remain unchanged. Changes for Rise Players: This fusion will primarily affect Rise players, due to the different gameplay mechanics on the Rise server. Why This Change? The Rise server, launched in 2019, has undergone numerous changes in an attempt to revitalize its player base. However, due to the accumulation of items, yang, and other factors over the years, these efforts have not produced the desired results. By merging Rise into - Ascension, we aim to provide Rise players with a fresh start and the opportunity to join a thriving community. Benefits: For Rise Players: A new chance to play in a more active and engaging environment alongside the dedicated players of Ascension. For Ascension Players: An increased player base, leading to more dynamic gameplay and interactions. What's Next: We've been working on a content update for a while now, which includes new maps, new dungeons, a new rune system, a guild system, new mining and fishing content, new daily quests, new equipment, new passive skills, and more. Once Rise players are integrated with the Ascension players, everyone will start fresh together with the new content update. This will bring more activity and break the monotony for players on both servers. The content update will be added a few weeks after the fusion. FAQ about what will be moved: These are the most important changes. Expect all items not mentioned here to be deleted or altered. All items that are transferred will be soulbound for 2 months, meaning nothing will be tradable to avoid market disruptions. New items farmed on Ascension will be tradable. Characters: Hero Level: All Hero Levels will be set to level 120. Affects: All affects like potions or consumables which don't exist on Ascension will be removed. Biologist Mission: Progress will transfer up to Water Energy. Horse Skills/Levels: Will be transferred. Leadership: Will NOT be transferred. Titles: Will NOT be transferred. Items: Shadow weapons, Elemental Armors +10 to +15 will be transformed to +9. Elemental Belt +10 to +15 will be transformed to Kyanite Belt +9. PvP equipment will be transferred as they are. Average Damage on weapons will decrease by 7%. Elemental Accessories & Shield will become Kyanite - Accessories & Shield, keeping their upgrade levels. All Hydra Shields +7 and above will become Kyanite Shield +0. Master Hunter Helmet will become Kyanite Helmet, keeping their upgrade levels. Elemental Stones will be removed. All other item upgrades will be downgraded by 2 levels. Elemental Rings will be removed; they will be replaced with some RC vouchers. Rouge Talisman/Lapis Talisman will become the final form of Adept Talisman; all other talismans will be removed. Wings from Blessed 16 to Blessed 20 will be downgraded to Blessed 15. All wing skins will be converted to basic wing skins existing on Ascension. All attendant seals will become the Monkey type. Pets & mounts with maximum bonuses will be converted to ones that exist on Ascension; bonus will be the same, just the skin will change. Pet Saphy/Jaden and other weak mounts will be transferred as they are and they will be soulbound with a 90-day expiration time. Items from the Upgrade, books, ores, chests, enchant items special inventories will not be transferred. Other miscellaneous items except Permanent consumables (Permanent Dews, Dragon God Attack/Defence/Life+, Critical/Piercing Hit), Ritual Stone, Transformation/Reverse Transformation Buffi, Buffi Seal & Buffi Name Scroll, Air/Mystic/Fire/Water/Earth Potion, Low/Medium/High Dungeon Hourglass will not be transferred. Yang & Ancient Coins will be removed. All transmutations will be removed. RC & SC Will be transferred. LE will be removed. Custom costumes & hairstyles will be visible only to the player that have them equipped and will be not tradable. The bonuses will be transferred. We are committed to ensuring a smooth transition and will provide detailed instructions and support for Rise players throughout this process. Thank you for your understanding and continued support.
  3. Buenas tardes ¿Alguien tiene el sistema o la misión Armas para jóvenes héroes?
  4. Ayer
  5. La semana pasada
  6. Cela fait presque 2 ans que Shiva est en ligne en tant que plus grand et meilleur P-serveur oldschool de Metin2. Certains joueurs sont avec nous depuis la phase bêta et jouent encore activement sur Shiva. Nous tenons à exprimer notre sincère gratitude pour cela ! Pourquoi devriez-vous commencer à jouer sur Shiva maintenant ? * Équipe active depuis plus d'un an * Événements réguliers * Pas de Pay2win * Base de joueurs extrêmement large * Investissements continus dans la publicité et le marketing * Pas de bots https://shiva.international/r/Registration
  7. un saludo nuevamente a la comunidad, este es un pequeño fallo que no penso legend cuando desarrollo este sistema hace años y me parece realmente extraño que la mayoria ni se de cuenta de este pequeño error al selecionar un target de personajes aparezca el boton para visualizar drop, esto no deberia generar errores en la fuente. pero sucede que puede cambiar el posicionamiento de la ventana o no cargarse correctamente dejando de mostrar la informacion para jugadores en el target. bueno demasiado texto la solucion es la siguiente abrir uitarget.py buscar la definicion de SetEnemyVID def SetEnemyVID(self, vid): y buscar la siguiente linea if app.ENABLE_SEND_TARGET_INFO: (textWidth, textHeight) = self.name.GetTextSize() self.infoButton.SetPosition(textWidth + 25, 12) self.infoButton.SetWindowHorizontalAlignLeft() self.vnum = vnum self.infoButton.Show() ahora cambiarlo por lo siguiente: if app.ENABLE_SEND_TARGET_INFO: if vnum >= 101: (textWidth, textHeight) = self.name.GetTextSize() self.infoButton.SetPosition(textWidth + 25, 12) self.infoButton.SetWindowHorizontalAlignLeft() self.vnum = vnum self.infoButton.Show() o tambien de esta forma if app.ENABLE_SEND_TARGET_INFO: (textWidth, textHeight) = self.name.GetTextSize() self.infoButton.SetPosition(textWidth + 25, 12) self.infoButton.SetWindowHorizontalAlignLeft() self.vnum = vnum if vnum >= 101: self.infoButton.Show() el cambio es basico y lo que realiza es que solo si el valor es 101 o mayor carga la informacion para mostrarse tambien pueden hacerlo de esta forma que seria un poco mas "profesional" if app.ENABLE_SEND_TARGET_INFO: (textWidth, textHeight) = self.name.GetTextSize() self.infoButton.SetPosition(textWidth + 25, 12) self.infoButton.SetWindowHorizontalAlignLeft() self.vnum = vnum if chr.GetInstanceType(self.vid) != chr.INSTANCE_TYPE_PLAYER: self.infoButton.Show() realiza exactamente el mismo proposito solo estamos verificando que no sea jugador para mostrarlo y de la otra forma, verificamos el value mobvnum del mob proto el cual seria el primero que es 101, utilicen el que mayor les guste es algo realmente sencillo pero viendo en 2024 que solo un par de servidores se han dado cuenta de este error y lo han fix y el 99% de servidores hispanos tienen este problema decidi compartirlo, podria hacerse de otra manera pero esta es simple y es funcional.
  8. Invoca ese mob directamente y matalo, si se cae el servidor entonces es problema del mob proto, tendras que eliminar la linea del tartaro del mob proto y hacerlo de nuevo usando de base el mob 1092 de torre demoniaca
  9. ¿Que tiene que ver? De hecho la inmensa mayoria de los servers son base de X serverfile con las mismas o similares caracteristicas, como es lo normal. O sino nadie jugaria ningun server por que es igual o similar de los tantos que se han abierto
  10. Despues de la espantada venta de equipos de los admin , cierre sin avisar cres que alguien abrira un server con esas files? que pasara cuando los usuarios que entren vean que son las mismas? En mi opinion deverias guardarlas 1 o 2 años jajajja
  11. Visítanos en nuestro servidor Discord y participa en nuestros concursos. Muchos objetos gratuitos te esperan en Echo. Discord Website
  12. Ahí revise los regen de los mapas individuales y el que solo regen y no invoca ninguno al 100, la quest no estará mal?
  13. Posiblemente sea el Grupo vnum 100, revisa "group.txt" posiblemente el regen esta invocando al vnum 100, pero deberia ser el "g" no "r" en su respectivo regen.txt del mapa
  14. Hola gracias por contestar, te comento, volví a probar y sigue cerrando el server, pero no tira el mismo syserr, hay algo raro, ya revise la quest, nose que mas hacer x_x
  15. Este mensaje de error indica que hay un problema al intentar generar un nuevo personaje no jugador (NPC) en el juego porque no se encuentra la información necesaria para el NPC con el VNUM 100 en la base de datos. Para corregir este error, es necesario agregar o corregir la información del NPC con el VNUM 100 en la base de datos del juego. Es posible que la entrada correspondiente para este NPC no esté completa o esté incorrecta, por lo que se debe revisar y corregir la información para que el juego pueda generar el NPC correctamente.
  16. Hello, my first and last discount ! ty DALL-E
  17. Hola comunidad! como andas mucho gusto, hace rato que estoy trabajando y reparando Files Drakon2 para armar un servidor, soy yo solo y voy despacio, ya he podido montarlos en mi pc y hacer que otros usuario se conectasen desde otra ip a través de mi ip Publica Fija, después de ir paso a paso solucionando cosas, itemshop, quest y otras questiones ahora me encuentro en un ricon medio desentendido, es sobre la catacumbas, les comento todo va bien hasta una planta antes de llegar a azrael, una ves que llego ahí y mato al tártaro el cliente me da un error y se cierra, además el servidor se cae... el syserr del cliente me tira esto 0523 20:26:31705 :: Damage is equal or below 0. lo cual no se a que estaria haciendo referencia sobre el dañor y el syserr del Servidor me tira esto SYSERR: May 23 20:28:24.821642 :: SpawnMob: SpawnMob: no mob data for vnum 100 el cliente que uso es el Synera desde ya muchas gracias y en lo que pueda ayudar estaré para lo mismo actualizo... luego de probar el comando levanta.sh que tengo en lo files, el servidor levanta, pero al entrar a catacumbas primero me saca, luego vuelvo a entrar y me carga el primer mapa, lo termino y me vuelve a sacar, luego ingreso y estoy en el 2 piso a partir de ahi puedo hacer toda la dungeon hasta Azrael, nose que estara pasando. . . . Desde ya Muchas Gracias por la ayuda... DEJO LA QUEST QUE ESTOY USANDO, devils_catacomb.lua
  18. Hola a todos, Hoy les ofrezco a la venta los archivos del servidor del juego Celeste2. Este servidor está desarrollado con las siguientes tecnologías: MartySama 5.6 Visual Studio 2022 gcc 10 VERSION DE CELESTE2 1.6 Información del Servidor Multilenguaje OWSAP: 100% funcional y disponible para añadir hasta 11 idiomas. Login Adaptado: Permite cambiar de idioma en la pantalla de inicio. Habilitar/Inhabilitar Reino Amarillo Biólogo Portátil Tienda Offline Dracarys + Buscador Sistema de Títulos Monturas como Mascotas Eventos Automáticos Filtro de Recogida Vestimenta de Aura Wikipedia Ingame Itemshop (Dracarys) + Render Pase de Batalla (Aslan) Sistema de Chamán (Aslan) Inventario Especial Visualizador de Cofres + Apertura x100 Registro de Comercios Ver el Equipamiento Ver los Jefes en el Minimapa Habilidades de Colores Emojis en el Chat Sistema Elemental: Mobs con elementos. Modo Perro: Reducción de lag. Banderas en las Ciudades (Evento) Sistema Anti-Bot (Check) Auto Metineo NPC Present Auto Dopador de Sani Información de Mazmorras + World Boss Sistema de Efectos: Arma, armadura y efectos especiales. Ocultar/Mostrar Atuendos y Vestimenta de Aura Mazmorras: Torre de Demonios, Azrael, Baronesa, Nemere, Arrador. Reingreso a Mazmorras: 5 minutos si sales. Evento de Budokan Más de 50 Atuendos Super Metines: Metines Drop x3, Event Flag. Cliente y Servidor Check_Version Escalado de Metines Sistema de Gaya Sistema de Libros de Misión Refinados Permanentes Sistema de Mantenimiento y Lobby Sistema de World Boss de Yuma Precio: 400 EUR Desde el 23/05/2024 hasta el 01/06/2024 El precio será de 300 EUR OJO: En estos archivos trabajamos 2 personas para realizarlos y dejarlos lo mas estables posible. Si estás interesado o tienes alguna pregunta, no dudes en contactarme. ¡Gracias! Discord: Kronixer Whatsapp: +57 3122852597 FOTOS: https://drive.google.com/drive/folders/1XHwn2FN6IL3OTX9rNR8QX_fYsOXrl5aT?usp=sharing VIDEOS: VIDEOS 2: Break EDIT
  19. Anteriormente
  20. Good day, I offer my entire project called Fey for sale. Fey is a completely finished and ready-to-run oldschool server, which was online in live operation until a few days ago. Due to time constraints it was closed recently. The server is international and available in 5 different languages. English, German, Romanian, Turkish and Polish. What is included in the sale? - Serverfiles. - Source. - Client. - Tools. - Homepage. - Patcher. - Pre-configured firewalls. - All associated designs. - 100% support. As already mentioned, this is a complete project which will be delivered in one piece. The server files have already been online several times by me in live operation, which is why I can guarantee that they are not only secure, but also bug-free/clean and stable. Furthermore, there are several security measures in this project, which I will gladly go into in more detail privately. In addition I can offer to implement more systems and co to the buyer on request, or offer other development guarantees. These will of course be negotiated separately after the main sale. I don't want to see 5 different servers with my files, or 5 different servers with the same designs, and I don't want them to be made public. Therefore the sale is limited once. The whole project will only be sold once. As soon as the project has found a new owner, the sale will end! Here are some insights from the server presentation: (Click here to view the server presentation) If you are interested you can contact me in Discord. I can only be reached there. Discord: nives_fey
  21. Todo en el juego está traducido al 100%. Sin embargo, la presentación aquí solo está disponible en inglés. Website: https://s2.zenit.bz/ Discord: https://discord.gg/zenit https://pres.zenit.bz/echo/images/EN_Echo2-Vorstellung-Part-2_06.jpg
  22. Update : My discord : https://discord.com/invite/WUqmFCE3z2
  1. Cargar más actividad
×
×
  • Crear nuevo...