Jump to content

Leaderboard

Popular Content

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

  1. These are some examples, I have more than 30 bosses ready, 80 different monsters like mobs and mini boss, between wings, weapons, etc. If you liked it, don't forget to like it, thank you all.
    1 point
  2. Heya, It took me a while to figure out what you were trying to do. You're trying to edit the client aura effect using the NEMO/WARP patch for more aura options, instead of creating custom hat effects from the guide. That's why you don't see a STR file in your folder. Those are two completely different features and you can't really mix them. Now I can't help you if you're going with the first option since those effects are read directly by the client and therefore do not have STR files. You also can't edit them at all besides changing the BMP file. The guide you're following provided you with a zip in step 4 which contains what you actually need for making custom hat effects (not auras). So assuming you've followed the previous steps in the guide, and you defined your new hat effect as this... HAT_EF_Angelic_Aura = 181 //... [HatEFID.HAT_EF_Angelic_Aura] = { resourceFileName = "effect\\angelic_aura\\angelic_aura.str", hatEffectPos = -6, hatEffectPosX = 0, isIgnoreRiding = true, isAdjustPositionWhenShrinkState = true, isAdjustSizeWhenShrinkState = true } You now have two methods when creating a new hat effect: change the textures or customize it. If you're only going to change the textures, which is what most people end up doing, then it's fairly easy. Duplicate the aura from the example in step 4, then overwrite the textures with your own and that's pretty much it. If you want to do more edits and more "fancy" stuff with your auras, then here's an example below: Open an existing STR file (arcana_aura.str, from your guide's example). Do whatever changes you want in the STR. I'm adding a second layer that I duplicated and then used a random texture I found somewhere. Save the file to wherever you want, as long as it matches with your resourceFileName. (I'm ignoring the particle effect on top that they're showing you in the guide, that part is up to you.)
    1 point
  3. prontera,155,181,5 script Sample 757,{ mes "Give me Red Potion."; if (select("Enter", "Cancel") == 1) { if (!countitem(501)) { mes "You dont have it."; } else { TIME_LEFT = gettimetick(2) + (3 * 3600); addtimer (3 * 3600 * 1000), strnpcinfo(3)+"::OnExpire"; warp "prt_fild01", 0, 0; } } close; OnPCLoginEvent: .@time_left = TIME_LEFT - gettimetick(2); if (.@time_left > 0) { addtimer (.@time_left * 1000), strnpcinfo(3)+"::OnExpire"; } end; OnExpire: TIME_LEFT = 0; warp "prontera", 155, 181; end; }
    1 point
  4. Version 1.0.0

    782 downloads

    Addition/Modification at Source - Announcement and Log system when dropping MvP/Mini-Boss Card - Advertises globally when dropping a MvP or Mini-Boss Card regardless of the drop_rate and saves a log in the database. NOTE1: Announces and saves the log of MvP/Mini-Boss cards only. NOTE2: All settings can be accessed in the `conf/battle/drops.conf` file. Use - For those who have difficulty placing just to announce the drop of MvP/Mini-Boss cards without having a conflict of drop_rate. - In addition to advertising, you can also save a log each time one of these cards is dropped to use as tracking. - There is also an extensive way of configuring the system, being able to turn it off completely or activate only the advertisement or only the log. General System Settings - Enable or disable the entire system. MvP Card Settings - Enable or disable MvP card drop and log announcement system only. - Enable or disable MvP card advertising only. - Enable or disable MvP card logging only. - Choose the color of the MvP card drop ad. Mini-Boss Card Settings - Enable or disable only the Mini-Boss card drop and log announcement system. - Enable or disable Mini-Boss card advertising only. - Enable or disable Mini-Boss card logging only. - Choose the color of the Mini-Boss card drop announcement. NOTE3: Sorry for the English, I used Google Translator and this is my first topic here.
    Free
    1 point
×
×
  • Create New...