Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation since 03/05/25 in Posts

  1. This will replace the apple sprite on missing items with a question mark based on the question mark emotion sprite. Also includes a bigger version of the question mark texture made by me. To setup this: 1: Replace the apple's '»ç°ú' ACT, SPR and BMP sprites in the data with the ones inside 'data.zip' from this post 2: Add and reference the new 'apple_' textures from 'data.zip' in your itemInfo (so that the apples use the pseudo-custom apple texture instead of also using the '?') Result: Apples still look like Apples. Unknown Items look like a question mark. Less confusion, easier to spot and report! Includes: - »ç°ú.act / spr / bmp - apple_.act / spr / bmp - Partial 'itemInfo' template data.zipunknown.lua
    6 points
  2. Bonus: custom art for 'data\texture\À¯ÀúÀÎÅÍÆäÀ̽º\cardbmp\sorry.bmp' made by me (by modifying other assets) sorry.bmp
    4 points
  3. Many people have questions about how to properly set up a newly acquired VPS to run the rAthena emulator. To simplify this process, I created an automated script that handles all the necessary configuration quickly and easily. Most tutorials available online focus on running the emulator on personal computers, but nowadays, the trend is to use a VPS for better performance and stability. With this script, you can set up your environment efficiently, even without advanced server knowledge. For those who want to start a professional rAthena project, here are some tips: 1. Use MariaDB instead of MySQL MariaDB is a community-developed fork of MySQL that offers several performance and optimization advantages, especially for large-scale applications like rAthena. While both database systems are compatible, MariaDB stands out due to its efficiency in handling intensive queries. Benefits of using MariaDB: Better Performance: MariaDB is optimized for handling large volumes of data and executes complex queries faster than MySQL. Improved Storage Engines: Supports advanced engines like Aria and TokuDB, which enhance performance and reduce data fragmentation. Faster Replication: Offers faster and safer master-slave replication, ensuring better data synchronization in distributed environments. Open Source & Active Development: Fully open-source with a more active development cycle, meaning better features and faster bug fixes. Optimized Thread Pooling: Handles multiple simultaneous connections efficiently, reducing CPU overhead and improving query response time. For an rAthena server, this translates to faster character loading, smoother gameplay, and better handling of concurrent player actions. 2. Use nftables instead of iptables nftables is a modern packet filtering framework that replaces the older iptables. It is now the default in most Linux distributions and provides better performance and flexibility when managing network rules, including basic DDoS protection. Benefits of using nftables: Higher Performance: Processes rules faster with a more optimized kernel implementation, reducing the impact on system resources. Simplified Rule Management: Uses a cleaner and unified syntax, making it easier to create and manage complex firewall rules. Better DDoS Mitigation: Supports more efficient rate limiting and packet inspection, allowing you to block basic DDoS attacks with minimal overhead. Dynamic Rules: Allows for dynamic rule adjustments without the need to reload the entire firewall configuration. IPv4/IPv6 Support: Handles both IPv4 and IPv6 rules natively, simplifying firewall management in modern environments. For a professional rAthena project, nftables ensures better network protection, faster packet processing, and more efficient handling of traffic spikes during large player events or attacks. Instructions to Use the Script: Upload the script to your VPS Use an SCP tool or copy-paste the script contents into a file called ubuntu.sh. Make the script executable: chmod +x ubuntu.sh Run the script with root privileges: sudo ./ubuntu.sh Follow the interactive prompts: Choose between MariaDB or MySQL. Input the database name, database user, and password. The script will: Update system packages. Install required dependencies for compiling rAthena. Set up MySQL or MariaDB. Install and configure phpMyAdmin at /phpmyadmin. After completing these steps, your VPS will be ready to compile and run rAthena. ubuntu.sh
    3 points
  4. This was resolved through PMs a while back; here was the final script for anyone interested: // Act Editor Script - v1.0.5.1 // By Tokeiburu GrfColor textForeground = "0xffffff"; var fontType = "Minecraftia"; var fontSize = 14; var fontBold = true; var dataGrfName = @"C:\mobWithNames\data.grf"; var newGrfName = @"C:\mobWithNames\mobsWithName.grf"; var mobDbPath = @"C:\mobWithNames\mob_db.yml"; var attrFixDbPath = @"C:\mobWithNames\attr_fix.yml"; var jobnamePath = @"C:\mobWithNames\jobname.lub"; var npcIdentityPath = @"C:\mobWithNames\npcidentity.lub"; var oldEncoding = EncodingService.DisplayEncoding; var displayMobNames = false; var maxElementShown = 3; var showFirstElementDamage = true; //var elementTextColors = false; // Fixed settings var mobFolder = @"data\sprite\¸ó½ºÅÍ\"; //jobnamePath = @"C:\Gravity Ragnarok - Copy\data\luafiles514\lua files\datainfo\jobname.lub"; //npcIdentityPath = @"C:\Gravity Ragnarok - Copy\data\luafiles514\lua files\datainfo\npcidentity.lub"; //dataGrfName = @"C:\Gravity Ragnarok - Copy\data.grf"; //newGrfName = @"C:\test\mobsWithName.grf"; //mobDbPath = @"C:\Users\Tokei\Desktop\SVN\rathena4\db\re\mob_db.yml"; //attrFixDbPath = @"C:\Users\Tokei\Desktop\SVN\rathena4\db\re\attr_fix.yml"; var jobname = new JobnameLubData(jobnamePath, npcIdentityPath); int[,,] attr_fix = new int[4, 10, 10]; StringBuilder b = new StringBuilder(); var ele2id = new Dictionary<string, int>(); ele2id["Neutral"] = 0; ele2id["Water"] = 1; ele2id["Earth"] = 2; ele2id["Fire"] = 3; ele2id["Wind"] = 4; ele2id["Poison"] = 5; ele2id["Holy"] = 6; ele2id["Dark"] = 7; ele2id["Ghost"] = 8; ele2id["Undead"] = 9; var id2ele = new Dictionary<int, string>(); foreach (var entry in ele2id) id2ele[entry.Value] = entry.Key; try { EncodingService.DisplayEncoding = EncodingService.ANSI; int ival; string[] values; var mobId2ServerName = new Dictionary<int, string>(); var mobId2ServerElement = new Dictionary<int, int>(); var mobId2ServerElementLevel = new Dictionary<int, int>(); { // Load the attr_fix file var parser = new YamlParser(attrFixDbPath); var body = parser.Output["Body"]; foreach (var entry in body) { int level = Int32.Parse(entry["Level"]) - 1; foreach (var ele2id_entry in ele2id) { var element_name = ele2id_entry.Key; var element_id = ele2id_entry.Value; var def_elements = entry[element_name]; foreach (ParserKeyValue def_ele in def_elements) { attr_fix[level, element_id, ele2id[def_ele.Key]] = Int32.Parse(def_ele.Value); } } } } { // Load the mob_db file var parser = new YamlParser(mobDbPath); var body = parser.Output["Body"]; foreach (var entry in body) { int mobId = Int32.Parse(entry["Id"]); mobId2ServerName[mobId] = entry["Name"]; int eleId = 0; int eleLevel = 0; if (entry["Element"] != null) { eleId = ele2id[entry["Element"]]; } if (entry["ElementLevel"] != null) { eleLevel = Int32.Parse(entry["ElementLevel"]) - 1; } mobId2ServerElement[mobId] = eleId; mobId2ServerElementLevel[mobId] = eleLevel; } } Func<Act, string, int, Act> addNameAbove = (actI, display, offset) => { var pixels = new byte[256 * 20 * 4]; BitmapSource bitmapSource = BitmapSource.Create(256, 20, 96, 96, PixelFormats.Bgra32, null, pixels, 256 * 4); var visual = new DrawingVisual(); using (DrawingContext drawingContext = visual.RenderOpen()) { var ft = new FormattedText(display, CultureInfo.InvariantCulture, FlowDirection.LeftToRight, new Typeface(fontType), fontSize, new SolidColorBrush(textForeground.ToColor())); if (fontBold) ft.SetFontWeight(FontWeights.Bold); drawingContext.DrawImage(bitmapSource, new Rect(0, 0, 256, 20)); drawingContext.DrawText(ft, new Point(2, 2)); } var image = new DrawingImage(visual.Drawing); var im = new Image { Source = image }; im.Measure(new Size(image.Width, image.Height)); im.Arrange(new Rect(0.0, 0.0, image.Width, image.Height)); im.UpdateLayout(); var grfImage = GrfToWpfBridge.Imaging.ConvertToBitmapSource(im); var transparent = new GrfColor(0, 0, 0, 0); for (int i = 0; i < grfImage.NumberOfPixels; i++) { Buffer.BlockCopy((grfImage.Pixels[4 * i + 3] > 0x80 ? textForeground : transparent).ToBgraBytes(), 0, grfImage.Pixels, 4 * i, 4); } grfImage.Convert(GrfImageType.Indexed8); grfImage.Trim(); grfImage.Margin(2); Buffer.BlockCopy(GrfColor.Black.ToBgraBytes(), 0, grfImage.Palette, 2 * 4, 4); for (int y = 1; y < grfImage.Height - 1; y++) { for (int x = 1; x < grfImage.Width - 1; x++) { if (grfImage.Pixels[y * grfImage.Width + x] == 1) continue; if (grfImage.Pixels[(y - 1) * grfImage.Width + (x)] == 1 || grfImage.Pixels[(y + 1) * grfImage.Width + (x)] == 1 || grfImage.Pixels[(y) * grfImage.Width + (x - 1)] == 1 || grfImage.Pixels[(y) * grfImage.Width + (x + 1)] == 1) grfImage.Pixels[y * grfImage.Width + x] = 2; } } act = actI; // Doesn't support Bgra32 only sprites if (act.Sprite.Palette == null) return act; var unused = act.Sprite.GetUnusedPaletteIndexes().ToList(); if (unused.Count <= 1) return act; if (!act.Sprite.Palette.Contains(textForeground)) Buffer.BlockCopy(textForeground.ToBgraBytes(), 0, act.Sprite.Palette.BytePalette, 4 * unused[0], 4); if (!act.Sprite.Palette.Contains(GrfColor.Black)) Buffer.BlockCopy(GrfColor.Black.ToBgraBytes(), 0, act.Sprite.Palette.BytePalette, 4 * unused[1], 4); var colors = act.Sprite.Palette.Colors.ToList(); var whiteIndex = (byte)colors.IndexOf(textForeground); var blackIndex = (byte)colors.IndexOf(GrfColor.Black); for (int i = 0; i < grfImage.NumberOfPixels; i++) { if (grfImage.Pixels[i] == 1) grfImage.Pixels[i] = whiteIndex; else if (grfImage.Pixels[i] == 2) grfImage.Pixels[i] = blackIndex; } var index = act.Sprite.InsertAny(grfImage); var max = 0; act.AnimationExecute(0, a => a.AllLayers(p => { if ((ival = ((int)(p.ScaleY * p.Height) / 2 - p.OffsetY)) > max) max = ival; })); max += 15; var layer = new Layer(index, grfImage) { OffsetY = -(max + fontSize / 2) + offset }; ival = 0; foreach (var action in act) { // Don't show for the death animation if (ival >= 32 && ival < 40) continue; foreach (var frame in action) { frame.Layers.Add(layer); } ival++; } return act; }; string displayName; int from = -1; var processed = new HashSet<string>(StringComparer.OrdinalIgnoreCase); using (var dataGrf = new GrfHolder(dataGrfName)) using (var outputGrf = new GrfHolder(newGrfName, GrfLoadOptions.New)) { int count = jobname.Id2Sprite.Count; TaskManager.DisplayTaskC("Adding text label", "Processing...", () => from / (float) count * 100f, isCancelling => { try { foreach (var mobEntry in jobname.Id2Sprite.OrderBy(p => p.Key)) { if (isCancelling()) return; var mobResourceName = mobEntry.Value; var mobId = mobEntry.Key; //b.AppendLine(mobId + "\t" + mobResourceName + "\t" + processed.Contains(mobResourceName)); if (processed.Contains(mobResourceName)) { from++; continue; } if (mobId2ServerName.ContainsKey(mobId)) { displayName = mobId2ServerName[mobId];//.ToUpper(); processed.Add(mobResourceName); } else { displayName = jobname.Id2Job[mobId].Replace("JT_", "").Replace("_", " ");//.ToUpper(); } var actEntry = dataGrf.FileTable.TryGet(GrfPath.Combine(mobFolder, mobResourceName + ".act")); var sprEntry = dataGrf.FileTable.TryGet(GrfPath.Combine(mobFolder, mobResourceName + ".spr")); if (actEntry == null || sprEntry == null) { from++; continue; } var mobAct = new Act(actEntry, new Spr(sprEntry)); StringBuilder e_builder = new StringBuilder(); if (mobId2ServerName.ContainsKey(mobId)) { int eleLevel = mobId2ServerElementLevel[mobId]; int eleId = mobId2ServerElement[mobId]; var dmgElements = new Dictionary<int, int>(); for (int i = 0; i < 9; i++) { dmgElements[i] = attr_fix[eleLevel, i, eleId]; } int highest = -1; int max = maxElementShown; foreach (var dmgElement in dmgElements.OrderByDescending(p => p.Value)) { if (dmgElement.Value < highest) break; max--; if (max < 0) { e_builder.Append("..."); break; } highest = dmgElement.Value; if (e_builder.Length == 0) e_builder.Append(id2ele[dmgElement.Key] + (showFirstElementDamage ? " (" + dmgElement.Value + "%)" : "")); else e_builder.Append(" - " + id2ele[dmgElement.Key]); } mobAct = addNameAbove(mobAct, e_builder.ToString(), 0); if (displayMobNames) mobAct = addNameAbove(mobAct, displayName, 15); } else { if (!displayMobNames) { from++; continue; } mobAct = addNameAbove(mobAct, displayName, 0); } MemoryStream actStream = new MemoryStream(); MemoryStream sprStream = new MemoryStream(); try { mobAct.SaveWithSprite(actStream, sprStream); } catch { from++; continue; } outputGrf.Commands.AddFile(actEntry.RelativePath, actStream); outputGrf.Commands.AddFile(sprEntry.RelativePath, sprStream); if (from % 200 == 0) { GC.Collect(); outputGrf.QuickSave(); outputGrf.Reload(); } from++; } } catch (Exception err) { ErrorHandler.HandleException(err); } finally { outputGrf.QuickSave(); from = count; } }); //ErrorHandler.HandleException(b.ToString()); } } catch (Exception err) { ErrorHandler.HandleException(err); } finally { EncodingService.DisplayEncoding = oldEncoding; }
    3 points
  5. We would like to issue a public retraction regarding a previous statement about the user known as @Pokye Recently, we made a post in which we accused Pokye of misconduct in a transaction involving the purchase of a digital game through our platform, Pcmedias. At the time, we were frustrated with how the situation unfolded, especially after a PayPal dispute was opened. However, after taking the time to reflect, we recognize that the way we expressed ourselves was inappropriate. Accusing someone publicly of fraud without due process or without allowing all parties to present their side was incorrect. We sincerely apologize for any harm or misunderstanding caused by our previous statement. It was never our intention to unfairly damage anyone’s reputation, and we acknowledge that the situation could have been handled more professionally. Moving forward, we will ensure that any disputes or disagreements are resolved through the proper channels, with fairness and respect for all parties involved. We appreciate the understanding of our community and remain committed to maintaining a fair and transparent marketplace. — Pcmedias
    2 points
  6. This will help to get rid red errors in game when you received an item and get rid of crash when you drag item. Download: https://pixeldrain.com/u/e7c6zDVN --- Please remove sprite and texture folder in data.grf to slice down a game file size. (Do a backup first just for safety) Thanks to @KingarteR for finding mostly client database files.
    2 points
  7. A simple converter that will convert item from database to use for client in 30 seconds. _________________________________________________________ >> Download (v.8.2) (30 Mar 2025) << >> Download (Item Preview Collection Sprites) (22 Feb 2025) << >> Source Code << >> English Tutorial << >> Thai Tutorial << >> Sprite Error Checker Tutorial << _________________________________________________________ Pros: Item description sync from database so it's get rid the problem that item description was not match with database. Full combo explanation. Full information explanation. Cons: Not had lore descriptions. Complex item script was take a bit time to read through. How to use: Paste your database files on '\rAthena item_db to itemInfo_Data\Assets', (File name can't be change) Open program and select languages then hit convert. Output files location is the same with program location. Credit @KingarteR resource name finder & mostly client files finder Example output: Link Output error? Try this:
    2 points
  8. Still works in 2025, thanks 2 important tips: You can toggle debug mode with this (top line is debug, commented. Bottom line is no debug, server boots 10x faster!) ::MSbuild.exe %SolutionPath% /p:PlatformToolset=v143 /m MSbuild.exe %SolutionPath% /p:PlatformToolset=v143 /p:Configuration=Release /m Also, some of the VS Code Setup components have been updated or renamed, here's more or less the ones I used, I don't think anything else is required:
    2 points
  9. View File Shops Selling All Costumes Available in Rathena This script has NPC shops that sell all available costume items in rAthena as of March 2025. Costumes are categorized based on their equipment slot (Upper, Middle, Lower and Garment) and distributed across multiple shops (150 item per shop), Ensuring a well-organized and accessible shopping experience. The item list is filtered to include only valid costumes from latest iteminfo_EN.lua (English Translation), preventing missing or invalid entries. if you remove the commented shops it will sell all costumes available in the database (item_equip_db.yml). Ideal for servers looking to provide a complete costume collection for players! Submitter Shiroy Submitted 03/18/25 Category Utilities Video Content Author Shiroy  
    2 points
  10. View File AnyMapDrops This mod made in map_drops.yml now allows you to add drops globally (without specifying a map), I also added a parameter where the added item can go directly to the player's inventory if there is space. Example of use ( db\import\map_drops.yml ) Header: Type: MAP_DROP_DB Version: 2 Body: - Map: ANY GlobalDrops: - Index: 0 Item: Union_Token Rate: 50000 DirectInventory: true - Index: 1 Item: Flower Rate: 100000 SpecificDrops: - Monster: Fabre Drops: - Index: 0 Item: White_Gold_Coin Rate: 50000 DirectInventory: true - Index: 1 Item: Izidor Rate: 50000 - Monster: Poring Drops: - Index: 0 Item: Crystal_Jewel__ Rate: 50000 Note 1: To be valid across all maps, set the map name to ANY. Note 2: The new parameter DirectInventory ( false | true ) allows the item to go directly to the inventory. Note 3: I created 2 new mapflags (nomapdrops and mapdrops), the first is self-explanatory (does not drop any items from map_drops ), the second will be effective for instances, as now map_drops does not drop items in instances, so just apply the second mapflag on the instance (in the instance maps) to make it work again. Example of use: OnInstanceInit: setmapflag instance_mapname("1@nyd"),mf_mapdrops; setmapflag instance_mapname("2@nyd"),mf_mapdrops; Next updates I will add a parameter to mapdrops.yml if you want the item to be dropped in instances too instead of having to use the mapdrops mapflag. Submitter Hyroshima Submitted 06/26/24 Category Source Modifications Video Content Author Hyroshima  
    2 points
  11. View File HanzoBR Free Thor Skin Blue About this file - EN Made for a friend who ended up not using it, so I'm making it available to the community. This Skin has features of WoE Status (On/Off), Server Status (On/Off), Real + Fake Player Count. Please Selling this product is TOTALLY PROHIBITED! Contents Thor Patcher PSD Included - Modify as you wish. WebFiles View - Online Players, Server Status Map, WoE Status - HanzoBR WebFiles Configuration - Server Connection, Server Status and Online Players - Credit @Lawliet - Thanks for this Web Configuration In the Web/status/inc/config.php directory, configure: $Srv_Host = "127.0.0.1"; // Change to your database IP $Srv_Database = "ragnarok"; // Name of your database $Srv_Username = "ragnarok"; // Username $Srv_Password = "ragnarok"; // Password In the Web/status/playeronline.php directory you will find: $playerCount = PlayerCount(); $number = 0; // number of fake users - used only to configure space for the hundreds place in the view or not. // Add the $number to the result of the PlayerCount() function $result = $playerCount + $number; In $number = 0; you can change the value to 50 for example and the user will see $number + $playerCount Assuming you have 15 real players online, the $result will show 65 Players Online (50+15). I created this configuration to measure the space for the hundreds place in the view, so as not to cut the design, however use this function as you wish. In the Web/status/woestatus.php directory you will find: $now = new DateTime("now", new DateTimeZone("America/Sao_Paulo")); Set your Time Zone, find yours in Time Zone PHP, currently it is set to São Paulo-Brazil time Days configuration $allowedDays = [0, 2, 4]; // 0-Sunday, 2-Tuesday, 4-Thursday, In $allowedDays = [0, 2, 4]; - It means that WoE is enabled for 0 = Sunday, 2 = Tuesday, 4 = Thursday "0=Sunday, 1=Monday, 2=Tuesday, 3=Wednesday, 4=Thursday, 5=Friday, 6=Saturday" Hours configuration if (($day == 4 && $hour == 21 && $minute >= 0 && $minute < 60) || (in_array($day, [0, 2]) && $hour == 20 && $minute >= 0 && $minute < 60)) In (($day == 4 && $hour == 21 && $minute >= 0 && $minute < 60) - It means that on day 4 (Thursday) WoE will start at 9:00 pm and will last 60 minutes. And if you have WoE configured for different times, you can configure it without any problem; In (in_array($day, [0, 2]) && $hour == 20 && $minute >= 0 && $minute < 60) - It means that on days 0 (Sunday) and 2 (Tuesday) WoE will start at 8:00 pm and will last 60 minutes. Don't forget to if you liked this. ----------------------------------------------------------------------------------------------------------------------------- Sobre este arquivo PT-BR Feito para um amigo que acabou não utilizando, então estou disponibilizando para comunidade. Esta Skin tem recursos de Status WoE (On/Off), Status Server (On/Off), Contagem de Players reais + fake. Por Favor Venda deste produto está TOTALMENTE PROIBIDA! Conteúdo Thor Patcher PSD Incluso - Modifique como quiser. WebFiles Visualização - Players Online, Status Map Server, WoE Status - HanzoBR WebFiles Configuração - Conexão com servidor, Server Status e Players Online - Crédito @Lawliet - Obrigado pro isso Configuração Web No diretório Web/status/inc/config.php faça a configuração: $Srv_Host = "127.0.0.1"; // Alterar para IP do seu database $Srv_Database = "ragnarok"; // Nome da sua database $Srv_Username = "ragnarok"; // Usuário de acesso $Srv_Password = "ragnarok"; // Senha de acesso No diretório Web/status/playeronline.php você encontrará: $playerCount = PlayerCount(); $numero = 0; // número de usuários fake - utilizado apenas para configuração de espaço para casa de centena na visualização ou não. // Soma o $número ao resultado da função PlayerCount() $resultado = $playerCount + $numero; Em $numero = 0; você pode alterar o valor para 50 por exemplo e irá aparecer para o usuário o $numero + $playerCount Supondo que você tenha 15 players reais online o $resultado irá mostrar 65 Players Online (50+15), eu criei esta configuração para medir o espaço da casa de centena na visualização, para não cortar o design, no entanto use como quiser esta função. No diretório Web/status/woestatus.php você encontrará: $now = new DateTime("now", new DateTimeZone("America/Sao_Paulo")); Configure seu Time Zone, encontre o seu em Time Zone PHP, atualmente está configurado para horário de São Paulo-Brasil Configuração de dias $allowedDays = [0, 2, 4]; // 0-Domingo, 2-Terça-feira, 4-Quinta-feira, Em $allowedDays = [0, 2, 4]; - Significa que a WoE está habilitada para 0 = Domingo, 2 = Terça-Feira, 4 = Quinta-Feira "0=Domingo, 1=Segunda-Feira, 2=Terça-feira, 3=Quarta-Feira, 4=Quinta-feira, 5=Sexta-Feira, 6=Sábado" Configuração de horas if (($day == 4 && $hour == 21 && $minute >= 0 && $minute < 60) || (in_array($day, [0, 2]) && $hour == 20 && $minute >= 0 && $minute < 60)) Em (($day == 4 && $hour == 21 && $minute >= 0 && $minute < 60) - Significa que no dia 4 (Quinta-Feira) a WoE começará às 21:00hrs e terá duração de 60 minutos. E caso você tenha WoE configurada em horários diferentes, poderá configurar sem problema; Em (in_array($day, [0, 2]) && $hour == 20 && $minute >= 0 && $minute < 60) - Significa que nos dias 0 (Domingo) e 2 (Terça-Feira) a WoE comecará às 20:00hrs e terá duração de 60 minutos. Não se esqueça de se você gostou disso. Submitter hanzobr Submitted 03/05/25 Category Patchers Video Content Author HanzoBR  
    2 points
  12. This map is from the game universe expansion series. Made with attention to detail and inspired by the original! .•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•.•°'°•. mosk_dun04 The map completely repeats all the patterns and elements of levels 1 and 2 of the Moscovia dungeon. I tried to use design elements from the official painted representation as much as possible. The map seamlessly connects with neighboring levels. Excellent for placing low-level monsters without a place to live: Woodie > and < Domovoi Woodie already has its own card with an image and effect, but Domovoi still hasn’t, so I’m glad to show you and suggest using this art for Domovoi card! (Without the use of AI. It is initially a pencil drawing on paper) Please download Domovoi_Card.BMP: Domovoi_Card.bmp P.S. In the Slavic religious tradition, Domovoy is the household spirit of a given kin. Please rate it if the map is good enough ~~ This map can be downloaded here https://rathena.org/board/files/file/4487-w0w_map_collection/
    2 points
  13. I believe nobody cares about you, that's why your 300 accounts are banned. You have been violating rathena GNU license the whole time, you're forced by the license to give for free to your costumers the source code which you're not doing, in fact you're requesting more money, and saying it's licensed . You shared the private data of one person across internet (doxxing) which it's illegal, the bad reputation you have in rathena is well deserved. Now you're just trying to look better because in your own post everybody is against you, pathetic.
    1 point
  14. Adding to this topic as Im in that discord. And im pretty sure this will be brought up sometime. TLDR: I was never a reseller yet im banned just for being there with no proof, Mundo Ragnarok is not a reseller discord, yes it has resellers like any other discord for that. but its at least honest with me. What I can say is: You can't decide what communities a person takes part in or not. They can just use fake accounts if they wish. You can't stop people from reselling your stuff, just like you cant stop players from playing private servers if they wish. While Im against reselling and some other stuff, and don't take part in it, I know its done, I just ignore it. Its not my problem. Specially since some sellers were actively hostile to me for no reason. ------------------------ Are there resellers in that discord? yes, there are, there are resellers on pretty much every RO discord. it all depends on if you care about it or not. I can assure you most rAthena staff has resellers on their friendlist. because I also have some. I just don't buy stuff from them willingly. Not because im in some sort of moral highground, but because I like to make my own stuff. Yet I was banned everywhere for that, just for being in that discord (unlike most people who use fake accounts). funny how it goes. ------------------------ Why I am in that discord (and this is the most important thing) Because I was banned and declared a reseller, even if I have never sold anything other than support hours in the past. Nor do I have plan. I make most of my own stuff, I have a patreon that my community helps fund my project. I dont resell stuff, I was never proven to resell stuff, yet I was banned everywhere. There was also no chance for pardon (I talked to @Akkarin over DMs, I was not unbanned and had no chance to defend myself. only proof was me being in that discord). I like most of the people there. If you guys think its "just a reseller" community, think again. there is a lot of support, banter, arguments and discussions about stuff. people come there all the time, and you know why? Because the rAthena BR branch is rotten. Admins cheat, steal stuff, use fake player counters and a lot other stuff... its very difficult to work in Brazil and just do your thing. You will be banned if you call them out. Mundo Ragnarok is a very neutral discord, everyone is welcome as long as you dont cause issues (from what I know) ------------------------ Do you support the RO community? I made my previous server free and open source. I provide support for anyone who asks me. I purchased things in the past directly from @Shakto (sadly I moved to hercules, so cant use them as there is no port, Id love to have hercules ports of some stuff.) but cant get the stuff back as he banned most IP ranges from Brazil, I also purchased work from @Moonyxel, @Katakuri and others multiple times in the past. So I do support some people, but I will never- ever, push a commit to github, or provide a fix to anyone. Why would I if I was banned with no chance to appeal? I'm also strongly against the -HUGE- wave of money that goes through some stuff, paying 400+ usd on crypto for clients, having pulls being deleted because they provide something for free that someone else sells (and person claims its stolen stuff), and other things. Im just overall against so much money being moved around for this stuff. It corrupts things. ------------------------ My final takes on Mundo Ragnarok I had plenty of fun times and cool people there. Had some small support, love to discuss about how they can make a better server and honestly never really got much support from guys in rAthena (and was hostilized sometimes too for calling out bullshit). @iMillenium was always a chill dude, even if I disagreed with him or other people, they were at least always honest, and anyone who spends any amount of time knows I can say some HARSH TRUTHS when things get out of the line. If you guys wanna go ahead and say everyone there is a dirty reseller cheater... well, then feel free to keep me and some others banned from everywhere. Your loss. -- As a final note @Medivh, sharing Pokye's personal information is a low blow. Im 100% against that. Im all for arguing and discussing if you feel like you were harmed in a transaction, but personal data is a big no online. I didn't need to come here to talk about this. But I might as well do it and take another ban if the staff deems necessary. Im tired of this shittalking from both sides.
    1 point
  15. A whole map dedicated to traders to sell/buy. You can either choose to put NPCs for players to buy all kinds of stuff or let players set up their shops in their own tents. It also includes a little beach island with deckchairs, some shadey/hidden areas that can lead to indoors (for illegal shops? xD) and also walking access on some ships and boats.
    1 point
  16. Froggo Rö Folder This is a simple RO folder that contains everything you need to run a 2022-04-06 client, the latest publicly available. I have cleaned and compressed the data.grf file to reduce its size from 3.87GB to 2.14GB. official_data.grf took the same treatment and the file size went down to 426MB. Additionally, I have added a mini-map to all those maps that were lacking one, approximately 275 mini-maps were added, I only ignored some indoor (_in) and guild castles maps. Before BGM, the Rö folder has a total size of 2.62GB, after BGM it reaches 2.96GB Screenshots Requirements Server Up & Running with ‎‏‏‎ PACKETVER=20220406 Visual C++ Redistributables DirectX Runtime Features Includes latest RoEnglishRE - 16/mar/2024 Custom Lua Support jRO Enchantment Display Includes rsu-kro-rag-lite (kRO updater) - v4.2.2.1316 Includes opensetup - v3.1.0.627 Includes iRO's Setup.exe, thanks to relzz! Includes AzzyAI 1.55 Includes Packet Viewer Download click here to download a .zip file of this ro-folder ~fast mirror (●'◡'●)~ Extra Warp Profile for 2022-04-06 used for FroggoClient.exe (mirror) 2022-04-06 Vanilla Ragexe Client Login Screen Creator Official Ragnarok Complete Zipped Folder(10/June/2024) Official Ragnarok Complete EXE Installer (08/Jan/2024)(mirror) Froggö Ro Folder Gitlab's Repo FAQ Why am I getting CHARACTER_INFO size error when trying to log in? Possible reasons: You are using outdated rAthena which doesn't work with 2022-04-06 client. You haven't set correct PACKETVER or done it with mistakes (skill issue ). You haven't recompiled rAthena. You haven't restarted server after recompilation. Why am I getting errors about MSVCP140.dll, VCRUNTIME140.dll when executing FroggoClient.exe? You haven't installed Visual C++ Redist, check requirements section, if problem persists, try installing this too Visual C++ Redist for VS 2012u4 What is official_data.grf ? official_data.grf is from the ROResourceCollection project, which brings many items, mobs and npc files from other RO Regions and merges it into one convenient grf. Why does the Setup.exe opens instead of the FroggoClient.exe? In your Windows registry there is no data about your selected graphic card, to fix it, just set up your settings in Setup.exe and click on OK, be aware to don't select DirectX9, stay on DirectX7 What was removed from the data.grf? Several unnecessary files were removed from the data.grf . These included residual files such as thumbs.db and stray BMP Screenshots. However, the majority of the cleanup was performed in the mob and npc sprite folders. In these folders, some .spr files contained sprites (images) that were not utilized in their corresponding .act files. For example, the monster katrinn's .spr file contained approximately 140 images, but only 6 of them were actually used. In total, out of nearly 90,000 collective images, around 9,400 were removed alv.
    1 point
  17. I have KRO, but I can't find it bro! very thank you bro
    1 point
  18. Hey, guys! I was trying to modify a NPC dialog box size and found these codes into doc/script_commands.txt. But nothing happens when running them. There's anything that need to be done before using them? // Similar code to the one I was running prontera,160,160,5 NPC 850, { mes "[ NPC Name ]"; mes "test message"; setdialogsize(400, 400); // (x, y) setdialogalign(DIALOG_ALIGN_CENTER); end; } Thanks in advance.
    1 point
  19. Hallo there i got it finaly running that my custom created mobs can also enjoy the players carts. rathena/src/map/clif.cpp: void clif_getareachar_unit( map_session_data* sd,struct block_list *bl ){ ..... case BL_MOB: { ..... int carttype = 0; if (md->sc.getSCE(SC_PUSH_CART)) { carttype = md->sc.getSCE(SC_PUSH_CART)->val1; PACKET_ZC_EFST_SET_ENTER p{}; p.packetType = HEADER_ZC_EFST_SET_ENTER; p.targetID = md->bl.id; p.type = status_db.getIcon(SC_PUSH_CART); p.duration = client_tick(9999); #if PACKETVER >= 20120618 p.duration2 = p.duration; #endif p.val1 = carttype / 64 - 1; p.val2 = 0; p.val3 = 0; clif_send(&p, sizeof(p), &sd->bl, AREA); } ... } ... } Here also a script to set it to a bl->id like a spawned monster or npc BUILDIN_DEF(setunitcart, "ii"), BUILDIN_FUNC(setunitcart) { struct block_list* bl = nullptr; int carttype = script_getnum(st, 2); if (carttype < 0 || carttype > MAX_CARTS) return SCRIPT_CMD_SUCCESS; bl = map_id2bl(script_getnum(st, 3)); if (bl) sc_start(bl, bl, SC_PUSH_CART, 100, carttype, 0); return SCRIPT_CMD_SUCCESS; } I hope you'll find it usefull like me. A little hint at the end here... you can get the block id of a mob after spawning them (mob_once_spawn in the mob.cpp returns a int32 with a block id or 0 for failed to spawn)
    1 point
  20. I didn't find this available anywhere I spent about an hour doing semi-complex algorithms to compare similar and median pixel colors in several of the newer card bmps that have slightly higher quality, and then manually tweaking them to have a clear top to write text and have clean PNGs to base my cards off of. To make the title: I recommend "Sylfaen" font, size 14, all uppercase, with a 1px white outline and 192 opacity. On Paint.net, I use "Sharp (Modern)" text rendering mode with Anti-Aliasing on. It's not identical to the real card title font which is unknown, but it's almost impossible to notice the difference. To make the number at the top right: copy it from an existing card.
    1 point
  21. Welcome Back earthlings!
    1 point
  22. its on git. so how is it im not sure ? if not just download that rathena 100% from github during that date. did u know u can revert a few commit back ? then do it and try. Download latest rathena, revert 10 commit back, and try. as simple as that. Just make sure u know how to revert 10 commit back and how to use git. So what u should do to get the same result is : 1. Download latest git rathena 2. Revert 10 latest commit. 3. Retry the issue or see the npc file after u revert 10 commit.
    1 point
  23. I already replied to this git comments. And i replied again here why. its already changed 3 weeks ago (9 march 2025) so if people using latest rathena before that commit, will have that issue. https://github.com/rathena/rathena/blob/6ac181503f9317692521bde0073cb8e5c6b14fa6/npc/re/merchants/Extended_Ammunition.txt See that file before that commit. that commit happens 3 weeks ago which is 9 march 2025. it changed this file. https://github.com/rathena/rathena/commit/139ea0b5b393c3b19b07103245c16f756a2b8d2d#diff-1d06ccaac468f1155a6018c8ab3271064538967aac6cd396f43af7e642f7a9c0 They track from official its using close; but in rAthena it doesnt yet supported as Atemo said. Official script uses "callshop" then "close" for these NPCs, but rAthena doesn't currently support this. That's why these scripts have been modified/reverted (hopefully temporarily) in 11d373a So if you are downloading this rathena since before this PR update around 48hours ago till last 3 weeks, the debug warning will appear. If you didnt believe it, try to download rAthena dated around 2 weeks ago, and try. Or try update that rAthena just a few days after 8 March 2025.
    1 point
  24. -- Instructions: -- 1. Place itemInfo.lua and packageitem.lub in this directory. -- 2. Run run_update.bat -- 3. The script will update only the name field in packageitem.lub based on itemInfo.lua. -- 4. A success message will be printed if changes are made. -- 5. If no matching item IDs are found, no changes will be made. here is the simple script that I made to automatically translate the item name in Probability from itemInfo converter.zip
    1 point
  25. I created a mob with id 30000 and AegieName G_MARINE_SPHERE in db/import/mob_db.yml all other stats copied from the original Then I added this to db/import/mob_avail.yml to assign it a sprite: Body: - Mob: G_MARINE_SPHERE Sprite: MARINE_SPHERE In db/import/mob_skill_db.txt I added: 30000,Marine Sphere@NPC_SELFDESTRUCTION,idle,173,1,10000,3500,0,yes,self,onspawn,,,,,,,, In skill.cpp: case AM_SPHEREMINE: case AM_CANNIBALIZE: { int32 summons[5] = { MOBID_G_MANDRAGORA, MOBID_G_HYDRA, MOBID_G_FLORA, MOBID_G_PARASITE, MOBID_G_GEOGRAPHER }; int32 class_ = skill_id==AM_SPHEREMINE?MOBID_MARINE_SPHERE:summons[skill_lv-1]; enum mob_ai ai = (skill_id == AM_SPHEREMINE) ? AI_SPHERE : AI_FLORA; struct mob_data *md; I changed MOBID_MARINE_SPHERE to MOBID_G_MARINE_SPHERE. Finally in mob.hpp: enum MOBID { MOBID_PORING = 1002, MOBID_RED_PLANT = 1078, MOBID_BLUE_PLANT, MOBID_GREEN_PLANT, MOBID_YELLOW_PLANT, MOBID_WHITE_PLANT, MOBID_SHINING_PLANT, MOBID_BLACK_MUSHROOM = 1084, MOBID_MARINE_SPHERE = 1142, MOBID_EMPERIUM = 1288, MOBID_G_PARASITE = 1555, MOBID_G_FLORA = 1575, MOBID_G_HYDRA = 1579, MOBID_G_MANDRAGORA = 1589, MOBID_G_GEOGRAPHER = 1590, MOBID_GUARDIAN_STONE1 = 1907, MOBID_GUARDIAN_STONE2, MOBID_SILVERSNIPER = 2042, MOBID_MAGICDECOY_FIRE, MOBID_MAGICDECOY_WATER, MOBID_MAGICDECOY_EARTH, MOBID_MAGICDECOY_WIND, MOBID_ZANZOU = 2308, MOBID_S_HORNET = 2158, MOBID_S_GIANT_HORNET, MOBID_S_LUCIOLA_VESPA, MOBID_GUILD_SKILL_FLAG = 20269, MOBID_ABR_BATTLE_WARIOR = 20834, MOBID_ABR_DUAL_CANNON, MOBID_ABR_MOTHER_NET, MOBID_ABR_INFINITY, MOBID_BIONIC_WOODENWARRIOR = 20848, MOBID_BIONIC_WOODEN_FAIRY, MOBID_BIONIC_CREEPER, MOBID_BIONIC_HELLTREE, }; I added MOBID_G_MARINE_SPHERE = 30000, into this enum I think that's it.
    1 point
  26. 1 point
  27. I did this basic script, maybe it will help you. CREATE TABLE IF NOT EXISTS `pvp_rank` ( `char_id` int(11) unsigned NOT NULL, `kills` int(11) unsigned NOT NULL DEFAULT 0, `deaths` int(11) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`char_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; And here's the script. prontera,196,142,5 script PVP Warper 100,{ mes "[ ^FF0000PVP Warper^000000 ]"; mes "Welcome, ^0000FF"+strcharinfo(0)+"^000000."; mes "Please select a PVP room:"; next; // Dynamic menu with player counts .@menu$ = ""; for (.@i = 0; .@i < getarraysize(.pvp_map$); .@i++) { .@users = getmapusers(.pvp_map$[.@i]); .@menu$ += .pvp_name$[.@i]+" ["+.@users+"/"+.pvp_max[.@i]+"]:"; } .@sel = select(.@menu$) - 1; if (BaseLevel < .pvp_level[.@sel]) { mes "[ ^FF0000PVP Warper^000000 ]"; mes "You must be at least level "+.pvp_level[.@sel]+" to enter this room."; close; } if (getmapusers(.pvp_map$[.@sel]) >= .pvp_max[.@sel]) { mes "[ ^FF0000PVP Warper^000000 ]"; mes "This room has reached its player limit ("+.pvp_max[.@sel]+")."; close; } warp .pvp_map$[.@sel],0,0; end; OnPCKillEvent: // Validate if map is a valid PVP room .@valid = 0; for (.@i = 0; .@i < getarraysize(.pvp_map$); .@i++) { if (strcharinfo(3) == .pvp_map$[.@i]) { .@valid = 1; break; } } if (!.@valid) end; // Get Killer and Victim Char IDs safely .@killer_cid = getcharid(0); .@victim_cid = getcharid(0, rid2name(killedrid)); if (!.@killer_cid || !.@victim_cid || .@killer_cid == .@victim_cid) end; // Always register kills and deaths for all maps query_sql("INSERT INTO pvp_rank (`char_id`, `kills`, `deaths`) VALUES ("+.@killer_cid+",1,0),("+.@victim_cid+",0,1) ON DUPLICATE KEY UPDATE `kills`=`kills`+VALUES(`kills`), `deaths`=`deaths`+VALUES(`deaths`)"); // Only grant special points in the GM-selected map if (strcharinfo(3) != .points_map$) end; // IP check validation (enabled or disabled by admin) if (.ip_check_enabled) { query_sql("SELECT last_ip FROM login WHERE account_id="+getcharid(3), .@killer_ip$); query_sql("SELECT last_ip FROM login WHERE account_id="+killedrid, .@victim_ip$); if (.@killer_ip$ == .@victim_ip$) { dispbottom "[PVP Warper]: No points granted. Same IP detected."; end; } } // Kill cooldown validation .@current_time = gettimetick(2); .@cooldown = .kill_cooldown; .@kill_cd_var$ = "kill_cd_"+.@killer_cid+"_"+.@victim_cid; if (getd(.@kill_cd_var$) + .@cooldown > .@current_time) { dispbottom "[PVP Warper]: You recently killed this player. Wait before earning more points."; end; } setd .@kill_cd_var$, .@current_time; // Add your special points reward code here. // Example: set pvp_points, pvp_points + 1; dispbottom "[PVP Warper]: You've earned special points for defeating a player."; end; OnCheckRank: mes "[ ^FF0000PVP Warper^000000 ]"; query_sql("SELECT kills, deaths FROM pvp_rank WHERE char_id="+ getcharid(0), .@kills, .@deaths); mes "Tus estadísticas actuales:"; mes "^0000FFKills:^000000 "+ (.@kills ? .@kills : 0); mes "^FF0000Muertes:^000000 "+ (.@deaths ? .@deaths : 0); close; OnGMResetRank: if (getgmlevel() < 60) { dispbottom "No tienes permisos para usar este comando."; end; } query_sql("TRUNCATE TABLE pvp_rank"); dispbottom "Ranking PVP reiniciado correctamente."; end; OnInit: // General Configuration setarray .pvp_map$[0], "guild_vs1", "guild_vs2", "pvp_y_1-2"; setarray .pvp_name$[0], "PVP Room 1", "PVP Room 2", "PVP Prontera"; setarray .pvp_level[0], 1, 50, 99; setarray .pvp_max[0], 10, 15, 20; // Enable or disable IP check (1 = ON, 0 = OFF) .ip_check_enabled = 0; // Kill cooldown in seconds (recommended: 60-120 sec) .kill_cooldown = 60; // GM configuration: Set the map that gives special points here (default is room 1) .points_map$ = .pvp_map$[0]; // Change [0] to [1] or [2] to switch rooms // Commands for player and GM bindatcmd "pvprank",strnpcinfo(3)+"::OnCheckRank"; bindatcmd "resetpvprank",strnpcinfo(3)+"::OnGMResetRank",60,60; end; } Feel free to ask for a change.
    1 point
  28. Your license and its corresponding hardcoded keys in src are for your private use. If you're going to sell your emulator, you'll have to remove your license, which means you won't have access to utilities like LGP, packet encryption, etc. If you sell the license to increase the value of your mediocre emulator, it's normal for it to be removed. Why aren't you ashamed to come and cry because they've taken away a service that you were trafficking illegally? The ones who should be complaining are the clients you scammed with your mediocre courses and information.
    1 point
  29. prontera,193,124,6 script Global Exp Amplifier#EventFloatingRates 10308,{ mes "[Global Exp Amplifier]"; mes "Current collected items:"; mes "~ [^0000ff" + callfunc("F_InsertComma", $collected_funds) + "^000000] Items"; mes "Target global items:"; mes "~ [^0000ff" + callfunc("F_InsertComma", .target_funds) + "^000000] Items"; mes "Still need " + callfunc("F_InsertComma", $donation_missing) + " Items to reach the target."; next; switch (select("Donate Items", "Cancel")) { case 1: mes "Enter the amount you want to donate:"; next; input .@donation; // Validations if (.@donation < .min_donation_items) { mes "The minimum donation amount is " + callfunc("F_InsertComma", .min_donation_items) + " Items."; end; } if (countitem(.donation_item) < .@donation) { mes "You don't have enough items."; end; } if (.@donation > $donation_missing) { mes "The amount exceeds the remaining balance."; mes "Remaining Balance: " + callfunc("F_InsertComma", $donation_missing) + " Items"; end; } // Apply the donation delitem .donation_item, .@donation; $collected_funds += .@donation; $donation_missing -= .@donation; mes "Donation successful. Thank you for your contribution!"; // Start the event if the target is reached if ($collected_funds >= .target_funds) { $collected_funds = 0; announce "[Global Exp Amplifier]: Target reached! Activating Floating Rates Event for 1 hour.", bc_all, 0xFF6060; donpcevent strnpcinfo(3) + "::OnStart"; // Ensure the event is triggered } end; } OnStart: if (.EventActive) end; // Prevent multiple activations // Start the event for 1 hour set .EventActive, 1; announce "[Floating Rates]: The event has now officially started!", bc_all, 0x00FF00; initnpctimer; // Start the NPC timer end; OnTimer60000: // Every 60 minutes (60,000 milliseconds) if (!.EventActive) end; // Assign random rates within the specified range set .@expRate, rand(5,8); set .@dropRate, rand(10,15) / 10; // 1.0x - 1.5x setbattleflag("base_exp_rate", .@expRate * 100); setbattleflag("job_exp_rate", .@expRate * 100); setbattleflag("item_rate_common", .@dropRate * 100); announce "[Floating Rates]: New Rates -> EXP: " + .@expRate + "x, DROP: " + .@dropRate + "x", bc_all, 0xFFD700; // This function is automatically repeated due to `initnpctimer` end; OnTimer3600000: // Event ends after 1 hour // Reset rates to normal setbattleflag("base_exp_rate", 100); setbattleflag("job_exp_rate", 100); setbattleflag("item_rate_common", 100); announce "[Floating Rates]: The event has ended. Rates are now back to normal.", bc_all, 0xFF0000; set .EventActive, 0; stopnpctimer; // Stops the NPC timer system end; OnInit: set .target_funds, 500; // Target donation amount (change this based on your needs) set .min_donation_items, 5; // Minimum donation amount set .donation_item, 501; // Example Item ID (Change to the correct one) set .EventActive, 0; set $donation_missing, .target_funds - $collected_funds; end; } Zeny changed to an item donation (Replace 501 with the actual item ID you want). Event lasts only 1 hour (OnTimer3600000). Minimum donation is now in item quantity (set .min_donation_items, 5;).
    1 point
  30. - Id: 607 AegisName: Yggdrasilberry Name: Yggdrasil Berry Type: Healing Buy: 5000 Weight: 300 Flags: BuyingStore: true NoConsume: true Delay: Duration: 5000 Status: Reuse_Limit_F Script: | percentheal 100,100; if( !vip_status(VIP_STATUS_ACTIVE) ) { delitem 607, 1; }
    1 point
  31. Ragnarok Online 3 for PC. It almost sounds like a dream, or is it one? I randomly came across some videos on YouTube, and they claim to be a reveal trailer for Ragnarok Online 3. And honestly, it looks amazing in the video. It closely resembles the classic Ragnarok but with enhanced graphical elements. Some features and mechanics seem to have been improved, as seen in the MVP battle at the end of the video. Has anyone heard about this yet? What are your thoughts on it? Please share your opinions here—I’m looking forward to your discussion and feedback! Screen_Recording_20250312_134414_ChatGPT.mp3 Rynbef~
    1 point
  32. PCM Ai Auto Attack Advanced [Usage Information] The process is simple—just select a skill and choose a monster to attack. Normal Attack: Uses a weapon. Skill Attack: Uses a skill. Skill Attack (Specify Monster): Uses a skill on a specific monster. Monster Name Coloring: Displays different colors based on difficulty. Auto Normal Attack: If SP runs out, it will switch to normal attacks. The system will automatically use the highest skill level available. [Skill Attack Details] Select skills from Hotkey slots (F1, F2, F3). Automatically select a monster from the map. Option to manually input a monster ID. The system will display the monster’s name after entering the ID. [General Functions] Uses Fly Wing automatically when movement is blocked. Uses Fly Wing if no monster is found within 10 seconds. Has a warp detection system—moves away when a warp is detected. Auto attack will be disabled upon returning to the save point. There may be movement delays causing slight overshooting of monsters. [Player Support System] If HP < 20%, uses Fly Wing. If HP < 30%, uses White Potion > White Slim > Big Bun If SP < 30%, uses Blue Potion > Honey > Pill Items will be used repeatedly until reaching 90%. If Fly Wing is out of stock, it will use Butterfly Wing instead. [Skill System] Supports all jobs up to the latest available skills. Uses skills according to their actual mechanics. Works for both monster-targeting and ground-targeting skills. Some skills may function but not display visual effects. Skill effectiveness depends on the player's stats. Must wait for the real skill cooldown before reusing. [Restrictions] Cannot be used in PVP Mode. Cannot be used in Guild War.
    1 point
  33. In pre-renewal armor gives 0.7 DEF per refine. I strongly advice against increasing this as this allows players to reach 100 DEF which makes them immune to all damage which is super exploitable. Unless you also change the code on how damage reduction works. It do be in pre-re/refine.yml though: Body: - Group: Armor Levels: - Level: 1 RefineLevels: - Level: 1 Bonus: 70 If you want the DEF to be displayed as a fake value that counts "1" per refine even if it really is just 0.7 (like Aegis does), you'd probably need to add something like "clientdef" to the base_status struct and then calculate that in parallel to def with adjusted refine bonus.
    1 point
  34. prontera,155,175,5 script healer#sanc_main 4_F_KAFRA9,8,8,{ end; OnTouch: npctalk "Hello "+strcharinfo(0)+", how are you?"; end; OnInit: npcspeed 200; initnpctimer; end; OnTimer20000: getfreecell(strnpcinfo(4), .@x, .@y, 150, 150, 14, 14); npcwalkto .@x, .@y; end; OnTimer40000: getmapxy(.@map$, .@x, .@y, BL_NPC); unitskillusepos getnpcid(0), PR_SANCTUARY, 5, .@x, .@y; initnpctimer; end; }
    1 point
  35. Enhanced Autoattack System V2: The Ultimate Automation Tool for Mastering Your Game Compatible with rathena revision from 2020 to latest version Take control of your gameplay like never before with the Enhanced Autoattack System V2. Packed with advanced automation, smart features, and customizable options, this tool is designed to elevate your gaming experience while saving you time and effort. Here’s a detailed breakdown of its comprehensive features: Battle Configuration Walking System [New] Path calculator to random coordinates for more natural movement. Walk straight until encountering an obstacle. Randomized walking behavior for unpredictable patterns. Delays [New] Adjustable delay between each item pickup. [New] Adjustable delay between each autoattack status check Set delays between attack skills. Configure delays for buff skills. Player Identification [New] Hat effects for visual feedback when the system is active. Display a prefix on the player’s name for better identification. Detection Features Item detection area: Define the radius to detect nearby items. Monster detection area: Set the range for detecting monsters around the player. Advanced Regeneration System Heal Skills Menu [New] Easily add new healing skills via script or NPC [New] Displayed in a menu Select skill levels to use. Set HP thresholds to trigger healing skills. HP/SP Potions Menu [New] Potions are automatically detected from your inventory and displayed in a menu. [New] Admin can easily remove potions that you don't want the autoattack system be able to use through the NPC script Set specific HP/SP thresholds to trigger potion use. Resting System Configure automatic sitting when HP or SP falls below set thresholds. The character automatically stands up when HP/SP is fully restored. Attack Skills Menu Attack skills are automatically detected [New] Displayed in a menu [New] Add missing skills effortlessly through the NPC script. Buff Management Buff Skills Menu Buff skills are detected [New] Displayed in a menu [New] Manage and configure which buffs to use with ease. Buff Items Menu [New] Buff items are automatically displayed. [New] Status-based activation ensures efficient buffing without timers. [New] Add missing items effortlessly through the NPC script. Item Pickup Menu Options to pick up everything, nothing, or specific items from a customizable list. Monster Selection Menu [New] Detect all monsters on the current map and display them in a menu. Select which monsters to avoid attacking. Teleportation Features Use teleport items (e.g., Fly Wing, Infinite Wing) or teleportation skills. Emergency teleport: Trigger when HP falls below a set threshold. Idle teleport: Trigger teleportation if no monsters are encountered within a specified time. Other Features [New] Start, stop, or configure the system using a designated item. [New] Smart AI to prioritize actions like healing, buffing, or attacking. [New] Automatic use of Token of Siegfried upon death. [New] Teleport to save point after death. [New] Auto accept party invitations. Melee attacks [New] Activate melee attacks only when SP is below a specific value. Ignore aggressive monsters that are not on your attack list. [New] Choose the action to do when the autoattack stop between 3 choices : Do nothing, Warp to the savepoint, Logout [New] Enable or disable autoattack in towns, PvP, GvG, and BG separately through the battle configuration file, allowing you to customize each setting individually. [New] Set up a different exp ratio when autoattack is enabled [New] Set up a different drop ratio when autoattack is enabled Specialized Combat Features Automatically switch ammunition (arrows, bullets, kunai, cannonballs) to prioritize the correct element. Auto spell casting for Sage characters. User-Friendly Configuration A menu item allows you to reset all saved configurations. Easily customize and fine-tune every feature via menus. Product Details The Autoattack System V2 is delivered as a rental item containing the full automation suite. Rental Time: The maximum duration of the autoattack is scaled to the rental time. [New] Integrated Controls: Start, stop, and configure the system directly from the item use [New] Alternatively, you can set the duration based on an account variable
    1 point
  36. Browedit 3 Browedit 3 1 - Intro Browedit 3 2 - Setup Browedit 3 3 - Height Edit Browedit 3 4 - Texture Edit Browedit 3 5 - Object Edit Browedit 3 6 - Gat Edit Browedit 3 7 - Wall Edit Browedit 3 8 - Color Edit Browedit 3 9 - Lightmap Browedit 3 10 - Minimap Browedit 3 11 - Cinematic Browedit 586 Browedit 586 1 - Basic Tutorial Ragnarok Online Map Editor *The map is available to download in Rathena, link in the video description. Subtitles in English and Portuguese. Special thanks to @Taiga (PTBR Translation) Browedit 586 2 - Basic & Intermediate Tutorial Ragnarok Online Map Editor Browedit 586 3 - Quick Tips: Navigation Browedit 586 4 - Quick Tips: Lightmaps Browedit 586 5 - Quick Tips: Mini Map
    1 point
  37. Heya, This post is meant to explain the file format of RSM2 for those who are interested and want to play with them. I haven't seen many projects exploring the topic and I've finished digging through the file for GRF Editor. I shared some of the structure pubicly in BrowEdit's Discord almost a year ago, but the fields were still unknown at that point. Also before anyone asks, no I am not making a public converter for RSM2 > RSM1. That's not fully possible anyway. General The structure of a RSM file is quite simple. It's a list of mesh data with transformations applied to them. Each mesh has a transformation matrix, a position, a parent, etc. Then you have the transformation components on the mesh: Offset/Translation RotationAngle RotationAxis Scale And at last, you have the animation components on the mesh: RotationKeyFrame ScaleKeyFrame All the code presented below comes from GRF Editor. Also the structure varies quite a bit even among the 2.2 version and the 2.3 version. I was unable to find any model using versions 2.0 or 2.1. I'd guess they were only used internally...? Who knows. Animation duration changes In previous versions, below 2.2, the AnimationLength field and the frame animation field represented time in milliseconds. So a model such as ps_h_01.rsm has 48000 as a value for AnimationLength, which means the animation lasts for a whole 48 seconds before it resets. The key frames for the transformations work in the same manner. In version 2.2 and above, the AnimationLength field reprensents the total amount of frames in the model. So a model such as reserch_j_01.rsm2 has a value of 300. The keyframes would therefore range between 0 and 300. The duration is given by the new FramesPerSecond field, which is 30 for almost all 2.0 models currently existing. The delay between frames would then be 1000 / FramesPerSecond = 33.33 ms. The duration would be 1000 / FramesPerSecond * AnimationLength = 1000 / 30 * 300 = 10000 ms in our example. Shading Nothing new there, but I thought I'd go over the topic quickly. The ShadeType property is used to calculate the normals. There are three types that have been found in models to this day: 0: none; the normals are all set to (-1, -1, -1). 1: flat; normals are calculated per triangle, with a typical cross product of the 3 vertices. 2: smooth; each face of a mesh belongs to a smooth group, the normal is then calculated by adding the face normal of each connected vertices. In the real world, most models end up using the smooth shading type. The smooth group is a bit confusing at first if you've never heard of it, but some reading on the topic will help you. These are common techniques. Textures In previous versions, below 2.3, the textures were defined at the start of the file. Each mesh then defines a list of indices. So for example, a mesh could define these indices: "2, 5, 0" which means the mesh has 3 textures. Each face of the mesh then has a TextureId property from 0 to 2 in our example. If the face TextureId is 1, it would refer to the second indice previously defined, which is 5. This means that the texture used for this face would be the 5th texture defined at the start of the model. In version 2.3 and above, the textures are defined per mesh instead. There are no longer using texture indices. The TextureId defined for each face refers directly to the texture defined of that particular mesh. So say the TextureId for a face is 1, then the first texture defined on the mesh is the corresponding one. Transformation order In version 2.2 and above, the Scale/Offset/RotationAngle/RotationAxis properties were removed. Instead, it relies on animation frames or the TransformationMatrix. The order looks as such: /// <summary> /// Calculates the MeshMatrix and MeshMatrixSelf for the specified animation frame. /// </summary> /// <param name="animationFrame">The animation frame.</param> public void Calc(int animationFrame) { MeshMatrixSelf = Matrix4.Identity; MeshMatrix = Matrix4.Identity; // Calculate Matrix applied on the mesh itself if (ScaleKeyFrames.Count > 0) { MeshMatrix = Matrix4.Scale(MeshMatrix, GetScale(animationFrame)); } if (RotationKeyFrames.Count > 0) { MeshMatrix = Matrix4.Rotate(MeshMatrix, GetRotationQuaternion(animationFrame)); } else { MeshMatrix = Matrix4.Multiply2(MeshMatrix, new Matrix4(TransformationMatrix)); if (Parent != null) { MeshMatrix = Matrix4.Multiply2(MeshMatrix, new Matrix4(Parent.TransformationMatrix).Invert()); } } MeshMatrixSelf = new Matrix4(MeshMatrix); Vertex position; // Calculate the position of the mesh from its parent if (PosKeyFrames.Count > 0) { position = GetPosition(animationFrame); } else { if (Parent != null) { position = Position - Parent.Position; position = Matrix4.Multiply2(new Matrix4(Parent.TransformationMatrix).Invert(), position); } else { position = Position; } } MeshMatrixSelf.Offset = position; // Apply parent transformations Mesh mesh = this; while (mesh.Parent != null) { mesh = mesh.Parent; MeshMatrixSelf = Matrix4.Multiply2(MeshMatrixSelf, mesh.MeshMatrix); } // Set the final position relative to the parent's position if (Parent != null) { MeshMatrixSelf.Offset += Parent.MeshMatrixSelf.Offset; } // Calculate children foreach (var child in Children) { child.Calc(animationFrame); } } The original vertices are then multiplied by MeshMatrixSelf for their final positions. MeshMatrix is the resulting transformation matrix of a particular mesh only, without taking into account its parents matrixes or the mesh position. The MeshMatrixSelf is the final transformation matrix that will be applied to the vertices. Contrary to previous versions, the TransformationMatrix is applied all the way to the children. The matrix invert function may not be available in all common librairies, so here is the implementation used: public Matrix4 Invert() { if (this.IsDistinguishedIdentity) return this; if (this.IsAffine) return this.NormalizedAffineInvert(); float num1 = this[2] * this[7] - this[6] * this[3]; float num2 = this[2] * this[11] - this[10] * this[3]; float num3 = this[2] * this[15] - this[14] * this[3]; float num4 = this[6] * this[11] - this[10] * this[7]; float num5 = this[6] * this[15] - this[14] * this[7]; float num6 = this[10] * this[15] - this[14] * this[11]; float num7 = this[5] * num2 - this[9] * num1 - this[1] * num4; float num8 = this[1] * num5 - this[5] * num3 + this[13] * num1; float num9 = this[9] * num3 - this[13] * num2 - this[1] * num6; float num10 = this[5] * num6 - this[9] * num5 + this[13] * num4; float num11 = this[12] * num7 + this[8] * num8 + this[4] * num9 + this[0] * num10; if (IsZero(num11)) return false; float num12 = this[0] * num4 - this[4] * num2 + this[8] * num1; float num13 = this[4] * num3 - this[12] * num1 - this[0] * num5; float num14 = this[0] * num6 - this[8] * num3 + this[12] * num2; float num15 = this[8] * num5 - this[12] * num4 - this[4] * num6; float num16 = this[0] * this[5] - this[4] * this[1]; float num17 = this[0] * this[9] - this[8] * this[1]; float num18 = this[0] * this[13] - this[12] * this[1]; float num19 = this[4] * this[9] - this[8] * this[5]; float num20 = this[4] * this[13] - this[12] * this[5]; float num21 = this[8] * this[13] - this[12] * this[9]; float num22 = this[2] * num19 - this[6] * num17 + this[10] * num16; float num23 = this[6] * num18 - this[14] * num16 - this[2] * num20; float num24 = this[2] * num21 - this[10] * num18 + this[14] * num17; float num25 = this[10] * num20 - this[14] * num19 - this[6] * num21; float num26 = this[7] * num17 - this[11] * num16 - this[3] * num19; float num27 = this[3] * num20 - this[7] * num18 + this[15] * num16; float num28 = this[11] * num18 - this[15] * num17 - this[3] * num21; float num29 = this[7] * num21 - this[11] * num20 + this[15] * num19; float num30 = 1.0f / num11; this[0] = num10 * num30; this[1] = num9 * num30; this[2] = num8 * num30; this[3] = num7 * num30; this[4] = num15 * num30; this[5] = num14 * num30; this[6] = num13 * num30; this[7] = num12 * num30; this[8] = num29 * num30; this[9] = num28 * num30; this[10] = num27 * num30; this[11] = num26 * num30; this[12] = num25 * num30; this[13] = num24 * num30; this[14] = num23 * num30; this[15] = num22 * num30; return this; } New transformation animations TranslationKeyFrames In version 2.2 and above, PosKeyFrames are added. If you've seen the previous formats, you may be confused by this. I've seen PosKeyFrames in many implementations, but version 1.6 adds ScaleKeyFrames, not TranslationKeyFrames. The name is self-explanatory: it translates the mesh. TextureKeyFrames In version 2.3 and above, TextureKeyFrames are added. Similar to other transformations, they are defined as: struct TextureKeyFrame { public int Frame; public float Offset; } The TextureKeyFrames target a specific texture ID from the mesh and have different animation types. The Offset affects the UV offsets of the textures. The animation types are: 0: Texture translation on the X axis. The texture is tiled. 1: Texture translation on the Y axis. The texture is tiled. 2: Texture multiplication on the X axis. The texture is tiled. 3: Texture multiplication on the Y axis. The texture is tiled. 4: Texture rotation around (0, 0). The texture is not tiled. Main mesh In previous versions, below 2.2, there could only be one root mesh. This is no longer the case with newer versions. Code And those were all the changes! Here is a full description of the structure (which is again based on GRF Editor). # # RSM structure # private Rsm(IBinaryReader reader) { int count; // The magic of RMS files is always GRSM Magic = reader.StringANSI(4); MajorVersion = reader.Byte(); MinorVersion = reader.Byte(); // Simply converting the version to a more readable format Version = FormatConverters.DoubleConverter(MajorVersion + "." + MinorVersion); // See "Animation duration changes" above for more information. AnimationLength = reader.Int32(); ShadeType = reader.Int32(); Alpha = 0xFF; // Apparently this is the alpha value of the mesh... but it has no impact in-game, so... if (Version >= 1.4) { Alpha = reader.Byte(); } if (Version >= 2.3) { FrameRatePerSecond = reader.Float(); count = reader.Int32(); // In the new format, strings are now written with their length as an integer, then the string. In previous versions, strings used to be 40 in length with a null-terminator. // The syntax below may be a bit confusing at first. // reader.Int32() reads the length of the string. // reader.String(int) reads a string with the specific length. for (int i = 0; i < count; i++) { MainMeshNames.Add(reader.String(reader.Int32())); } count = reader.Int32(); } else if (Version >= 2.2) { FrameRatePerSecond = reader.Float(); int numberOfTextures = reader.Int32(); for (int i = 0; i < numberOfTextures; i++) { _textures.Add(reader.String(reader.Int32())); } count = reader.Int32(); for (int i = 0; i < count; i++) { MainMeshNames.Add(reader.String(reader.Int32())); } count = reader.Int32(); } else { // Still unknown, always appears to be 0 though. Reserved = reader.Bytes(16); count = reader.Int32(); for (int i = 0; i < count; i++) { _textures.Add(reader.String(40, '\0')); } MainMeshNames.Add(reader.String(40, '\0')); count = reader.Int32(); } // The Mesh structure is defined below for (int i = 0; i < count; i++) { _meshes.Add(new Mesh(reader, Version)); } // The rest of the structure is a bit sketchy. While this is apparently what it should be (some models do indeed have those), they have absolutely no impact in-game and can be safely ignored when rendering the model. if (Version < 1.6) { count = reader.Int32(); for (int i = 0; i < count; i++) { _scaleKeyFrames.Add(new ScaleKeyFrame { Frame = reader.Int32(), Sx = reader.Float(), Sy = reader.Float(), Sz = reader.Float(), Data = reader.Float() }); } } count = reader.Int32(); for (int i = 0; i < count; i++) { VolumeBoxes.Add(new VolumeBox() { Size = new Vertex(reader.Float(), reader.Float(), reader.Float()), Position = new Vertex(reader.Float(), reader.Float(), reader.Float()), Rotation = new Vertex(reader.Float(), reader.Float(), reader.Float()), Flag = version >= 1.3 ? reader.Int32() : 0, }); } } # # Mesh structure # public Mesh(IBinaryReader reader, double version) { int count; if (version >= 2.2) { Name = reader.String(reader.Int32()); ParentName = reader.String(reader.Int32()); } else { Name = reader.String(40, '\0'); ParentName = reader.String(40, '\0'); } if (version >= 2.3) { count = reader.Int32(); for (int i = 0; i < count; i++) { Textures.Add(reader.String(reader.Int32())); } // This is more so for backward compatibility than anything. The texture indices now refer to the texture list of the mesh directly. for (int i = 0; i < count; i++) { _textureIndexes.Add(i); } } else { count = reader.Int32(); for (int i = 0; i < count; i++) { _textureIndexes.Add(reader.Int32()); } } // The TransformationMatrix is 3x3 instead of 4x4 like everything else in the universe. TransformationMatrix = new Matrix3( reader.Float(), reader.Float(), reader.Float(), reader.Float(), reader.Float(), reader.Float(), reader.Float(), reader.Float(), reader.Float()); if (version >= 2.2) { // In 2.2, the transformations are already applied to the mesh, or calculated from the animation key frames. None of these properties are used anymore. Offset = new Vertex(0, 0, 0); Position = new Vertex(reader); RotationAngle = 0; RotationAxis = new Vertex(0, 0, 0); Scale = new Vertex(1, 1, 1); } else { // The Offset is the translation vector for the mesh. translated > scaled > rotated >TransformationMatrix. Offset = new Vertex(reader.Float(), reader.Float(), reader.Float()); // Position is the distance between the mesh and its parent. Position = new Vertex(reader.Float(), reader.Float(), reader.Float()); RotationAngle = reader.Float(); RotationAxis = new Vertex(reader.Float(), reader.Float(), reader.Float()); Scale = new Vertex(reader.Float(), reader.Float(), reader.Float()); } count = reader.Int32(); for (int i = 0; i < count; i++) { _vertices.Add(new Vertex(reader.Float(), reader.Float(), reader.Float())); } count = reader.Int32(); for (int i = 0; i < count; i++) { _tvertices.Add(new TextureVertex { Color = version >= 1.2 ? reader.UInt32() : 0xFFFFFFFF, U = reader.Float(), V = reader.Float() }); } count = reader.Int32(); // A face has changed a little in the new version. The SmoothGroup isn't only bound to the face itself, but can be bound to the vertex itself instead. for (int i = 0; i < count; i++) { Face face = new Face(); int len = -1; if (version >= 2.2) { len = reader.Int32(); } face.VertexIds = reader.ArrayUInt16(3); face.TextureVertexIds = reader.ArrayUInt16(3); face.TextureId = reader.UInt16(); face.Padding = reader.UInt16(); face.TwoSide = reader.Int32(); if (version >= 1.2) { face.SmoothGroup[0] = face.SmoothGroup[1] = face.SmoothGroup[2] = reader.Int32(); if (len > 24) { // It is unsure if this smooth group is applied to [2] or not if the length is 28. Hard to confirm. face.SmoothGroup[1] = reader.Int32(); } if (len > 28) { face.SmoothGroup[2] = reader.Int32(); } } _faces.Add(face); } // This was weirdly predicted to be in model version 1.6... which never existed? Either way, it is safe to set it as >= 1.6 if (version >= 1.6) { count = reader.Int32(); for (int i = 0; i < count; i++) { _scaleKeyFrames.Add(new ScaleKeyFrame { Frame = reader.Int32(), Sx = reader.Float(), Sy = reader.Float(), Sz = reader.Float(), Data = reader.Float() // Useless, has in impact in-game }); } } count = reader.Int32(); for (int i = 0; i < count; i++) { _rotFrames.Add(new RotKeyFrame { Frame = reader.Int32(), // Qx, Qy, Qz, Qw Quaternion = new TkQuaternion(reader.Float(), reader.Float(), reader.Float(), reader.Float()) }); } if (version >= 2.2) { count = reader.Int32(); for (int i = 0; i < count; i++) { _posKeyFrames.Add(new PosKeyFrame { Frame = reader.Int32(), X = reader.Float(), Y = reader.Float(), Z = reader.Float(), Data = reader.Int32() // Useless, has in impact in-game }); } } // Texture animations, look at "Textures" above for more information if (version >= 2.3) { count = reader.Int32(); for (int i = 0; i < count; i++) { int textureId = reader.Int32(); int amountTextureAnimations = reader.Int32(); for (int j = 0; j < amountTextureAnimations; j++) { int type = reader.Int32(); int amountFrames = reader.Int32(); for (int k = 0; k < amountFrames; k++) { _textureKeyFrameGroup.AddTextureKeyFrame(textureId, type, new TextureKeyFrame { Frame = reader.Int32(), Offset = reader.Float() }); } } } } } I'm also sharing the program I used to test the RSM2 files. It's a bit messy, but it does the job and might help someone. This testing program no longer has any purpose to me as it's been merged into GRF Editor already. https://github.com/Tokeiburu/RSM2/tree/master/Rsm2 The provided model is the following (it contains all the new features of RSM2): The chain on the right as well as the lights use these new texture animations. The red ball uses the translation key frames. This test project can read any RSM or RSM2 file as well as save them (you can edit RSM/RSM2 models via source). Changing the header version to change the output file will cause issues depending on which version you go from and to. With that said, have fun...! One day I'll make GRF Editor sources public again, one day.
    1 point
  38. Hello and Good Day guys! It's nice to be back in the world of mapping! Here is a new look for Prontera! Check the in-game screenshot here, Hope you like it guys.
    1 point
  39. Hi rAthena Family! I made today a YouTube tutorial on how to use Str Editor app by @Tokei, Video Title: Tutorial - Str Editor Ragnarok Online Custom Level Up Design I hope will be helpful for the community. Download the file I made in the video here Best!! Speedrun
    1 point
  40. View File Skin KPatcher Official Older Bahasa + mp3 Theme Prontera (+Voice Bahasa) Skin KPatcher Official Older Bahasa + mp3 Theme Prontera (+Voice Bahasa) Submitter Slammer Submitted 11/05/2022 Category General Website Templates Video Content Author Slammer  
    1 point
  41. I saw a lot of posts about this over the years, but none seemed updated for the most recent version. I recently spent a lot of time on pets, so here's a quick guide. I did everything for pre-renewal, but I would imagine most of this would work for renewal too, you might just need to add some stuff about evolution. What you'll need: GRF Editor SDE (Server Database Editor) Both of these can be found elsewhere on this forum and are used for most things involving editing your server. Understanding GRF files: When the client needs a file, it searches through the GRF files in a certain order to find it. The order it uses is specified in data.ini in the client's root folder. Mine looks like this. [Data] 0=rathena_resources.grf 1=pre20190427.grf 2=renewal20190427.grf 3=palettes.grf 4=data.grf 5=rdata.grf It looks in files that are higher in the list first. This means rathena_resources.grf is checked first, and rdata.grf is checked last. This means that if I need to override a file which is normally in data,grf, I can simply add it to any grf file that is higher in the list, and it will be used instead of the one in data.grf, without having to modify that file. Since rathena_resources.grf is first in the list, it's easiest to add your files to that. Getting started with your custom pet: The first two things your pet needs are an egg and a taming item. For eggs, I simply chose to replace an existing pet egg that was unused. In Pre-Re, there aren't any unused eggs, but we can fix that. In a text editor, open up the item_db.txt file for renewal, which is under your db/re folder. Search for 9001, which will get you to the beginning of the pet eggs. Renewal has tons of them! Copy and paste all the eggs that renewal's item_db has into pre-re's item db, and now they'll be available for pre-re to use. Now open up SDE. To add an egg for your new pet, all we have to do is rename it. Use the item search and find an egg you don't care about. Change its Aegis Name and Name to be the one of the pet you want. For example, I made Garm Baby, so the Aegis name is Garm_Baby_Egg and the Name is Garm Baby Egg. This part is done. Now we need a taming item. It's easiest to make a taming item by using a miscellaneous item. For Garm Baby, I used Nursing Bottle. To turn this item into a taming item, first we have to change it from a Misc Item to a Usable item, which is done using the dropdown in the upper right. We then need to set the Applicable Job to FFFFFFFF, upper to 7, and Gender to Both. Now we need to set the script. The script must look like this: pet 1515; Except that the number must match the id number of the enemy you want to be able to capture. Look this up in the mob database. You might want to modify the drop rates on your item through the mob database too, particularly if it's an item that no one in the game drops. Most pet items also have a sell price of 2500 and a weight of 50, if you want to be consistent. Use "save database (quick)" to save your changes. We're done with SDE for now. Adding your pet to the game: The next thing to do is to add your pet to pet_db.yml so it can spawn into the game. The installation I have actually breaks pet_db.yml into two parts. There's one file inside pre-re that contains the pet's basic information, and one inside import that contains its skill information. You could merge these files if you wanted, but if not you'll need to update both. There are already a bunch of entries in this file, so you can probably just copy one. Note that when it comes to yaml files, the spacing of the file is important, so make sure you copy it exactly including the spacing. Here's the one I used for Garm Baby. - Mob: GARM_BABY TameItem: Milk_Bottle EggItem: Garm_Baby_Egg FoodItem: Ice_Piece Fullness: 4 IntimacyFed: 10 CaptureRate: 500 Script: > .@i = getpetinfo(PETINFO_INTIMATE); if( .@i >= PET_INTIMATE_LOYAL ){ bonus2 bResEff,Eff_Freeze,5000; } The entries for MOB, TameItem, EggItem, and FoodItem are all Aegis_Names, you can look these up through SDE. For example, the Nursing Bottle's Aegis Name is actually Milk_Bottle. The script is something you'll have to come up with on your own. There's a bunch of examples in the file already you can draw on. My script makes the pet give you 50% resistance to the freeze status. If you want the pet to use skills, you'll need to update the other yml file inside import. Garm Baby has this inside that file: - Mob: GARM_BABY AttackRate: 8000 RetaliateRate: 8000 ChangeTargetRate: 800 SupportScript: > petskillattack "MG_FROSTDIVER",5,10,30; The main thing we care about is the SupportScript. This is what attack your pet will use. Here, this pet uses Frost Driver level 5, between 10-30% of the time depending on how happy it is. For a support skill, you use petskillsupport instead, with values like this one: petskillsupport "HP_ASSUMPTIO",1,80,100,100; This pet would cast Assumptio level 1 with an 80 second delay, when your hp and sp are 100% or less. There's also stat bonuses available: petskillbonus bLuk,5,20,40; This pet gives a bonus of 5 luck for 20 seconds, with a 40 second delay between uses. For more detail, look in script_commands.txt within Rathena's doc folder. With this, you can now restart your server and your pet will exist in the game! There will still be a bit of jank, for example its egg won't show the right name on the client, it won't have a picture, and it won't talk, we'll discuss how to fix that next. Fixing your pet's egg entry: This one is fairly easy. Navigate to your client folder and open up System/iteminfo.lua This is where the game stores all the item translations. Find the egg that you used by searching for its item id inside square brackets, like this [9001]. The description will be listed here. If you added a completely new egg, it won't be in this file and you'll need to add an entry for it. Update the name so it shows the right name. You can also add a description if you want. Mine looks like this, but it doesn't need to be this fancy. [9108] = { unidentifiedDisplayName = "Garm Baby Egg", unidentifiedResourceName = "¾ðµ¥µå¾Ë", unidentifiedDescriptionName = { "..." }, identifiedDisplayName = "Garm Baby Egg", identifiedResourceName = "¾ðµ¥µå¾Ë", identifiedDescriptionName = { "An egg in which a Garm Baby Cute Pet rests.", "Can be hatched by using a ^33CC33Pet Incubator^000000.", "^33CC33Special Power ^000000:", "Casts level 5 Frost Driver against the enemy", "^33CC33Loyal Bonus^000000", "Increases resistance to the Freeze status by 50%", "Class:^6666CC Monster Egg^000000" }, slotCount = 0, ClassNum = 0 }, Adding a picture for your pet: Every pet has a little picture that is displayed in their pet window. If you don't do this step, it'll just display NO IMAGE. This is not cool, so let's add an image. This requires GRF editor. To start with, you should probably open up data.grf, just to know how it's structured. Images for pets are stored in data/texture/userinterface/illust . If you search this folder for "pet", you'll see the existing images. They are all 90x134 pixels, your image will need to be this size too. Name it something like pet_garm_baby.bmp. You could just upload your file into data.grf, but data.grf is huge and thus it's slow to send update to this file to your players. Instead, it's easier to put it into rathena_resources.grf. It does not have this folder, but you can create it using GRF editor. Remember, any files you put inside something higher in the list of GRF files will override the earlier files. After adding your file, you'll notice that it won't actually display in game. This is because there is also a table of pets in the application that maintains the paths to the images that you need to update. This file is called petinfo.lub, and it is stored inside data.grf in the folder data/luafiles514/lua files/datainfo. We'll need to make a copy of this file, so extract it using right click extract with GRF editor. This file needs specific encoding to read the Korean characters, so make sure to save the file with ANSI encoding when you're done. There are many tables in this file that you'll need to add your pet to. Generally, you can follow the format they use. You'll notice that most of the entries use an identifier that looks like this: [jobtbl.JT_GARM_BABY] = "GARM_BABY", This is an entry into the file jobidentity.lub, which is in the same folder. You should not need to modify that file, pretty much every enemy in the game is already in there, just enter your pet's Aegis name here, in all caps. When you come to this table: PetEggItemID_PetJobID You'll need to give your pet a new JobID, you can just assign a new one at the end. When you're finished updating this file, add it into your rathena_resources.grf, making the same folder path for it as above, so it will overwrite the one in the base game. Make sure to save your GRF afterwards. If you find that the pet accessories on your server no longer work after doing this, you saved the file with the wrong encoding. I fixed this by switching all the pet accessory files to the english names and adding them all to my GRF files, but the smart way is probably just to use a text editor that handles encoding properly, like notepad++. Making your pet talk: To make your pet talk, it needs entries in pettalktable.xml. For me, this file was in my renewal.grf file, in the data folder. This is fairly straightforward, you can just copy and then modify Poring's entry. You just need to know what to put for the enclosing tags. The name must match the entry you made in the PetNameTable inside petinfo.lub. I put the name "GARM_BABY" for my pet, so the tag must say <GARM_BABY>. For some reason, my pets only talked when I put their entries near the beginning of the file. I suspect one of the entries inside the default file has an error in it, but I haven't found it. Either way, adding them to the top of the file is safe. With all of this stuff done, just save your GRF edits and restart the game (it's not necessary to restart the server for GRF changes) and hopefully your pet should talk and have a picture! Once you confirm everything works, you'll need to distribute the changed grf files and iteminfo.lua to your players. It's probably worth adding all your custom pets to the server first before you open in to the public! I'm sorry that this was long, no one said custom pets were going to be easy. Hopefully it all works for you.
    1 point
  42. Here you go # This file is a part of rAthena. # Copyright(C) 2021 rAthena Development Team # https://rathena.org - https://github.com/rathena # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # ########################################################################### # Statpoint Database ########################################################################### # # Statpoint Settings # ########################################################################### # - Level BaseLevel required. # Points Total status points given from BaseLevel 1 to 'Level'. ########################################################################### Header: Type: STATPOINT_DB Version: 1 Body: - Level: 1 Points: 48 - Level: 2 Points: 51 - Level: 3 Points: 54 - Level: 4 Points: 57 - Level: 5 Points: 60 - Level: 6 Points: 64 - Level: 7 Points: 68 - Level: 8 Points: 72 - Level: 9 Points: 76 - Level: 10 Points: 80 - Level: 11 Points: 85 - Level: 12 Points: 90 - Level: 13 Points: 95 - Level: 14 Points: 100 - Level: 15 Points: 105 - Level: 16 Points: 111 - Level: 17 Points: 117 - Level: 18 Points: 123 - Level: 19 Points: 129 - Level: 20 Points: 135 - Level: 21 Points: 142 - Level: 22 Points: 149 - Level: 23 Points: 156 - Level: 24 Points: 163 - Level: 25 Points: 170 - Level: 26 Points: 178 - Level: 27 Points: 186 - Level: 28 Points: 194 - Level: 29 Points: 202 - Level: 30 Points: 210 - Level: 31 Points: 219 - Level: 32 Points: 228 - Level: 33 Points: 237 - Level: 34 Points: 246 - Level: 35 Points: 255 - Level: 36 Points: 265 - Level: 37 Points: 275 - Level: 38 Points: 285 - Level: 39 Points: 295 - Level: 40 Points: 305 - Level: 41 Points: 316 - Level: 42 Points: 327 - Level: 43 Points: 338 - Level: 44 Points: 349 - Level: 45 Points: 360 - Level: 46 Points: 372 - Level: 47 Points: 384 - Level: 48 Points: 396 - Level: 49 Points: 408 - Level: 50 Points: 420 - Level: 51 Points: 433 - Level: 52 Points: 446 - Level: 53 Points: 459 - Level: 54 Points: 472 - Level: 55 Points: 485 - Level: 56 Points: 499 - Level: 57 Points: 513 - Level: 58 Points: 527 - Level: 59 Points: 541 - Level: 60 Points: 555 - Level: 61 Points: 570 - Level: 62 Points: 585 - Level: 63 Points: 600 - Level: 64 Points: 615 - Level: 65 Points: 630 - Level: 66 Points: 646 - Level: 67 Points: 662 - Level: 68 Points: 678 - Level: 69 Points: 694 - Level: 70 Points: 710 - Level: 71 Points: 727 - Level: 72 Points: 744 - Level: 73 Points: 761 - Level: 74 Points: 778 - Level: 75 Points: 795 - Level: 76 Points: 813 - Level: 77 Points: 831 - Level: 78 Points: 849 - Level: 79 Points: 867 - Level: 80 Points: 885 - Level: 81 Points: 904 - Level: 82 Points: 923 - Level: 83 Points: 942 - Level: 84 Points: 961 - Level: 85 Points: 980 - Level: 86 Points: 1000 - Level: 87 Points: 1020 - Level: 88 Points: 1040 - Level: 89 Points: 1060 - Level: 90 Points: 1080 - Level: 91 Points: 1101 - Level: 92 Points: 1122 - Level: 93 Points: 1143 - Level: 94 Points: 1164 - Level: 95 Points: 1185 - Level: 96 Points: 1207 - Level: 97 Points: 1229 - Level: 98 Points: 1251 - Level: 99 Points: 1273 - Level: 100 Points: 1295 - Level: 101 Points: 1318 - Level: 102 Points: 1341 - Level: 103 Points: 1364 - Level: 104 Points: 1387 - Level: 105 Points: 1410 - Level: 106 Points: 1434 - Level: 107 Points: 1458 - Level: 108 Points: 1482 - Level: 109 Points: 1506 - Level: 110 Points: 1530 - Level: 111 Points: 1555 - Level: 112 Points: 1580 - Level: 113 Points: 1605 - Level: 114 Points: 1630 - Level: 115 Points: 1655 - Level: 116 Points: 1681 - Level: 117 Points: 1707 - Level: 118 Points: 1733 - Level: 119 Points: 1759 - Level: 120 Points: 1785 - Level: 121 Points: 1812 - Level: 122 Points: 1839 - Level: 123 Points: 1866 - Level: 124 Points: 1893 - Level: 125 Points: 1920 - Level: 126 Points: 1948 - Level: 127 Points: 1976 - Level: 128 Points: 2004 - Level: 129 Points: 2032 - Level: 130 Points: 2060 - Level: 131 Points: 2089 - Level: 132 Points: 2118 - Level: 133 Points: 2147 - Level: 134 Points: 2176 - Level: 135 Points: 2205 - Level: 136 Points: 2235 - Level: 137 Points: 2265 - Level: 138 Points: 2295 - Level: 139 Points: 2325 - Level: 140 Points: 2355 - Level: 141 Points: 2386 - Level: 142 Points: 2417 - Level: 143 Points: 2448 - Level: 144 Points: 2479 - Level: 145 Points: 2510 - Level: 146 Points: 2542 - Level: 147 Points: 2574 - Level: 148 Points: 2606 - Level: 149 Points: 2638 - Level: 150 Points: 2670 - Level: 151 Points: 2703 - Level: 152 Points: 2736 - Level: 153 Points: 2769 - Level: 154 Points: 2802 - Level: 155 Points: 2835 - Level: 156 Points: 2869 - Level: 157 Points: 2903 - Level: 158 Points: 2937 - Level: 159 Points: 2971 - Level: 160 Points: 3005 - Level: 161 Points: 3040 - Level: 162 Points: 3075 - Level: 163 Points: 3110 - Level: 164 Points: 3145 - Level: 165 Points: 3180 - Level: 166 Points: 3216 - Level: 167 Points: 3252 - Level: 168 Points: 3288 - Level: 169 Points: 3324 - Level: 170 Points: 3360 - Level: 171 Points: 3397 - Level: 172 Points: 3434 - Level: 173 Points: 3471 - Level: 174 Points: 3508 - Level: 175 Points: 3545 - Level: 176 Points: 3583 - Level: 177 Points: 3621 - Level: 178 Points: 3659 - Level: 179 Points: 3697 - Level: 180 Points: 3735 - Level: 181 Points: 3774 - Level: 182 Points: 3813 - Level: 183 Points: 3852 - Level: 184 Points: 3891 - Level: 185 Points: 3930 - Level: 186 Points: 3970 - Level: 187 Points: 4010 - Level: 188 Points: 4050 - Level: 189 Points: 4090 - Level: 190 Points: 4130 - Level: 191 Points: 4171 - Level: 192 Points: 4212 - Level: 193 Points: 4253 - Level: 194 Points: 4294 - Level: 195 Points: 4335 - Level: 196 Points: 4377 - Level: 197 Points: 4419 - Level: 198 Points: 4461 - Level: 199 Points: 4503 - Level: 200 Points: 4545 - Level: 201 Points: 4588 - Level: 202 Points: 4631 - Level: 203 Points: 4674 - Level: 204 Points: 4717 - Level: 205 Points: 4760 - Level: 206 Points: 4804 - Level: 207 Points: 4848 - Level: 208 Points: 4892 - Level: 209 Points: 4936 - Level: 210 Points: 4980 - Level: 211 Points: 5025 - Level: 212 Points: 5070 - Level: 213 Points: 5115 - Level: 214 Points: 5160 - Level: 215 Points: 5205 - Level: 216 Points: 5251 - Level: 217 Points: 5297 - Level: 218 Points: 5343 - Level: 219 Points: 5389 - Level: 220 Points: 5435 - Level: 221 Points: 5482 - Level: 222 Points: 5529 - Level: 223 Points: 5576 - Level: 224 Points: 5623 - Level: 225 Points: 5670 - Level: 226 Points: 5718 - Level: 227 Points: 5766 - Level: 228 Points: 5814 - Level: 229 Points: 5862 - Level: 230 Points: 5910 - Level: 231 Points: 5959 - Level: 232 Points: 6008 - Level: 233 Points: 6057 - Level: 234 Points: 6106 - Level: 235 Points: 6155 - Level: 236 Points: 6205 - Level: 237 Points: 6255 - Level: 238 Points: 6305 - Level: 239 Points: 6355 - Level: 240 Points: 6405 - Level: 241 Points: 6456 - Level: 242 Points: 6507 - Level: 243 Points: 6558 - Level: 244 Points: 6609 - Level: 245 Points: 6660 - Level: 246 Points: 6712 - Level: 247 Points: 6764 - Level: 248 Points: 6816 - Level: 249 Points: 6868 - Level: 250 Points: 6920 - Level: 251 Points: 6973 - Level: 252 Points: 7026 - Level: 253 Points: 7079 - Level: 254 Points: 7132 - Level: 255 Points: 7185 - Level: 256 Points: 7304 - Level: 257 Points: 7423 - Level: 258 Points: 7542 - Level: 259 Points: 7661 - Level: 260 Points: 7780 - Level: 261 Points: 7899 - Level: 262 Points: 8018 - Level: 263 Points: 8137 - Level: 264 Points: 8256 - Level: 265 Points: 8375 - Level: 266 Points: 8494 - Level: 267 Points: 8613 - Level: 268 Points: 8732 - Level: 269 Points: 8851 - Level: 270 Points: 8970 - Level: 271 Points: 9089 - Level: 272 Points: 9208 - Level: 273 Points: 9327 - Level: 274 Points: 9446 - Level: 275 Points: 9565 - Level: 276 Points: 9684 - Level: 277 Points: 9803 - Level: 278 Points: 9922 - Level: 279 Points: 10041 - Level: 280 Points: 10160 - Level: 281 Points: 10279 - Level: 282 Points: 10398 - Level: 283 Points: 10517 - Level: 284 Points: 10636 - Level: 285 Points: 10755 - Level: 286 Points: 10874 - Level: 287 Points: 10993 - Level: 288 Points: 11112 - Level: 289 Points: 11231 - Level: 290 Points: 11350 - Level: 291 Points: 11469 - Level: 292 Points: 11588 - Level: 293 Points: 11707 - Level: 294 Points: 11826 - Level: 295 Points: 11945 - Level: 296 Points: 12064 - Level: 297 Points: 12183 - Level: 298 Points: 12302 - Level: 299 Points: 12421 - Level: 300 Points: 12540 - Level: 301 Points: 12659 - Level: 302 Points: 12778 - Level: 303 Points: 12897 - Level: 304 Points: 13016 - Level: 305 Points: 13135 - Level: 306 Points: 13254 - Level: 307 Points: 13373 - Level: 308 Points: 13492 - Level: 309 Points: 13611 - Level: 310 Points: 13730 - Level: 311 Points: 13849 - Level: 312 Points: 13968 - Level: 313 Points: 14087 - Level: 314 Points: 14206 - Level: 315 Points: 14325 - Level: 316 Points: 14444 - Level: 317 Points: 14563 - Level: 318 Points: 14682 - Level: 319 Points: 14801 - Level: 320 Points: 14920 - Level: 321 Points: 15039 - Level: 322 Points: 15158 - Level: 323 Points: 15277 - Level: 324 Points: 15396 - Level: 325 Points: 15515 - Level: 326 Points: 15634 - Level: 327 Points: 15753 - Level: 328 Points: 15872 - Level: 329 Points: 15991 - Level: 330 Points: 16110 - Level: 331 Points: 16229 - Level: 332 Points: 16348 - Level: 333 Points: 16467 - Level: 334 Points: 16586 - Level: 335 Points: 16705 - Level: 336 Points: 16824 - Level: 337 Points: 16943 - Level: 338 Points: 17062 - Level: 339 Points: 17181 - Level: 340 Points: 17300 - Level: 341 Points: 17419 - Level: 342 Points: 17538 - Level: 343 Points: 17657 - Level: 344 Points: 17776 - Level: 345 Points: 17895 - Level: 346 Points: 18014 - Level: 347 Points: 18133 - Level: 348 Points: 18252 - Level: 349 Points: 18371 - Level: 350 Points: 18490 - Level: 351 Points: 18609 - Level: 352 Points: 18728 - Level: 353 Points: 18847 - Level: 354 Points: 18966 - Level: 355 Points: 19085 - Level: 356 Points: 19204 - Level: 357 Points: 19323 - Level: 358 Points: 19442 - Level: 359 Points: 19561 - Level: 360 Points: 19680 - Level: 361 Points: 19799 - Level: 362 Points: 19918 - Level: 363 Points: 20037 - Level: 364 Points: 20156 - Level: 365 Points: 20275 - Level: 366 Points: 20394 - Level: 367 Points: 20513 - Level: 368 Points: 20632 - Level: 369 Points: 20751 - Level: 370 Points: 20870 - Level: 371 Points: 20989 - Level: 372 Points: 21108 - Level: 373 Points: 21227 - Level: 374 Points: 21346 - Level: 375 Points: 21465 - Level: 376 Points: 21584 - Level: 377 Points: 21703 - Level: 378 Points: 21822 - Level: 379 Points: 21941 - Level: 380 Points: 22060 - Level: 381 Points: 22179 - Level: 382 Points: 22298 - Level: 383 Points: 22417 - Level: 384 Points: 22536 - Level: 385 Points: 22655 - Level: 386 Points: 22774 - Level: 387 Points: 22893 - Level: 388 Points: 23012 - Level: 389 Points: 23131 - Level: 390 Points: 23250 - Level: 391 Points: 23369 - Level: 392 Points: 23488 - Level: 393 Points: 23607 - Level: 394 Points: 23726 - Level: 395 Points: 23845 - Level: 396 Points: 23964 - Level: 397 Points: 24083 - Level: 398 Points: 24202 - Level: 399 Points: 24321 - Level: 400 Points: 24440 - Level: 401 Points: 24559 - Level: 402 Points: 24678 - Level: 403 Points: 24797 - Level: 404 Points: 24916 - Level: 405 Points: 25035 - Level: 406 Points: 25154 - Level: 407 Points: 25273 - Level: 408 Points: 25392 - Level: 409 Points: 25511 - Level: 410 Points: 25630 - Level: 411 Points: 25749 - Level: 412 Points: 25868 - Level: 413 Points: 25987 - Level: 414 Points: 26106 - Level: 415 Points: 26225 - Level: 416 Points: 26344 - Level: 417 Points: 26463 - Level: 418 Points: 26582 - Level: 419 Points: 26701 - Level: 420 Points: 26820 - Level: 421 Points: 26939 - Level: 422 Points: 27058 - Level: 423 Points: 27177 - Level: 424 Points: 27296 - Level: 425 Points: 27415 - Level: 426 Points: 27534 - Level: 427 Points: 27653 - Level: 428 Points: 27772 - Level: 429 Points: 27891 - Level: 430 Points: 28010 - Level: 431 Points: 28129 - Level: 432 Points: 28248 - Level: 433 Points: 28367 - Level: 434 Points: 28486 - Level: 435 Points: 28605 - Level: 436 Points: 28724 - Level: 437 Points: 28843 - Level: 438 Points: 28962 - Level: 439 Points: 29081 - Level: 440 Points: 29200 - Level: 441 Points: 29319 - Level: 442 Points: 29438 - Level: 443 Points: 29557 - Level: 444 Points: 29676 - Level: 445 Points: 29795 - Level: 446 Points: 29914 - Level: 447 Points: 30033 - Level: 448 Points: 30152 - Level: 449 Points: 30271 - Level: 450 Points: 30390 - Level: 451 Points: 30509 - Level: 452 Points: 30628 - Level: 453 Points: 30747 - Level: 454 Points: 30866 - Level: 455 Points: 30985 - Level: 456 Points: 31104 - Level: 457 Points: 31223 - Level: 458 Points: 31342 - Level: 459 Points: 31461 - Level: 460 Points: 31580 - Level: 461 Points: 31699 - Level: 462 Points: 31818 - Level: 463 Points: 31937 - Level: 464 Points: 32056 - Level: 465 Points: 32175 - Level: 466 Points: 32294 - Level: 467 Points: 32413 - Level: 468 Points: 32532 - Level: 469 Points: 32651 - Level: 470 Points: 32770 - Level: 471 Points: 32889 - Level: 472 Points: 33008 - Level: 473 Points: 33127 - Level: 474 Points: 33246 - Level: 475 Points: 33365 - Level: 476 Points: 33484 - Level: 477 Points: 33603 - Level: 478 Points: 33722 - Level: 479 Points: 33841 - Level: 480 Points: 33960 - Level: 481 Points: 34079 - Level: 482 Points: 34198 - Level: 483 Points: 34317 - Level: 484 Points: 34436 - Level: 485 Points: 34555 - Level: 486 Points: 34674 - Level: 487 Points: 34793 - Level: 488 Points: 34912 - Level: 489 Points: 35031 - Level: 490 Points: 35150 - Level: 491 Points: 35269 - Level: 492 Points: 35388 - Level: 493 Points: 35507 - Level: 494 Points: 35626 - Level: 495 Points: 35745 - Level: 496 Points: 35864 - Level: 497 Points: 35983 - Level: 498 Points: 36102 - Level: 499 Points: 36221 - Level: 500 Points: 36340 - Level: 501 Points: 36459 - Level: 502 Points: 36578 - Level: 503 Points: 36697 - Level: 504 Points: 36816 - Level: 505 Points: 36935 - Level: 506 Points: 37054 - Level: 507 Points: 37173 - Level: 508 Points: 37292 - Level: 509 Points: 37411 - Level: 510 Points: 37530 - Level: 511 Points: 37649 - Level: 512 Points: 37768 - Level: 513 Points: 37887 - Level: 514 Points: 38006 - Level: 515 Points: 38125 - Level: 516 Points: 38244 - Level: 517 Points: 38363 - Level: 518 Points: 38482 - Level: 519 Points: 38601 - Level: 520 Points: 38720 - Level: 521 Points: 38839 - Level: 522 Points: 38958 - Level: 523 Points: 39077 - Level: 524 Points: 39196 - Level: 525 Points: 39315 - Level: 526 Points: 39434 - Level: 527 Points: 39553 - Level: 528 Points: 39672 - Level: 529 Points: 39791 - Level: 530 Points: 39910 - Level: 531 Points: 40029 - Level: 532 Points: 40148 - Level: 533 Points: 40267 - Level: 534 Points: 40386 - Level: 535 Points: 40505 - Level: 536 Points: 40624 - Level: 537 Points: 40743 - Level: 538 Points: 40862 - Level: 539 Points: 40981 - Level: 540 Points: 41100 - Level: 541 Points: 41219 - Level: 542 Points: 41338 - Level: 543 Points: 41457 - Level: 544 Points: 41576 - Level: 545 Points: 41695 - Level: 546 Points: 41814 - Level: 547 Points: 41933 - Level: 548 Points: 42052 - Level: 549 Points: 42171 - Level: 550 Points: 42290 - Level: 551 Points: 42409 - Level: 552 Points: 42528 - Level: 553 Points: 42647 - Level: 554 Points: 42766 - Level: 555 Points: 42885 - Level: 556 Points: 43004 - Level: 557 Points: 43123 - Level: 558 Points: 43242 - Level: 559 Points: 43361 - Level: 560 Points: 43480 - Level: 561 Points: 43599 - Level: 562 Points: 43718 - Level: 563 Points: 43837 - Level: 564 Points: 43956 - Level: 565 Points: 44075 - Level: 566 Points: 44194 - Level: 567 Points: 44313 - Level: 568 Points: 44432 - Level: 569 Points: 44551 - Level: 570 Points: 44670 - Level: 571 Points: 44789 - Level: 572 Points: 44908 - Level: 573 Points: 45027 - Level: 574 Points: 45146 - Level: 575 Points: 45265 - Level: 576 Points: 45384 - Level: 577 Points: 45503 - Level: 578 Points: 45622 - Level: 579 Points: 45741 - Level: 580 Points: 45860 - Level: 581 Points: 45979 - Level: 582 Points: 46098 - Level: 583 Points: 46217 - Level: 584 Points: 46336 - Level: 585 Points: 46455 - Level: 586 Points: 46574 - Level: 587 Points: 46693 - Level: 588 Points: 46812 - Level: 589 Points: 46931 - Level: 590 Points: 47050 - Level: 591 Points: 47169 - Level: 592 Points: 47288 - Level: 593 Points: 47407 - Level: 594 Points: 47526 - Level: 595 Points: 47645 - Level: 596 Points: 47764 - Level: 597 Points: 47883 - Level: 598 Points: 48002 - Level: 599 Points: 48121 - Level: 600 Points: 48240 - Level: 601 Points: 48359 - Level: 602 Points: 48478 - Level: 603 Points: 48597 - Level: 604 Points: 48716 - Level: 605 Points: 48835 - Level: 606 Points: 48954 - Level: 607 Points: 49073 - Level: 608 Points: 49192 - Level: 609 Points: 49311 - Level: 610 Points: 49430 - Level: 611 Points: 49549 - Level: 612 Points: 49668 - Level: 613 Points: 49787 - Level: 614 Points: 49906 - Level: 615 Points: 50025 - Level: 616 Points: 50144 - Level: 617 Points: 50263 - Level: 618 Points: 50382 - Level: 619 Points: 50501 - Level: 620 Points: 50620 - Level: 621 Points: 50739 - Level: 622 Points: 50858 - Level: 623 Points: 50977 - Level: 624 Points: 51096 - Level: 625 Points: 51215 - Level: 626 Points: 51334 - Level: 627 Points: 51453 - Level: 628 Points: 51572 - Level: 629 Points: 51691 - Level: 630 Points: 51810 - Level: 631 Points: 51929 - Level: 632 Points: 52048 - Level: 633 Points: 52167 - Level: 634 Points: 52286 - Level: 635 Points: 52405 - Level: 636 Points: 52524 - Level: 637 Points: 52643 - Level: 638 Points: 52762 - Level: 639 Points: 52881 - Level: 640 Points: 53000 - Level: 641 Points: 53119 - Level: 642 Points: 53238 - Level: 643 Points: 53357 - Level: 644 Points: 53476 - Level: 645 Points: 53595 - Level: 646 Points: 53714 - Level: 647 Points: 53833 - Level: 648 Points: 53952 - Level: 649 Points: 54071 - Level: 650 Points: 54190 - Level: 651 Points: 54309 - Level: 652 Points: 54428 - Level: 653 Points: 54547 - Level: 654 Points: 54666 - Level: 655 Points: 54785 - Level: 656 Points: 54904 - Level: 657 Points: 55023 - Level: 658 Points: 55142 - Level: 659 Points: 55261 - Level: 660 Points: 55380 - Level: 661 Points: 55499 - Level: 662 Points: 55618 - Level: 663 Points: 55737 - Level: 664 Points: 55856 - Level: 665 Points: 55975 - Level: 666 Points: 56094 - Level: 667 Points: 56213 - Level: 668 Points: 56332 - Level: 669 Points: 56451 - Level: 670 Points: 56570 - Level: 671 Points: 56689 - Level: 672 Points: 56808 - Level: 673 Points: 56927 - Level: 674 Points: 57046 - Level: 675 Points: 57165 - Level: 676 Points: 57284 - Level: 677 Points: 57403 - Level: 678 Points: 57522 - Level: 679 Points: 57641 - Level: 680 Points: 57760 - Level: 681 Points: 57879 - Level: 682 Points: 57998 - Level: 683 Points: 58117 - Level: 684 Points: 58236 - Level: 685 Points: 58355 - Level: 686 Points: 58474 - Level: 687 Points: 58593 - Level: 688 Points: 58712 - Level: 689 Points: 58831 - Level: 690 Points: 58950 - Level: 691 Points: 59069 - Level: 692 Points: 59188 - Level: 693 Points: 59307 - Level: 694 Points: 59426 - Level: 695 Points: 59545 - Level: 696 Points: 59664 - Level: 697 Points: 59783 - Level: 698 Points: 59902 - Level: 699 Points: 60021 - Level: 700 Points: 60140 - Level: 701 Points: 60259 - Level: 702 Points: 60378 - Level: 703 Points: 60497 - Level: 704 Points: 60616 - Level: 705 Points: 60735 - Level: 706 Points: 60854 - Level: 707 Points: 60973 - Level: 708 Points: 61092 - Level: 709 Points: 61211 - Level: 710 Points: 61330 - Level: 711 Points: 61449 - Level: 712 Points: 61568 - Level: 713 Points: 61687 - Level: 714 Points: 61806 - Level: 715 Points: 61925 - Level: 716 Points: 62044 - Level: 717 Points: 62163 - Level: 718 Points: 62282 - Level: 719 Points: 62401 - Level: 720 Points: 62520 - Level: 721 Points: 62639 - Level: 722 Points: 62758 - Level: 723 Points: 62877 - Level: 724 Points: 62996 - Level: 725 Points: 63115 - Level: 726 Points: 63234 - Level: 727 Points: 63353 - Level: 728 Points: 63472 - Level: 729 Points: 63591 - Level: 730 Points: 63710 - Level: 731 Points: 63829 - Level: 732 Points: 63948 - Level: 733 Points: 64067 - Level: 734 Points: 64186 - Level: 735 Points: 64305 - Level: 736 Points: 64424 - Level: 737 Points: 64543 - Level: 738 Points: 64662 - Level: 739 Points: 64781 - Level: 740 Points: 64900 - Level: 741 Points: 65019 - Level: 742 Points: 65138 - Level: 743 Points: 65257 - Level: 744 Points: 65376 - Level: 745 Points: 65495 - Level: 746 Points: 65614 - Level: 747 Points: 65733 - Level: 748 Points: 65852 - Level: 749 Points: 65971 - Level: 750 Points: 66090 - Level: 751 Points: 66209 - Level: 752 Points: 66328 - Level: 753 Points: 66447 - Level: 754 Points: 66566 - Level: 755 Points: 66685 - Level: 756 Points: 66804 - Level: 757 Points: 66923 - Level: 758 Points: 67042 - Level: 759 Points: 67161 - Level: 760 Points: 67280 - Level: 761 Points: 67399 - Level: 762 Points: 67518 - Level: 763 Points: 67637 - Level: 764 Points: 67756 - Level: 765 Points: 67875 - Level: 766 Points: 67994 - Level: 767 Points: 68113 - Level: 768 Points: 68232 - Level: 769 Points: 68351 - Level: 770 Points: 68470 - Level: 771 Points: 68589 - Level: 772 Points: 68708 - Level: 773 Points: 68827 - Level: 774 Points: 68946 - Level: 775 Points: 69065 - Level: 776 Points: 69184 - Level: 777 Points: 69303 - Level: 778 Points: 69422 - Level: 779 Points: 69541 - Level: 780 Points: 69660 - Level: 781 Points: 69779 - Level: 782 Points: 69898 - Level: 783 Points: 70017 - Level: 784 Points: 70136 - Level: 785 Points: 70255 - Level: 786 Points: 70374 - Level: 787 Points: 70493 - Level: 788 Points: 70612 - Level: 789 Points: 70731 - Level: 790 Points: 70850 - Level: 791 Points: 70969 - Level: 792 Points: 71088 - Level: 793 Points: 71207 - Level: 794 Points: 71326 - Level: 795 Points: 71445 - Level: 796 Points: 71564 - Level: 797 Points: 71683 - Level: 798 Points: 71802 - Level: 799 Points: 71921 - Level: 800 Points: 72040 - Level: 801 Points: 72159 - Level: 802 Points: 72278 - Level: 803 Points: 72397 - Level: 804 Points: 72516 - Level: 805 Points: 72635 - Level: 806 Points: 72754 - Level: 807 Points: 72873 - Level: 808 Points: 72992 - Level: 809 Points: 73111 - Level: 810 Points: 73230 - Level: 811 Points: 73349 - Level: 812 Points: 73468 - Level: 813 Points: 73587 - Level: 814 Points: 73706 - Level: 815 Points: 73825 - Level: 816 Points: 73944 - Level: 817 Points: 74063 - Level: 818 Points: 74182 - Level: 819 Points: 74301 - Level: 820 Points: 74420 - Level: 821 Points: 74539 - Level: 822 Points: 74658 - Level: 823 Points: 74777 - Level: 824 Points: 74896 - Level: 825 Points: 75015 - Level: 826 Points: 75134 - Level: 827 Points: 75253 - Level: 828 Points: 75372 - Level: 829 Points: 75491 - Level: 830 Points: 75610 - Level: 831 Points: 75729 - Level: 832 Points: 75848 - Level: 833 Points: 75967 - Level: 834 Points: 76086 - Level: 835 Points: 76205 - Level: 836 Points: 76324 - Level: 837 Points: 76443 - Level: 838 Points: 76562 - Level: 839 Points: 76681 - Level: 840 Points: 76800 - Level: 841 Points: 76919 - Level: 842 Points: 77038 - Level: 843 Points: 77157 - Level: 844 Points: 77276 - Level: 845 Points: 77395 - Level: 846 Points: 77514 - Level: 847 Points: 77633 - Level: 848 Points: 77752 - Level: 849 Points: 77871 - Level: 850 Points: 77990 - Level: 851 Points: 78109 - Level: 852 Points: 78228 - Level: 853 Points: 78347 - Level: 854 Points: 78466 - Level: 855 Points: 78585 - Level: 856 Points: 78704 - Level: 857 Points: 78823 - Level: 858 Points: 78942 - Level: 859 Points: 79061 - Level: 860 Points: 79180 - Level: 861 Points: 79299 - Level: 862 Points: 79418 - Level: 863 Points: 79537 - Level: 864 Points: 79656 - Level: 865 Points: 79775 - Level: 866 Points: 79894 - Level: 867 Points: 80013 - Level: 868 Points: 80132 - Level: 869 Points: 80251 - Level: 870 Points: 80370 - Level: 871 Points: 80489 - Level: 872 Points: 80608 - Level: 873 Points: 80727 - Level: 874 Points: 80846 - Level: 875 Points: 80965 - Level: 876 Points: 81084 - Level: 877 Points: 81203 - Level: 878 Points: 81322 - Level: 879 Points: 81441 - Level: 880 Points: 81560 - Level: 881 Points: 81679 - Level: 882 Points: 81798 - Level: 883 Points: 81917 - Level: 884 Points: 82036 - Level: 885 Points: 82155 - Level: 886 Points: 82274 - Level: 887 Points: 82393 - Level: 888 Points: 82512 - Level: 889 Points: 82631 - Level: 890 Points: 82750 - Level: 891 Points: 82869 - Level: 892 Points: 82988 - Level: 893 Points: 83107 - Level: 894 Points: 83226 - Level: 895 Points: 83345 - Level: 896 Points: 83464 - Level: 897 Points: 83583 - Level: 898 Points: 83702 - Level: 899 Points: 83821 - Level: 900 Points: 83940 - Level: 901 Points: 84140 - Level: 902 Points: 84340 - Level: 903 Points: 84540 - Level: 904 Points: 84740 - Level: 905 Points: 84940 - Level: 906 Points: 85140 - Level: 907 Points: 85340 - Level: 908 Points: 85540 - Level: 909 Points: 85740 - Level: 910 Points: 85940 - Level: 911 Points: 86140 - Level: 912 Points: 86340 - Level: 913 Points: 86540 - Level: 914 Points: 86740 - Level: 915 Points: 86940 - Level: 916 Points: 87140 - Level: 917 Points: 87340 - Level: 918 Points: 87540 - Level: 919 Points: 87740 - Level: 920 Points: 87940 - Level: 921 Points: 88140 - Level: 922 Points: 88340 - Level: 923 Points: 88540 - Level: 924 Points: 88740 - Level: 925 Points: 88940 - Level: 926 Points: 89140 - Level: 927 Points: 89340 - Level: 928 Points: 89540 - Level: 929 Points: 89740 - Level: 930 Points: 89940 - Level: 931 Points: 90140 - Level: 932 Points: 90340 - Level: 933 Points: 90540 - Level: 934 Points: 90740 - Level: 935 Points: 90940 - Level: 936 Points: 91140 - Level: 937 Points: 91340 - Level: 938 Points: 91540 - Level: 939 Points: 91740 - Level: 940 Points: 91940 - Level: 941 Points: 92140 - Level: 942 Points: 92340 - Level: 943 Points: 92540 - Level: 944 Points: 92740 - Level: 945 Points: 92940 - Level: 946 Points: 93140 - Level: 947 Points: 93340 - Level: 948 Points: 93540 - Level: 949 Points: 93740 - Level: 950 Points: 93940 - Level: 951 Points: 94140 - Level: 952 Points: 94340 - Level: 953 Points: 94540 - Level: 954 Points: 94740 - Level: 955 Points: 94940 - Level: 956 Points: 95140 - Level: 957 Points: 95340 - Level: 958 Points: 95540 - Level: 959 Points: 95740 - Level: 960 Points: 95940 - Level: 961 Points: 96140 - Level: 962 Points: 96340 - Level: 963 Points: 96540 - Level: 964 Points: 96740 - Level: 965 Points: 96940 - Level: 966 Points: 97140 - Level: 967 Points: 97340 - Level: 968 Points: 97540 - Level: 969 Points: 97740 - Level: 970 Points: 97940 - Level: 971 Points: 98140 - Level: 972 Points: 98340 - Level: 973 Points: 98540 - Level: 974 Points: 98740 - Level: 975 Points: 98940 - Level: 976 Points: 99140 - Level: 977 Points: 99340 - Level: 978 Points: 99540 - Level: 979 Points: 99740 - Level: 980 Points: 99940 - Level: 981 Points: 100140 - Level: 982 Points: 100340 - Level: 983 Points: 100540 - Level: 984 Points: 100740 - Level: 985 Points: 100940 - Level: 986 Points: 101140 - Level: 987 Points: 101340 - Level: 988 Points: 101540 - Level: 989 Points: 101740 - Level: 990 Points: 101940 - Level: 991 Points: 102140 - Level: 992 Points: 102340 - Level: 993 Points: 102540 - Level: 994 Points: 102740 - Level: 995 Points: 102940 - Level: 996 Points: 103140 - Level: 997 Points: 103340 - Level: 998 Points: 103540 - Level: 999 Points: 103740
    1 point
  43. Just sharing my max guild capacity by 20 /src/common/mmo.h : From #define MAX_GUILD 16+10*6 to #define MAX_GUILD 10+10*1 // increased max guild members +6 per 1 extension levels [Lupus] and /src/char/int_guild.c : From g->max_member = 16 + guild_checkskill(g, GD_EXTENSION) * 6; to g->max_member = 10 + guild_checkskill(g, GD_EXTENSION) * 1;
    1 point
  44. Heya, The ground unit IDs for skills are within the client itself, they are not found in lub files and you cannot add new ones. These IDs are mostly meant to display a visual effect on the client though. Therefore... if you want a custom ground skill to show an effect, you'll have to use a pre-existing ID from those currently defined in rAthena and work your way around that. Otherwise, if you want to display a custom effect, you'll have to use "dirty tricks". Either way, what you're looking for simply doesn't exist. But I'll say, what you've described so far is unclear. Most custom skills do not require an unit ID to begin with.
    1 point
  45. .@total = 10; monster "prontera",0,0,"Quest Poring",1002,.@total,"NPCNAME::OnPoringKilled"; copyarray .@mob_gid, $@mobid, .@total; for (.@i = 0; .@i < .@total; .@i++) { getunitdata .@mob_gid[.@i], .@array; if (.@array[UMOB_MODE] & MD_AGGRESSIVE) setunitdata .@mob_gid[.@i], UMOB_MODE, (.@array[UMOB_MODE] - MD_AGGRESSIVE); }
    1 point
  46. They are located inside the GRF in data\texture\À¯ÀúÀÎÅÍÆäÀ̽º , must be of type JPEG and have to be called loadingXX.jpg where XX is a zero-based index (00, 01, 02...) and limited to about 6-12 files depending on langtype (unless you have diffed Unlimited Loading Screens option). You should prefer sizes of 4:3 (ex. 800x600, 1024x768) otherwise the loading screen is stretched to fit the screen, which causes certain quality loss. Try to avoid gradients, because the client reduces the amount of colors used inside the image as well. Adding your background to your clientinfo.xml / sclientinfo.xml <?xml version="1.0" encoding="euc-kr" ?> <clientinfo> <desc>Ragnarok Client Information</desc> <servicetype>korea</servicetype> <servertype>sakray</servertype> <hideaccountlist /> <passwordencrypt /> <passwordencrypt2 /> <extendedslot /> <readfolder /> <connection> <display>SERVER NAME HERE</display> <desc>Ragnarok Online</desc> <balloon>this is a tool tip</balloon> <address>SERVER IP HERE</address> <port>6900</port> <version>20</version> <langtype>1</langtype> <registrationweb>REGISTRATION URL HERE</registrationweb> <yellow> <admin>2000001</admin> <admin>2000002</admin> <admin>2000003</admin> </yellow> <loading> <image>loading00.jpg</image> <image>loading01.jpg</image> <image>loading02.jpg</image> <image>loading03.jpg</image> <image>loading04.jpg</image> <image>loading05.jpg</image> <image>loading06.jpg</image> <image>loading07.jpg</image> <image>loading08.jpg</image> <image>loading09.jpg</image> <image>loading10.jpg</image> </loading> </connection> </clientinfo>
    1 point
  47. @Alberan Wow, thanks that you say about ESRGAN! I work with some npc sprites and it`s really looking good in game~ New part of sprites:
    1 point
  48. Briefing & Concept Hello folks I'm back with a map I did quite a some time ago. I was not able to show it since the heavy amount of work I'm having ATM. I consider this a good map, worth enough to be in a showcase thread. About this map So, what do we have new on this map? Konoha is, a medium size map, which has some good extras I have tried so far. It has real Naruto Models I edited myself and, I have to say I poolished the textures to have a more RO style (bitmap shadows). This map has new features, (The part that most of people waits ) Although it is nothing really special, it is possible to use High Jump on the building's roofs... just as how it is in the real anime. Another thing I have to mention is the addition of the Hokages in the background of the map. I bet, Konoha city would not be Konoha without these awesome guys! Video! ... Watch it in 720p! HD Screenshots Color Palettes Sponsored by @KamiShi Drooping Olrox Hat Sponsored by @Adel Screens are in Full 1920x1080 HD resolution. You can allways hit the image thumbnaill to check the images on full size, and check some details that can only be appreciated in HD resolution. Beautiful Panoramic Awesome screenshot comes at first. The Sky is just a PS edition for a decorative screen I did Overview 2 Overview 3 Overview 4 Overview 5 Overview 6 Area View 1 One of the things I got back to take care of, are the small details. This screen shows an example of very small details as boxes, foods, etc. Area View 2 Using High jump on some houses. You can walk across the houses using this skill... Area View 3 This small area recreates the hotsprings. Area View 2 In game View of the Hokages That is all for now. Personally I like how this town became. I'm not sure if this is the first konoha out there. This project I'm working for is aiming to have other Villages from Naruto, It is kinda a big project and I hope I will have enough time to finish all the request from this guy. Comments or Ideas are always welcome. Thanks a lot for your time, and I wish to all to you a nice weekend!
    1 point
  49. What's the point of having another private server when there are hundreds of them out there!!!!!!!!!!!!!!1111 Yes, more choice is better
    1 point
×
×
  • Create New...