Jump to content

Event & Game Releases

Sign in to follow this  

Scripts that signal players to join an event at a specific times or often use a map, or an instance map to help players farm items.
Example: Clucker event, Disguise event, Gold room, MvP room, Chess script

73 topics in this forum

    • 27 replies
    • 8667 views
  1. Slot Machine 1 2

    • 27 replies
    • 10173 views
  2. Variant Mining 1 2

    • 25 replies
    • 13330 views
  3. World of Fishing 1 2

    • 25 replies
    • 11233 views
  4. Item Shower

    • 24 replies
    • 8336 views
    • 22 replies
    • 6454 views
    • 20 replies
    • 7961 views
    • 20 replies
    • 4450 views
    • 20 replies
    • 8885 views
  5. Fight Your Clone

    • 18 replies
    • 7907 views
    • 16 replies
    • 6361 views
    • 16 replies
    • 30764 views
    • 15 replies
    • 7028 views
  6. Endless Cellar

    • 15 replies
    • 5185 views
  7. Hercules Invasion

    • 14 replies
    • 7566 views
  8. Infinite Space

    • 12 replies
    • 3171 views
  9. Event Manager

    • 11 replies
    • 3917 views
  10. Sarah And Fenrir

    • 11 replies
    • 7143 views
    • 10 replies
    • 3395 views
    • 10 replies
    • 2994 views
  11. Morse Cave

    • 10 replies
    • 3314 views
    • 10 replies
    • 3843 views
    • 9 replies
    • 3704 views
  12. Official instances

    • 9 replies
    • 4532 views
  13. Sub Class System

    • 8 replies
    • 3927 views
Sign in to follow this  
  • Featured Topics

  • Latest Commits

  • Topics

  • Posts

    • Hey!Β  I attempted to edit it using the GRFEditor but was unable to do so. Then, by hand, it showed me some errors when I tried to compile it. How did you do it? I even tried to decode it to JSON using the RagLite tools, but got stuck from there...Β πŸ˜”
    • I'm sorry, but in 2025, it's possible to find this script, but the search doesn't yield any results. It's a very interesting work, and I'd like to take a look.
    • Good afternoon! Β  I understand that this post is very old, but I've been looking for a long time to add a rain effect to my server. In earlier versions, it was available, but I'm wondering if anyone has any information on how to implement it. Β  Please forgive my English.
    • [ Q ] How to show item ICONS inside NPC dialogue (Hercules)? [ A ] Use item *links* in your messages: getitemlink(<item_id>) ──────────────────────────────────────────────────────── REQUIREMENTS (client-side) ──────────────────────────────────────────────────────── 1) A client that supports item links (any modern 2014+ client is fine). 2) When diffing your client (e.g. NEMO), enable: Β  Β - β€œEnable Item Link” (sometimes named β€œEnable Monster & Item Link”). Β  Β That’s it β€” no custom LUA needed. Β  Note: Zeny does not have a built-in icon in dialogue; only items do. Β  ──────────────────────────────────────────────────────── MINIMAL HERCULES NPC EXAMPLE ──────────────────────────────────────────────────────── prontera,155,180,4Β Β  Β scriptΒ Β  Β ItemIconDemoΒ Β  Β 4_F_KAFRA1,{ Β Β  Β mes "Required materials:"; Β Β  Β mes " Β ^000000* 100,000 Zeny^000000"; Β Β  Β mesf(" Β ^000000* %d x %s^000000", 10, getitemlink(984)); Β // Oridecon Β Β  Β mesf(" Β ^000000* %d x %s^000000", 50, getitemlink(7063)); // Lower Weapon Stone (example id) Β Β  Β mesf(" Β ^000000* %d x %s^000000", 25, getitemlink(7064)); // High Weapon Stone (example id) Β Β  Β mes "Would you like to salvage it?"; Β Β  Β next; Β Β  Β switch(select("Yes:No")) { Β Β  Β Β Β  Β case 1: Β Β  Β Β Β  Β Β Β  Β mes "You chose ^00AAFFYes^000000."; Β Β  Β Β Β  Β Β Β  Β close; Β Β  Β Β Β  Β default: Β Β  Β Β Β  Β Β Β  Β mes "Come back later."; Β Β  Β Β Β  Β Β Β  Β close; Β Β  Β } } /// NOTES: /// - Replace 7063/7064 with your server’s real item IDs. /// - getitemlink() renders the item name clickable and shows its small icon /// Β  automatically in the dialogue window. /// - You can also use it inside mesf/select strings anywhere you print text. ──────────────────────────────────────────────────────── COMMON PITFALLS ──────────────────────────────────────────────────────── β€’ Using getitemname() β€” this prints only text (no icon). Use getitemlink(). β€’ Old client or diff without β€œItem Link” β†’ icons won’t show. β€’ Expecting Zeny icon β†’ not supported natively; print plain text for Zeny. ──────────────────────────────────────────────────────── Β 
    • Is this rAthena script based ? Try this : --- functionmain.txt (old) +++ functionmain.txt (fixed) @@ function script concurrent_uid { - .@uid = get_unique_id(''); + .@uid = get_unique_id(); @@ function script concurrent_uid_map { - .@uid = get_unique_id(''); + .@uid = get_unique_id(); @@ function script concurrent_uid_registration { - .@uid = get_unique_id(''); + .@uid = get_unique_id(); Just open your functionmain.txt in Notepad++, search for get_unique_id('' and replace with get_unique_id(). That’s the only fix needed for Hercules. Β 
  • Download Statistics

    • Files
      465
    • Comments
      166
    • Reviews
      240

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.