Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/05/23 in all areas

  1. You could attach the checks on a label that gets triggered when the mob that represents an ore gets killed. Here is a small example: - script MINING FAKE_NPC,{ OnInit: // Config setarray(.mining_utils, 28116); setarray(.minerals, 3742, 3743, 1083); .mineral_0_name$ = "Bronze"; setarray(.mineral_0_maps$, "prontera"); setarray(.mineral_0_amounts, 10); setarray(.mineral_0_areas_x_1, 150); setarray(.mineral_0_areas_x_2, 163); setarray(.mineral_0_areas_y_1, 175); setarray(.mineral_0_areas_y_2, 137); setarray(.mineral_0_items, 502, 10, 1, 5, 503, 40, 1, 5, 504, 50, 1, 5); .mineral_1_name$ = "Silver"; setarray(.mineral_1_maps$, "prontera"); setarray(.mineral_1_amounts, 10); setarray(.mineral_1_areas_x_1, 150); setarray(.mineral_1_areas_x_2, 163); setarray(.mineral_1_areas_y_1, 150); setarray(.mineral_1_areas_y_2, 200); setarray(.mineral_1_items, 505, 10, 1, 5, 506, 40, 1, 5, 507, 50, 1, 5); .mineral_2_name$ = "Gold"; setarray(.mineral_2_maps$, "prontera"); setarray(.mineral_2_amounts, 10); setarray(.mineral_2_areas_x_1, 150); setarray(.mineral_2_areas_x_2, 163); setarray(.mineral_2_areas_y_1, 175); setarray(.mineral_2_areas_y_2, 137); setarray(.mineral_2_items, 508, 10, 1, 5, 509, 40, 1, 5, 510, 50, 1, 5); // Config End for(.@i = 0; .@i < getarraysize(.minerals); .@i++) { .@name$ = getd(".mineral_" + .@i + "_name$"); .@items = getd(".mineral_" + .@i + "_items"); .@items_size = getarraysize(getd(".mineral_" + .@i + "_items")); .@item_sum = 0; for(.@x = 0; .@x < .@items_size; .@x += 4) .@item_sum += getd(".mineral_" + .@i + "_items[" + (.@x + 1) + "]"); setd(".mineral_" + .@i + "_item_sum", .@item_sum); .@maps_size = getarraysize(getd(".mineral_" + .@i + "_maps$")); for(.@y = 0; .@y < .@maps_size; .@y++) { .@maps$ = getd(".mineral_" + .@i + "_maps$[" + .@y + "]"); .@amounts = getd(".mineral_" + .@i + "_amounts[" + .@y + "]"); .@areas_x_1 = getd(".mineral_" + .@i + "_areas_x_1[" + .@y + "]"); .@areas_x_2 = getd(".mineral_" + .@i + "_areas_x_2[" + .@y + "]"); .@areas_y_1 = getd(".mineral_" + .@i + "_areas_y_1[" + .@y + "]"); .@areas_y_2 = getd(".mineral_" + .@i + "_areas_y_2[" + .@y + "]"); areamonster(.@maps$, .@areas_x_1, .@areas_x_2, .@areas_y_1, .@areas_y_2, .@name$, .minerals[.@i], .@amounts, "MINING::OnMined"); } } end; OnMined: .@mineral = inarray(.minerals, killedrid); .@mineral_name$ = getd(".mineral_" + .@mineral + "_name$"); .@util = getequipid(EQI_HAND_R); if(inarray(.mining_utils, .@util) == -1) { dispbottom("Using your " + getitemname(.@util) + " destroyed any useful resource from " + .@mineral_name$ + "."); end; } .@mineral_item_sum = getd(".mineral_" + .@mineral + "_item_sum"); .@mineral_items_size = getarraysize(getd(".mineral_" + .@i + "_items")); .@pick = rand(1, .@mineral_item_sum); for(.@i = 0; .@i < .@mineral_items_size; .@i += 4) { .@pick -= getd(".mineral_" + .@mineral + "_items[" + (.@i + 1) + "]"); if(.@pick <= 0) break; } .@item = getd(".mineral_" + .@mineral + "_items[" + .@i + "]"); .@item_min_amount = getd(".mineral_" + .@mineral + "_items[" + (.@i + 2) + "]"); .@item_max_amount = getd(".mineral_" + .@mineral + "_items[" + (.@i + 3) + "]"); getitem(.@item, rand(.@item_min_amount, .@item_max_amount)); } This will spawn different minerals (in this example represented by purple ore and plants), which give different items on kill etc. once a mineral gets killed, it checks if an item from the .mining_utils array is equipped and if not gives the player the message, that using the wrong item destroyed any useful resources otherwise it will roll which and how many of an item the player gets.
    1 point
  2. @jamesandrew You're getting lots of errors because you didn't close the if statement, here: if (stristr(output, " : ") || stristr(output, " ; ") || stristr(output, " ") || stristr(output, "Tokei") || stristr(output, "Saga") || stristr(output, "Pegasus") || stristr(output, "GM ") || stristr(output, "[G M]") || stristr(output, " GM") || strstr(output, "GM") || stristr(output, "[GM]") || stristr(output, "(GM)") || stristr(output, "{GM}") || stristr(output, "skype") || stristr(output, "discord") || stristr(output, "facebook")) { clif_colormes(sd->fd, color_table[COLOR_RED], "You are only allowed to type a maximum of 3 spaces in a row."); return; Also, I don't know if that code is old, but my emulator would treat any sent msg as detected and filtered out, and thats because on the output variable there is a " : " char sequence, so stristr(output, " : ") triggers on it So, yeah, you're missing a bracket. (And I removed the faulty check) if (strstr(output, " ") || strstr(output, "Sapito") || strstr(output, "Saga") || strstr(output, "Pegasus") || strstr(output, "GM ") || strstr(output, "[G M]") || strstr(output, " GM") || strstr(output, "GM") || strstr(output, "[GM]") || strstr(output, "(GM)") || strstr(output, "{GM}") || stristr(output, "Skype") || stristr(output, "facebook")) { clif_showscript(&sd->bl, "¿Qué intentas hacer? jjjjejjej", SELF); return; }
    1 point
  3. The easiest way would be to create a custom mob that looks like a mineral. You could for example copy Purple Ore (id: 3742) and add the items you want the player to get by mining as drop. You just need to remember to add your custom mob to mob_avail,yml to tell rathena to make the client use the sprite of the original mob for your custom one.
    1 point
  4. Another small update, but no less time-consuming. I got my hands on the GRF file with the information from the beta, and I was able to harvest the last removed map, etc_cave01. This map did not initially load properly as its textures are looking at some nonexistent location, but hex editing the GND file easily allowed these to be replaced. It seems to use the same textures as Dungeon001, so I've added it to the game as another floor to that dungeon. There's a few new enemies here, like Papare and that Black Bat enemy. I found a new item I wanted the black bat to drop, the Black Devil Mask. It's a neat-looking mask that covers one eye. However, there's a big problem with it! If you turn in certain directions, the eye that it covers changes! This looks super stupid and I wasn't willing to put it in the game like that. So, because I'm way too picky about stuff like this, I decided to see if I could fix the sprite myself. There's a pretty good tool that can be used to do this called Act Editor which I used a little bit before for editing enemy sprites. A naive person (ie, me before I did this) would probably think that because the character can be displayed from 8 directions, this will only require 2 new sprites (only 2 directions are messed up). Oh no. The game manually specifies the position of the headgear for every possible animation frame the character can have. I'm sure there's probably some automatic way to update this but I didn't find it, I just did them all manually by calculating how much the sprite moved each frame. There are also different sprites for male and female characters since they have different animations. This took a while. Since I was already spending my whole evening on this, I decided to see if I could fix the Kitty Band as well, which has a strange issue where the inside of the ear always faces outward regardless of which direction you face, causing people on my server to joke about it being the worst headgear in the game. This was comparatively much easier because I didn't have to reposition anything, I just had to add some new sprites and then swap out the sprite index in the animations. Interestingly, the male act file for the Kitty band already specifies a back sprite, it's just identical to the front sprite, but the female act file does not. Did two different people work on these? At any rate, here's what they look like once they're fixed. Should you want these sprite edits for your own server, I've attached a GRF file that contains the updates. You'll probably just want to merge this into one of your grf files, since it's very small. headgearfix.grf
    1 point
  5. I've been fiddling around with skills a bit more, having finally somewhat figured out how to get custom animations working. This is related to the file "skilleffectinfo.lub". Initially, I thought you could only use certain effects here, but it turns out you can add more effects by editing effectid.lub. Between the two, you can kinda add custom skill animations, but it's very janky. Target animations always work, but animations for the caster refuse to play for most skills for no reason that I've been able to determine. It could be related to the type of skill or some kind of hardcoding in the client file, but I've generally had to use workarounds involving the clif_skill_nodamage function for these sorts of animations. Anyway, I figured it might be a good time to give a summary of some of the skill changes I've made to the various classes. Some of these have been mentioned in previous posts, but many are new. I've also included a little bit of an explanation behind my thought process at the bottom of each entry. Lord Knight: - Bowling Bash now works. I completely recoded the skill so it now does what it's supposed to do, it knocks back a target and if it hits other targets they get knocked back too. It does more damage if at least one other target is hit. - Spear Stab is now a completely new ability called Pin Down, which has cast time but inflicts the ankle snare effect on enemies. This is because the original Spear Stab is almost the same as Bowling Bash. - Brandish Spear no longer has knockback, which improves its DPS since you can now spam it. - Knight has two new skills in "Calmness" and "Fast Metabolism". The former eliminates the Flee Penalty from being hit by many targets at once, which is good for Flee-based Knights. The latter increases the amount of healing received from healing items, similar to Increase HP Recovery, though it also affects SP items. - Concentration now slightly reduces cast time - Aura Blade is now a party skill that can also affect teammates, similar to Doram's buffs. It also now applies its damage to "fake" multihits (those that have a hit count in the negatives). - Has a completely new skill in "Blade Beam", a sword-exclusive skill that has cast time and shoots a projectile with splash damage that can cause Fear. This is actually a heavily reworked version of RK_WINDCUTTER. Lord Knight is a strange class in that it's good but its skill tree has a lot of issues. Almost all of the class's power is concentrated in Spiral Pierce, even though it has a million other active skills that never see use. The in-game descriptions of the class imply that it's supposed to be a tank, though it isn't really, it's basically just a bulky DPS, so when adding a few new skills I tried to give the class some tanking utility. I also wanted Sword-based LK to be more viable, since everyone always runs spear. Paladin: - Grand Cross's physical damage portion is slightly stronger, the physical and magical sides are about equal now (this also increases the recoil damage, however). - Pressure is its Renewal version, which deals strong magic damage instead of just dealing fixed damage, making it a drastically better skill. - Providence is significantly changed and is now exclusive to Paladin. It now gives other characters the effect of Faith and Endure, increasing Max HP and Holy Resist. It also now works on other Paladins, though you can't cast it on yourself. This was mainly changed because there was actually too much Demon Resist in the game, it was possible to get >90% resist to Demons, functionally trivializing some bosses. - Paladin now gets Pinpoint Attack (from Royal Guard). This skill no longer does an automatic critical and is mainly useful for its status effects. - Gospel now functions like a song, you can move and attack while using it. It no longer strips your buffs when you cast it, though the positive effects still don't affect the caster. It also makes a bigger cross at level 5 and above. In the old days, Paladin was a strong contender for the title of "most underwhelming transcendent class", with basically all of its transcendent skills being useless. This changed instantly with the change to Pressure, in fact I had to reduce its power a couple times, because when given a source of strong damage output Paladin instantly becomes a "master of all" who has no weaknesses. I feel like the fact that Paladin has low DPS against enemies who aren't weak to Holy is a key part of the class, so I tried to avoid giving it any significant damage buffs, and I also didn't want to give it anything that significantly improved its tankiness either. Spear Paladin has always felt quite weak to me, so I think the addition of Pinpoint attack helps a lot there, and the new Providence skill is an interesting buff for some fragile characters. It's also fun to actually be able to use Gospel. Assassin Cross: - Assassin has four completely new skills. The first three are "Numbing Poison", "Impairing Poison", and "Sapping Poison". These are passives that add stat debuffs to Poison status (for AGI, DEX, and STR, respectively), turning it into kind of an anti-Blessing status. - The fourth new skill is "Status Mastery", which increases the chance to inflict status conditions. This is now a prerequisite for Meteor Attack, which no longer requires Soul Breaker. - Venom Dust makes a larger cross at high levels. - Venom Splasher is its modern version, which has more power and doesn't require the target to have less than a certain percentage of its HP to be used. - Righthand Mastery and Lefthand Mastery now both have 10 levels. At Level 10 for Lefthand Mastery, the damage penalty for your left hand weapon is eliminated (previously the maximum damage you could get was 70%). - Assassin Cross can now learn Phantom Menace (from Guillotine Cross). This is a very situational ability that hits hidden characters with 100% hit rate. This mainly exists to deal with Stalkers, as it can hit people using Chase Walk. - Assassin Cross has a new ability in Poison Resist. This reduces the damage you take from Poison Element and reduces the chance to be Poisoned, but you lose 2% of your maximum HP per level of it that you take. This skill has some use but is mainly intended as a "penalty" skill to gatekeep EDP. - Create Deadly Poison requires 5 levels of Poison Resist. If you want to drink the poison bottle for an ASPD boost, it has to be maxed at level 10, costing you 20% of your maximum HP. - EDP is also a 10 level skill that has slightly less power at level 10 than it used to have at level 5. It's still extremely powerful, but it now makes you into a glass cannon, which I think makes sense. Note my abysmally low max HP at level 71. At least you can freely walk through Venom Dust now without ever being poisoned once this skill is maxed! Assassin is probably the most flawed class in the game. Pre-Rebirth Assassin has almost no skills that anyone cares about, in particular all of their poison skills are always ignored, but Assassin Cross is almost unquestionably the most powerful class in the game. It gets three absurdly strong new abilities in EDP, Soul Breaker, and Meteor Assault, all of which are best-in-class abilities of their respective types. Even then, Sin Cross still typically has a ton of points left over since they don't care about the rest of their abilities. One of the first things I wanted to do was make Poison more useful, since it's generally one of the wimpiest Status conditions but like half their skills revolve around it. I also think the ability to inflict status conditions more accurately also allows for a number of interesting status-based builds. I also use these new skills to make the super strong Sin Cross abilities more expensive to get your hands on, so you now typically have to pick and choose between them a little more. EDP Sin is also now a total glass cannon, which I think makes sense given how powerful it is. Stalker: - Chase Walk now consumes SP faster - Rogue has a new active skill in Rupture. This is a very strong attack that can only be used against enemies that are bleeding. Obviously, this synergizes well with Gouge from Thief for auto-attacker Rogues. - Stalker has a new ability in "Shadow Master". This is a passive that reduces damage taken from and increases damage dealt with Shadow Element. Rogue does not innately have any skills that do Shadow Damage, but there are lots of ways to get one (use a Shadow-element weapon, use Cursed Water, copy a Shadow skill using Intimidate, etc). - Stalker also now gets Shadow Form (from Shadow Chaser). This is an active skill that redirects damage from the Stalker to a target for a certain number of hits. In the base game, this skill can only be used on players, but I recoded it so you can use it on enemies as well (though MVPs are immune to it). This is one of the only abilities in the game that has a cooldown before you can use it again, to prevent it from being spammed over and over. Stalker is an interesting class with a lot of PVP applications and I mainly wanted to enhance that with these changes. Shadow Master is kind of interesting for mindgames in that it gives you more power at the expense of predictability. You won't be able to do anything to anyone using Bathory armor, but what if your Intimidate skill is Holy Cross or Grand Cross? Shadow Form is also the ultimate counter to Asura, allowing you to delete anyone who dares try to use it on you, but a clever attacker will try to bait it out first, since once it has been used you can safely Asura during the cooldown. Whitesmith: - Hammer Fall now has 10 levels and has a larger area at high levels than it used to. - Skin tempering also now has 10 levels, granting 10% neutral resist when maxed. - Blacksmith has a new ability in "Weapon Enchant", which adds bonus elemental damage to your (or an ally's) weapon. This is the same effect that Magnum break applies, but for a longer duration. The level of the skill determines the element of the bonus damage, between Fire, Water, Wind, Earth, and Shadow. It costs a Red Gemstone to use. - Whitesmith gets another ability based on this, "Release Enchant", which uses this enchantment to do a Pulse Strike-like attack using the element of the enchantment, though the buff is removed when using this. Yes, you can indeed use this with Magnum Break, if you have the Marine Sphere card. It costs a lot of SP though. - Whitesmith also gains access to Cart Cannon (from Geneticist). You have to craft the cannonballs yourself using a mini-furnace rather than them being buyable, so there's a new passive for "Cannonball Craft" as well. It's no secret that I've long found Whitesmith to be kind of an underwhelming class. I like the idea of it being kind of an offensive support-focused tank, but so much of its skill tree is dedicated to utility skills that it feels kind of underwhelming to use in combat. I think having the new buffs and Cart Cannon helps a lot with this. I had been looking at Cart Cannon for a long time, but it didn't really make sense for Creator, I think it functions far better as a Whitesmith skill. Cannonballs are a bit expensive to get in large numbers (the elemental cannonballs require Flame Hearts and the like), so the main use for them is probably for wiping out boss mobs, which they do pretty well since the damage doesn't divide among the targets. Creator: - As mentioned in another topic, resting a Homunculus puts it back into its Embryo, allowing you to raise multiple Homunculi. - Each of the Homunculi gets a new skill when evolved. Lif gets Eraser Cutter, Amistr gets Stahl Horn, Filir gets Needle of Paralyze, and Vanilmirth gets Steinwand. However, you have to be a Creator to evolve Homunculi (only the Creator can use the Sage Stone). - Bomb and Acid Terror now have 10 levels. Acid Demonstration requires a higher level of these skills to learn. - Alchemist has one new skill in Precision, which is a passive skill that increases hit. At level 5 and 10 it increases the range of skills like Potion Pitcher and Acid Terror by 1. - Creator now has access to four new skills, Crazy Vines, Mandragora Howling, Explosive Spore, and Blood Sucker, all from Geneticist. You can craft the items needed to use these skills using the pharmacy skill and a new book. - Creator also gets Duple Light (from Arch Bishop), which is renamed to Alchemical Weapon and needs a special item to use, which you also create using a new book. Not too much to say about Creator. It's already a pretty solid class. Precision and Alchemical Weapon are mainly there to add a bit more value to the generally ignored Axe Mastery, which serves as the root of this skill path, taking all of these skills can make Creator into a relatively solid auto-attacker now. I also wanted Cultivation to actually do something useful, so it's now the root of the new plant skills tree, which also gives more options besides Acid Demonstration (though that skill is still extremely strong). The biggest change is being able to store the homunculi, which makes them far nicer to use (I eventually got fed up and implemented this after failing like 10 straight times to get a Vanilimirth). Sniper: - Hunter gains access to a new skill, Fear Breeze (From Ranger). It's now a 10-level skill, that has slightly more power than it originally did at level 5. This skill (and all other skills that cause multi-hits, like Double Attack) is now able to critical hit (I actually never knew this wasn't the case until I tested it). This makes the Archer's Bullseye skill a lot more useful. - Hunter's skill tree is significantly refactored so the trap skills make more sense in terms of their prerequisites now (each now only relies on the one above it). - Sniper gains access to 3 new traps, Cluster Bomb, Burning Trap, and Icebound Trap (all from Ranger). These now just consume regular traps rather than special alloy traps. Sniper is another class that is generally very powerful, but also had a lot of skills no one ever used. Fear Breeze is an interesting skill, but it's so underpowered for Ranger that it needed buffs to even be viable as a regular Hunter skill, but now I think it's an interesting part of a trapper or auto-blitz beat build. I also wanted traps to feel more viable, and also for there to be more sources of some of the new status effects like Burning and Crystalize. An interesting note is that Ankle Snare is now harder to get, so you'll have to invest more points into traps if you want that (which you almost certainly still do). Clown / Gypsy: - Bard and Dancer can now normal attack while singing / dancing. - Bard and Dancer songs / dances now affect the user without needing Soul Link, though they drain significantly more SP. - Most Bard and Dancer songs are better. Apple of Idun heals more HP. Fortune's Kiss now raises LUK. Assassin Cross of Sunset now stacks with everything. - Bard and Dancer have a new active skill called "Up Tempo". This is basically an Instrument / Whip version of Two Hand Quicken. - Clown and Gypsy have a new passive skill in "Battle Rhythm", which grants Perfect Dodge while singing / dancing. - Arrow Vulcan has slightly more power, but Dex no longer reduces its cast time. - Clown and Gypsy have a new skill in Sonic Force / Sonic Lash, a melee-range active skill that is different between the two classes. Sonic Force has a knockback effect, while Sonic Lash hits 3 times and can inflict Bleeding. For both characters, this skill gains significant bonus damage from Strength. This can also be used while singing / dancing. - Clown and Gypsy also get the lost skill "Ragnarok". This skill is basically just continuous Meteor Storm, it drops a meteor within the skill's range every few seconds while the song is active. Unlike the original version, it doesn't hit allies. This was an interesting exercise in learning how to program timer skills. The main thing I wanted for Clown and Gypsy was for singing and dancing to feel more relevant, as many people totally ignore this to focus purely on burst damage through Arrow Vulcan. I also wanted to make their normal attack feel more relevant, to emphasize the fact that their new class-exclusive weapons are capable of melee attacks, considering they're mostly used in a near interchangeable way with bows. High Priest: - High Priest has 5 new skills, Coluceo Heal, Cantocandidus, Clementia, Lauda Agnus, and Lauda Ramus, (all from Arch Bishop). - These skills all rely on different Priest buffs to learn. Sanctuary, Magnificat, Suffragium, Kyrie, and Gloria, respectively. - Redemptio is deleted from existence (there's simply too much weirdness involving this skill and exp penalties and the like). High Priest is obviously a very good class, but it often feels like you don't really have a lot of options for build diversity. Having these new buffs rely on some of the lesser used buffs creates a lot more variety in terms of different builds for this class. Champion: - Monk has a completely new skill in "Status Barrier", which provides a one-time block against bad status. - Zen's cast time is no longer affected by Dex. - Champion gets three new skills in Crescent Elbow, Ride The Lightning and Howling of Lion (all from Sura). Ride the Lightning is an almost completely new skill. It now teleports to the target, similar to Snap, has a chance to inflict Stun, and also grants Combo status, allowing Chain Combo to be used immediately afterwards, followed by the rest of the chain if you have enough spirit spheres. This is probably the coolest skill ever. Champion is a pretty good class with a decent number of options. I like the new Status Barrier skill as a way for the class to give a little more PVE support, considering it does branch from a support class. Ride the Lightning is there to give a bit more power to combo-based Champion, and honestly I just think it's super cool. Howling of Lion is mostly there to prevent the newly buffed Bard and Dancer skills from being too strong, and Crescent Elbow is basically just something that's interesting and different. High Wizard: - Napalm Vulcan is now a 10 level skill, but at max level it does more hits and does more damage than it used to. - Gravitation is a mix of its old and new versions. It has the new proper damage from the new formula, but it also applies the reduced Attack Speed debuff from the old version. - High Wizard has a totally new skill in Ancient Curse. This is an Undead Element spell that can inflict the Curse status. Unfortunately, a ton of enemies also have this spell. High Wizard is another one of those classes that originally only had one relevant skill, in Amplify Magic Power. It's a very good skill, undoubtedly, but it still felt a bit dull. With Napalm Vulcan now being a proper nuke (albeit, not against Neutral armor) and Gravitation being a pretty relevant debuff, it now feels pretty good. Ancient Curse was mainly just added because I wanted more sources of Undead damage in the game, currently only like 2 enemy-only spells hit that element. On my server, Undead always hits Neutral armor for 100% damage (unlike dark, which is resisted at higher levels), so it's a very reliable element even if it isn't super strong. Professor: - Memorize now affects the whole party. - Autospell can cast more spells, like Storm Gust and Lord of Vermillion (you need equipment or to be a Super Novice to take advantage of this, though). - Sage has a totally new spell in Poison Splash (as shown before) - Professor has two new spells in Arrullo and Kyomu (from Sorcerer and Kagerou, respectively). These are renamed to Sleep Mist and Disable. Professor was another one of those classes that always felt underwhelming in the past, with the main appeal simply being Double Bolt. I discussed previously about the changes to autospell, which make the class feel a lot better, but I figured it would also probably need a little bit of help against magic reflect, which it is otherwise completely helpless against (Wizard at least has ground target spells it can use, the only one Professor has is Heaven's Drive). Arrullo is mostly just there because I wanted something that could inflict Deep Sleep. Whew, this was long. I've already talked a lot about the other classes previously, but I guess I can quickly touch on one new skill for Soul Linker, which is called Eskon. It's a rebirth-only skill that deals damage based on the number of debuffs on a target, which it also removes after it hits. It can hit very hard if a target is very significantly debuffed, and many of the other Es- skills are debuffs, so it presents kind of an alternate combo route if you want to use those skills instead. Also, you get to blow people up. Poor, poor Lunatic.
    1 point
  6. Version 1.0

    1120 downloads

    High Class Mall Free & Improved An amazing and improved map for totally free. All spaces and walkable cells are completly working. It has 3 sections for many NPCs locations and also a big and cool statue in the center. You can have a cool map like this totally free, i asked my friends "why not release it for free?" and my friend said that if i wish i can released for everyone, i didn't pay for it, yup my friend it's so cool o:! Please feel free to report any bug. Also check this cool links to make sure you won't have any problem when adding the map. http://rathena.org/wiki/Custom_Maps http://rathena.org/board/topic/53424-weemapcache/ Rules: You can't sell this file You can edit this file You can share this file You can mod this file (adding or removing stuff) Well, i hope you guys will enjoy this!
    Free
    1 point
  7. Version 1.0

    803 downloads

    A cool map in which you can organize events or mini-games. This map is an edit of an official ragnarok map. You can find all my other maps, on my post: http://rathena.org/board/topic/75533-aegir-creations-mapping-services/
    Free
    1 point
  8. Version 1.0

    3108 downloads

    DISCLAIMER: I DO NOT TAKE ANY CREDIT ON THIS. I AM MERELY BACKING UP HER FREE WORKS TO PRESERVE THEM. Note: The preview screenshot only contains 2 of the maps provided in this package, not all of them. Original Author: Najara This is a collection of town maps already released for free in eAthena from a great mapper known as Najara. I'm uploading her package of maps to preserve them so we can still use them when her original links expire. This package contains every one the of maps provided by him based on free releases ONLY. The package you receive is AS IS. I will not provide support on it. So if you're missing mini-maps and what not, you can make them yourself using BrowEdit and a little bit of MS-Paint. The following maps this package contains is: Crystilia Welgaia Flaris Jazeera Altzibar Lunette
    Free
    1 point
×
×
  • Create New...