Jump to content

Railgun

Members
  • Posts

    7
  • Joined

  • Last visited

Posts posted by Railgun

  1. Hello Akkarin, thank you very much for the update!! I have a 2019 ragnarok client version on my pc, and i try to extract all files from the downloaded zip, then i run the rsu renewal patcher since i use renewal version. After that, i try to run the game and encounter this error. What should i do? What did i miss?
    Sorry i kinda noob at this, i just want to update my ro to the latest version:))
    and sorry for my bad english:)
    image.thumb.png.37473dfc029347aee2c908dd40a56023.png

  2. Hello everyone, help me i'm newbie here

    Why my ragnarok get force closed while i change my hairstyle at stylist npc? It often happened

    It get force closed after i change my hairstyle to no. 30 and above (custom hairstyle, original max hairstyle is 29), both male and female characters

    1536411792656.jpg.c0c7a57b531d80f7acb89444283e7524.jpg

    Here's my data.grf

    Also i have change my max hair style to the new one in conf/battle/client.conf

    1536411455055.jpg.aedccd543b05adf6421fd78323e382b1.jpg

    Am i do some mistake? or maybe big mistake?

    What should i do?

    • Upvote 1
  3. Hi everyone! I'm newbie here. Sorry for my bad english.?

    I want to ask something about scripting.

    How can i add conversation to npc script if i had a conversation like this:

    Ex: Healer NPC

    [Healer]

    I have amazing healing powers!!
    You look like a person who needs them
    Want some?

     Then appear dialog box with 2 choices "Yes heal me please!" and "No thanks"

    If i choose "Yes heal me please!" he will heal me and give me buff

    And if i choose "No thanks" he will say "Allright, come back if you need a heal."

    Also i had a healer script made by Euphy like this:

    - script Healer -1,{
       
      .@Price = 0; // Zeny required for heal
      .@Buffs = 0; // Also buff players? (1: yes / 0: no)
      .@Delay = 0; // Heal delay, in seconds
       
      if (@HD > gettimetick(2))
      end;
      if (.@Price) {
      message strcharinfo(0), "Healing costs " + callfunc("F_InsertComma",.@Price) + " Zeny.";
      if (Zeny < .@Price)
      end;
      if (select("^0055FFHeal^000000:^777777Cancel^000000") == 2)
      end;
      Zeny -= .@Price;
      }
      specialeffect2 EF_HEAL2;
      percentheal 100,100;
      if (.@Buffs) {
      specialeffect2 EF_INCAGILITY;
      sc_start SC_INCREASEAGI,240000,10;
      specialeffect2 EF_BLESSING;
      sc_start SC_BLESSING,240000,10;
      }
      if (.@Delay)
      @HD = gettimetick(2) + .@Delay;
      end;
      }

    ?

×
×
  • Create New...