Jump to content

Functor

Members
  • Content Count

    34
  • Joined

  • Last visited

  • Days Won

    10

Reputation Activity

  1. Like
    Functor reacted to Ai4rei in Elurair, v2.14.0.369 - last updated 2024/04/14   
    Elurair Patching Launcher
    (RO Patcher Lite+ROCred Merge)
     

     
    About
    Universal auto-patcher for all your updating needs combined with a launcher, which is fully skinnable, highly customizable and easy on resources. It is free of any cost and works on every 32-bit and 64-bit Microsoft* Windows* platform. How this came to be: Future of ROCred and RO Patcher Lite
     
    Known Issues
    None.
     
    FAQ
    Q: Does the patcher support encrypted GRFs?
    A: Yes, common GRF encryption schemes are supported.
    Q: Can I use the Patcher part without the Launcher part?
    A: Yes, the Launcher mechanics and UI can be disabled in configuration.
    Q: Can I use the Launcher part without the Patcher part?
    A: Yes, remove all Patcher sections from the configuration.
     
    Download & Website
    http://ai4rei.net/p/skal
     
    License

    This work is licensed under a Creative Commons Attribution-Noncommercial 4.0 International License.
  2. Like
    Functor reacted to Ai4rei in RAGP Extractor, v1.0 - last updated 2021/12/27   
    RAGP Extractor

     
    About
    Rudimentary command-line tool to extract RAGP files (such as the assets in Ragnarok: Valkyrie Uprising).
     
    Usage
    unragp <file> Extracts <file> into current directory.
     
    Known Issues
    Because I wrote it on a whim to check out Ragnarok: Valkyrie Uprising game resources, there are no error messages. Either the program ends in OK or NG.
     
    Download
    Find attached. Source for reference: https://github.com/ai4rei/unragp
     
    License
    CC0 1.0 Universal
    2021-12-27ragp-1.0.zip
  3. Like
    Functor reacted to Ridley in Behold, 2021 is coming   
    The New Year is the perfect occasion to appreciate all the good things that the past year has given you and all the good things that are yet to come. In the past 365 days you have experienced beautiful moments in spite of any hard times in 2020, and they wouldn’t have been quite the same without all of the special people in your life.
    Convey your warmest New Year wishes and show your friends and family you put some extra thought into wishing them the happiest of New Years with the perfect sentiment. Cheers to successes. Cheers to failures. And cheers to those who helped you make your year what it was.
     
    We always overestimate the change that will occur in the next two years and underestimate the change that will occur in the next ten.
    -Bill Gates
  4. Upvote
    Functor reacted to Ai4rei in RO Open Setup, v3.1.0.627 - last updated 2023/11/18   
    Updated to 2.14.2, adds /mable and /zoom, updates Japanese and Russian translation and fixes UI glitches and a bug in logging.
  5. Upvote
    Functor reacted to Neo-Mind in WARP - A successor to NEMO   
    Happy Thanksgiving everyone. Since I couldn't get the turkey, I thought I would bring this instead. 
    Without further ado, Let me introduce...

    WARP (Windows Application Revamp Package)
    Why this name?
    Because I like using acronyms and this name sounded apt. Plus it's the function & features that matter more.
    And no, I am not gonna change the name.
      Why not just fix up NEMO?
    The codebase for NEMO is pretty much ancient at this point. So rather than fixing it up, I decided to go the route of creating it fresh from scratch. The end result is a far superior product. 
      OK, but what if you end up AFRO (Away From RO)again?
    Well, I can't promise that I will be around forever. However, this time around, I am releasing the source code for the tool as well.
      So, exactly what has changed?
    Well, quite a few things. Let's start off with how the GUI looks now.

      As you can see, the GUI is much more modern and aesthetically pleasing thanks to @Haziel & @Hadrias.
      The package comes with 3 tools - Console version (for simple patching), Main GUI, and Tester GUI (for batch testing).
      A big salute to @4144  for keeping NEMO alive while I was AFRO 😄.
    Ok, jokes aside, I discussed with him about the changes he made and I have incorporated almost all of them but with some differences. 
      Language & Styles are now on the bottom as you can see. All the remaining menus have now been shifted to drawers (moving side panels). To reveal them you can either swipe from the respective edge or click the button at the top. 
      The right side drawer houses all the Extensions (Used to be called 'Addons' in NEMO).
    They are now loaded independently of the client. This avoids unnecessary redefinitions and now you can also use Extensions for activities that don't need a loaded client.
      All the common functions have been added to the 'Quick Actions' group and all the remaining ones are in the left drawer, which is not many. If you have suggestions for more features let me know.

    Moving on to the Back end (This is of no use to the regular user. So you can skip this part if you want)
      It was high time for us to have a proper input file format. Enter YAML. Love it or hate it but it's here to stay.
    Frankly, I like it more than libconfig and INI. You would be seeing YAML being used for almost every file in WARP.
    This includes input files for Patches & Extensions, Files defining those two, Session files, etc.
      Writing patches is far more flexible now. Say goodbye to PTYPE_HEX and \xAB. Now we can do wild card searches with the actual wild cards inside hex codes. Of course, we still need to have some well-defined characters for that.
    Currently, we have 2 forms of wildcards - Nibble wise - For e.g. => A?, ??, ?3 Bit wise - For e.g. => [1.0...01] 
      If you have any suggestions about it let me know.
      Speaking of writing hex code, I have provided functions looking almost identical to Assembly instructions for generating their equivalent hex code. This helps in making the hex code more human-readable and adds a little more flexibility.
      User inputs have a few more types and little more flexibility in specifying constraints now. 
      Scripts have proper segregation now. Please follow them when adding your own.
    Only the scripts inside the 'Init' folder gets reloaded each time the client is loaded. This avoids unnecessary reloads.
      exe has now become 'Exe'.  But in addition to this, you get 2 more objects - System (for filesystem activities) & Warp (whatever is outside the scope of the other two)
      Many of the functions used for retrieving some constant information in the 'Exe' have become properties now. For e.g. PEoffset, ImageBase, BuildDate, etc.

      During patching, the Diff section is only added if you have inserted any code using one of the 'Add' functions. Also, the Diff section now grows dynamically as per requirement (in increments of Section Alignment of course).
      In addition to the Patched Exe, The tool also generates an (Extra Patch Info) file with the suffix '.epi'. It holds just enough info for the tool to recognize existing patches in an exe from a previous patch session. 
    So how is it useful? Let's say you have a patched client and its EPI file. But you don't have the original anymore.
    Now you can remove 1 or 2 patches and keep the rest OR even restore the original from the patched exe.
      Last, but not least, I am providing documentation about everything including the API. But bear with me for a bit, as I am still working on the documentation part.
      I probably forgot more points to add here, but I think this pretty much covers the important stuff. Anyway, the documentation would be pretty comprehensive.
      Is it ready to be used now? The tool is definitely ready. I have added most of the patches but not all just yet.
      But I was not able to test all the patches in-game. So please don't attack me if something failed.
    I would appreciate a Bug Request in Github instead.
      Also note, that some patches are still failing for new clients, and some failing for old ones. However, I saw the same behavior in NEMO, so that would be part of the next stage of operations - Updating Patch scripts.
      So, where do I get it from?
    https://github.com/Neo-Mind/WARP
      How to use it?
    There is a User Guide in the git repo (best viewed from Github itself). Everyone is used to NEMO by now, so it shouldn't be difficult to use this even without the guide. Plus the Github wiki is pretty detailed. 
      Any last words before we close this?
    Just like in the case of NEMO, my intention with WARP is to create a common tool for patching without being restricted to RO or which OS you use it in. For this reason, you will be seeing multiple branches in the Git repo.

    If you are planning to use WARP for patching some other application, Create a branch using the 'win32' branch as a starting point.


    That's about it from me for now.

     
  6. Like
    Functor reacted to Promeister in Mult shots Sonic blow and vulcon arrow   
    This has nothing to do with gepard.

    You can edit this in the skill.db file.
  7. Like
    Functor got a reaction from evilpuncker in OPENKORE BOT Server config   
    You choose the wrong forum to ask it.
  8. Like
    Functor reacted to Inzanity in How to check Skill ID's Client-Side   
    Brd / dancer was reworked after 2018-11-21b client.
    They no longer cast auras and instead apply Party buffs with a cast time. (thats why you have missing song effects and only see a cast animation)
    Gepard Shield has a function to restore this if you order his product.
    Else you can use a client up to 2018-11-21b.
     
  9. Like
    Functor got a reaction from Litro in Old Character Creation   
    I'm happy for you if you have so high skills and it isn't just in words.  But what is the sense to inform about it if you aren't going to help Khonsu? As I see you even created account to tell about it. It was very useful info for the community. Please, keep us informed. 
    P.S. I can go into space in a couple hours easily, but I will not do it. 
  10. Like
    Functor reacted to 4144 in New hercules feature: Expanded barter shop   
    From last release in hercules was added new shop type: expanded barter shop.
    This shop allow buy item with different amount and pay with other items or with money. For removed items supported refine levels.
    Also this shop allow infinite or limited numbers in shop. Limited numbers saved into database.
     
    For use shop example script uncomment in file npc/scripts_custom.conf this line:
    //"npc/custom/expandedbartershop.txt",  
    This shop supported from clients:
    Ragexe: 2019-11-20 and newer
    RagexeRE: 2019-11-06 and newer
    Ragexe zero: 2019-11-27 and newer
     
    Same sample images:

     

     
  11. Like
    Functor reacted to Ridley in kRO Patch - 2019-12-18   
    Contents
    1 Original Patch Notes 2 Translated Patch Notes 3 References Original Patch Notes
    안녕하세요.
    (주)그라비티 라그나로크 온라인 운영팀입니다.
    12월 18일(수) 정기점검 시간 및 업데이트에 대한 안내입니다.
    ■ 점검시간
    - 전 서버 : 10:00 ~ 18:00 15:53(완료) ※ 점검시간 중 (10:00 ~ 13:00) GNJOY 시스템 점검이 진행되어 일부 서비스 (로그인, 웹몰, 캐시충전)가 중단됩니다.
    ■ 공통 패치내용
    - 도전하라! go 이벤트가 진행됩니다. → 글래스트헤임 EVENT MODE: 오염된 난이도가 오픈됩니다. > 사신 NPC(glast_01 142 372)을 통해 입장 가능하며, 한번 클리어 한 경우 다시 입장할 수 없습니다. → OSC0005 인챈트 비용이 50% 감소됩니다. → HUGINN2001을 이용하여 [봉인된 시간의 서클릿] 정화 시 "시간의 마력", "시간의 보석 원석" 등장 확률이 2배 증가합니다. → 기간: 2019년 12월 18일 정기점검 후 ~ 2020년 1월 22일 정기점검 전 - 라그나로크 多DREAM 이벤트 달력 쿠폰 보상 상자에 삭제날짜가 명시됩니다. → 게임 내 각 월별 아이템 상자의 경우 2020년 첫번째 정기점검 시 일괄 삭제됩니다. - 냥타임의 [비매품]전투교범&풍선껌 아이템 교환 방식이 보다 직관적으로 변경됩니다. → 냥타임(malangdo 208 163, moc_para01 29 171) - 일루전 헌터보우 일부 옵션이 잘못 적용되던 현상이 수정됩니다. - 일부 지역에 겨울 눈꽃 이벤트 BGM이 적용됩니다. ■ 본 서버 패치내용
    - 타나토스 타워 개편 및 메모리얼 던전이 추가됩니다. → 타나토스 타워 상층 진입부 계단에서 루민(thana_step 154 367)을 통해 입장할 수 있습니다. → 레벨 제한: Base Lv 180 이상 → 인챈트 NPC 타밀라(tha_t01 135 83)가 추가됩니다. → 일일 퀘스트가 추가되며, 타나토스 타워 1층의 솔리스(tha_t01 161 78)에게서 수령이 가능합니다. - 모험가 중개소 시스템이 업데이트 됩니다. → 모험가 중개소의 팁박스가 추가됩니다. - 제네릭 직업군의 일부 스킬 습득이 불가능한 현상이 수정됩니다. → 제네릭의 스킬이 일괄 초기화됩니다. → 알케미스트 계열의 스킬&스테이터스 초기화 NPC가 등장합니다. → 기간: 2019년 12월 18일 점검 후 ~ 2019년 12월 24일 점검 전 → 위치: [geffen 142 203] 위치의 복화술사 NPC를 찾아가보시기 바랍니다. → 효능: 이용 비용은 무료이며, 무제한으로 초기화가 가능합니다. ※ 알케미스트 계열만 스킬&스테이터스 초기화 이용이 가능합니다. - 아지트 투자전이 종료되며, 길드던전 1층, 2층, 심연의 회랑은 상시 이용이 가능하도록 변경됩니다. → 고양이손 상단 각 공성 지부장NPC가 삭제되고, 근처에 위치한 게이트담당자 NPC의 역할이 확대됩니다. → 게이트 담당자 NPC를 이용하여 각 지역 길드던전 1층, 2층, 심연의 회랑으로 이동할 수 있습니다. → 각 던전별로 이동 시 5만/10만/50만 제니가 소모됩니다. → 게이트관리자 NPC의 아지트 투자전 내용이 제거됩니다. → 아지트를 점령한 길드원은 게이트 담당자, 게이트 관리자 NPC의 무료 이용이 가능합니다. → 투자 감사 티켓, 고양이 손 상단 투자증서가 삭제됩니다. → 말랑도의 감사티켓자판기, 행사담당 나미스 NPC가 삭제됩니다. → 심연의 회랑에 등장하는 일부 몬스터의 드랍리스트가 추가 및 변경됩니다. - 겨울 프로모션 경험치 증가 이벤트가 종료됩니다. → 낙원단 경험치 증가 이벤트가 종료됩니다. → 일루전 보상 경험치 증가 이벤트가 종료됩니다. - 카츄아 확률증가 이벤트가 종료됩니다. - 버프표시창이 스킬 효과에 가려지는 현상이 수정됩니다. - 크로운의 "썰렁한 농담" 스킬 모션 속도가 비정상적으로 적용되던 현상이 수정됩니다. - 구매 노점 아르바이트에 물품 등록 시, 구매 한도액에 수수료가 포함되도록 변경됩니다. - 풍마수리검 장착 후 기본 공격 시 무기 스프라이트가 출력되지 않는 현상이 수정됩니다. - 길드창을 ESC 단축키로 종료 시 활성화되어있는 엠블렘 편집창이 종료되지 않는 현상이 수정됩니다. - F11 단축키로 메모리얼 던전 팝업창을 닫은 경우 다시 불러오기가 불가능한 현상이 수정됩니다. - 일부 아이템 교환 재료에 슬롯칸이 보이는 현상이 수정됩니다. - 파라마켓에서 일정 개수 이상 아이템 구매가 불가능하던 현상이 수정됩니다. ■ 사크라이 서버 패치내용
    - 특정상황에서 성제의 오오라가 다른 플레이어 화면에 확인되지 않는 현상이 수정됩니다. - 특정상황에서 권성의 "태양과 달과 별의 융합" 상태가 다른 플레이어 화면에 확인되지 않는 현상이 수정됩니다. - 의상 동그란 눈동자 착용 후, 헤어 변경 시 헤어스타일과 눈동자가 비정상적으로 보이던 현상이 수정됩니다. - 장비창의 칭호 탭에서 일반 장비 해제가 가능한 현상이 수정됩니다. - 내비게이션의 현재 위치 공유 기능이 일부 상황에서 비정상적으로 적용되는 현상이 수정됩니다. - 리플레이 재생 시 인벤토리 아이템 리스트가 비정상적으로 보이는 현상이 수정됩니다. 점검 내용을 숙지하시어 이용에 차질 없으시길 바랍니다.
    감사합니다.

    (주) 그라비티 라그나로크 온라인 운영팀


    Translated Patch Notes
    Hi.
    Gravity Ragnarok Online Operation Team.
    Wednesday, December 18 Information on regular maintenance time and updates.
    ■ Inspection time
    - All servers: 10:00 ~ 18:00 15:53 ​​(Completed) ※ During the inspection time (10:00 ~ 13:00) GNJOY system check is in progress and some services (login, web mall, cash charging) are stopped. ■ Common Patch Contents
    - Challenge! The go event is in progress. → Glastheim EVENT MODE: Contaminated difficulty will open. > You can enter through Reaper NPC (glast_01 142 372), and once you clear it, you cannot enter again. → OSC0005 enchant cost is reduced by 50%. → When using [HUGINN2001] to cleanse [Circlet of Sealed Time], the chance of "Time Horse" and "Time Gemstonee" is doubled. → Period: After regular inspection on December 18, 2019 ~ Before regular inspection on January 22, 2020 - Ragnarok 多 DREAM event calendar coupon reward box will be deleted date. → Each monthly item box in the game will be deleted at the first regular inspection in 2020. - Nyantime's [Sold Out] Combat Manual & Bubblegum item exchange method has been changed more intuitively. → Nyan time (malangdo 208 163, moc_para01 29 171) - Fixed an issue where some Illusion Hunter Bow options were incorrectly applied. - Winter Snow Event BGM is available in some regions. ■ Patch contents of this server
    - Thanatos Tower reorganization and memorial dungeons are added. → You can enter via Lumin (thana_step 154 ​​367) from the entrance stairs at the top of Thanatos Tower. → Level limit: Base Lv 180 or higher → Enchant NPC Tamil (tha_t01 135 83) is added. → Daily quests will be added and can be collected from Solis (tha_t01 161 78) on the first floor of Thanatos Tower. - Adventurer Agency system is updated. → The tip box of the Adventurer Agency is added. - Fixed a bug where Geneticists couldn't learn some skills. → The Geneticist skills are collectively initialized. → Alchemist skill and status reset NPC will appear. → Period: After inspection on December 18, 2019 ~ Before inspection on December 24, 2019 → Location: Visit the Boxer NPC at location [geffen 142 203]. → Efficacy: The cost is free, you can reset unlimited. ※ Only Alchemist Classes can use skill & status reset. - Ajit investment is ended, the guild dungeon 1st floor, 2nd floor, Abyssal Corridor is changed to be available at all times. → The Siege Chapter NPC at the top of the cat's hand is removed, and the role of the nearby Gatekeeper NPC is expanded. → You can move to the 1st, 2nd, and Abyssal Corridors of each Guild Dungeon using the Gate Manager NPC. → Each dungeon consumes 50,000/100,000/500,000 Zeny. → The Ajit pre-investment content of the Gate Manager NPC is removed. → Guild members who occupy the Ajit can use the Gate Manager and Gate Manager NPC for free. → The investment audit ticket, the top certificate of the cat's hand will be deleted. → Malangdo thank you ticket vending machine, event manager Namis NPC will be deleted. → The drop list of some monsters in the Abyssal Corridor has been added and changed. - Winter Promotion EXP increase event ends. → The Paradise EXP increase event ends. → The Illusion Reward EXP increase event ends. - Katsua probability increase event is over. - Fixed a bug where the buff indicators were obscured by skill effects. - Crop's "Shaky Joke" skill motion speed is incorrectly applied. - When you register an item in a part-time shop, your purchase limit will be changed to include a fee. - Fixed an issue where weapon sprites would not be displayed on basic attacks after being equipped with a Falcon. - Fixed an issue where the emblem edit window would not exit when the guild window was closed with the ESC shortcut. - Fixed a bug where reloading the Memorial Dungeon popup with the F11 shortcut was not possible. - Fixed a slot slot on some item exchange materials. - Fixed a problem where it was impossible to purchase more than a certain number of items in Para Market. ■ Sakray Server Patch Contents
    - Fixed a phenomenon where Holy Aura could not be seen on other player screens under certain circumstances. - Fixed a bug where the "Suspension of Sun, Moon, and Star" status of the Star Emperor would not be visible on other player screens under certain circumstances. - Fixed the phenomenon that the hair style and the eyes look abnormal when changing the hair after wearing the costume round eyes. - Fixed a bug where general equipment can be unlocked from the Title tab of the Equipment window. - Fixed the problem where navigation's current location sharing function is abnormally applied in some situations. - Fixed a bug where inventory item lists would look abnormal when replayed. Please read the details carefully so that you do not have to worry about it.
    Thank you.

    Gravity Ragnarok Online Operation Team
    References
    http://ro.gnjoy.com/news/notice/View.asp?BBSMode=10001&seq=7199&curpage=1
    Retrieved from https://ragnarok.gamepedia.com/RO_Patch_(2019_Dec._18).
  12. Like
    Functor reacted to Jaburak in s1 Lykos - Graphic Designs   
    Latest Projects...






  13. Like
    Functor reacted to Ridley in kRO Patch - 2019-10-30   
    Original Patch Notes
    안녕하세요.
    (주)그라비티 라그나로크 온라인 운영팀입니다.
    10월 30일(수) 정기점검 시간에 대한 안내입니다.
    ■ 점검시간
    - 전 서버 : 10:00 ~ 18:00 17:24(완료) ※ 점검시간 중 (10:00 ~ 13:00) GNJOY 시스템 점검이 진행되어 일부 서비스 (로그인, 웹몰, 캐시충전)가 중단됩니다. ■ 공통 패치내용
    - 2019년 10월 할로윈 이벤트가 종료되며 관련 아이템이 삭제됩니다. → 삭제 아이템: 쿠키뱃, 호박 케이크, 호박파이, 호박 캔디, 트랜스 캔디 레드, 트랜스 캔디 블루, 트랜스 캔디 옐로우 트랜스 캔디 그린, 바싹 마른 하얀 줄기, 장식용 호박, 할로윈 코인, 검은 털, 작은 뼈더미, 잘마른 하얀 줄기 → 의상 듀라한의 가면 이벤트 옵션이 삭제됩니다. - 맹룡과강 이후 잔여 기구체가 1개인 경우 연계 연주붕격 사용이 불가능한 현상이 수정됩니다. - 디펜더 스킬과 헌신 스킬 사용 순서에 따라 중첩 적용되던 현상이 수정됩니다. - 룬 나이트의 드래곤 브레스-수 스킬의 빙결 확률이 비정상적으로 적용되던 현상이 수정됩니다. - 아도라무스 스킬을 오토스펠로 발동 시, SP를 소모하던 현상이 수정됩니다. ■ 본 서버 패치내용
    - EPISODE 17.2 현자의 유산이 업데이트 됩니다. → 선행 조건: 에피소드 17.1 등장 일루시온의 마지막 퀘스트 '순수한 악동' 완료 → 제한 레벨: Base Lv 130 이상 → 시작 위치 : [루키] 특수경계지역 코르 sp_cor 255 285 - 일부 몬스터의 난이도가 변경됩니다. → 글래스트헤임 입구 지상 쁘띠 - 염속성 공격 제거, 속성 공격 데미지 감소. → 게펜 서쪽 필드 공중 쁘띠 - 염속성 공격 제거, 속성 공격 데미지 감소. → 글래스트헤임 지하묘지 다크 프리스트 - 다크 크로스 제거, 속성 공격 데미지 감소. → 모로크의 현신 - 마법 반사 제거, 차원의 균열 내에 염속성 현신 개체 증가. → 타나토스타워 7층 - 감시하는 자, 위로하는 자 개체 수 소폭 증가. → 유노 노그로드 3층 - 폭기 제거, 헬 저지먼트 레벨 하향, 애시드 테러 제거, HP 20% 감소, 경험치 20% 감소, 몹 개체수 소폭 감소. → 일루전 오브 프로즌 - 마법 반사 제거 → 일루전 오브 루안다 - 거석 증표 드롭율 증가, 몬스터 공격력 하향, 폭기 제거. → 글래스트 헤임 어비스 - 파워 업, 어질 업 등 스킬 제거, 몹 개체 수 소폭 증가 → 아인베흐 광산 던전 3층 - 쥬얼리안트 개체수 증가, 화이트 폴셀리오 개체수 증가, 쥬골리안트 스킬 추가. → 데스워드 - 피묻은 책장 드롭율 상승 → 코르누스 - 마력의 뿔 드롭율 상승 → 무명섬 네크로맨서 - 리플렉트 쉴드 제거 → 무명섬 밴시 - 다크 스트라이크 확률 및 데미지 하향. → 일루전 오브 구양궁 - 환각 제거 → 일루전 오브 라비린스 - 바포메트 주니어 환각 확률 감소. → 어비스레이크 4층 - 일반 몬스터 장비 파괴 제거, 애시드 테러 제거 → 일루전 오브 루안다 - 일반 몬스터 데미지 대폭 하향, 스킬 데미지 하향. → 일루전 오브 테디베어 - 일반 몬스터의 스킬 데미지 하향. - 슈발츠발드의 도시 유노, 리히타르젠, 아인브로크, 아인베흐 마을 내 텔레포테이션이 가능하도록 변경됩니다. → 에피소드 15~17.1을 진행하며 슈발츠발드의 기업 레켄베르와 정부간의 알력구도에 변화가 생겼으며, 기업이 약속한 사회 조정 중 하나였던 '이동마법 금지 해제안'이 실현되어 룬미드가츠의 일반 마을처럼 이동이 가능하도록 변경됩니다. - 캐릭터 선택창에서 일부 직업의 전승 의상이 반영되지 않는 현상이 수정됩니다. ■ 사크라이 서버 패치내용
    - 파라마켓 한정수량 아이템이 매진되면 판매 목록에서 사라지도록 변경됩니다. 점검 시간을 숙지하시어 이용에 차질 없으시길 바랍니다.
    감사합니다.

    (주) 그라비티 라그나로크 온라인 운영팀


    Translated Patch Notes
    Good morning.
    Gravity Ragnarok Online Operation Team.
    This is a guide to regular inspection time on Wednesday, October 30.
    ■ Inspection time
    - Previous server: 10:00 ~ 18:00 17:24 (Completed) ※ During the inspection time (10:00 ~ 13:00) GNJOY system check is in progress and some services (login, web mall, cash charging) are stopped. ■ Common Patch Contents
    - October 2019 Halloween event ends and related items will be deleted. → Deleted items: Cookie Bat, Pumpkin Cake, Pumpkin Pie, Pumpkin Candy, Trans Candy Red, Trans Candy Blue, Trans Candy Yellow Trans Candy Green, Dry White Stem, Decorative Pumpkin, Halloween Coin, Black Hair, Small Bones, Well Dry white stem → Costume Dullahan's Mask Event option has been removed. - Fixed an issue where it was not possible to use Combo Strike when there was 1 Remnant Mechanism. - Fixed the phenomenon of stacking depending on the order of the Defender skill and Devotion skill. - Fixed an issue where Rune Knight's Freeze chance of Dragon Water Breath was applied abnormally. - Fixed an issue where SP was consumed when Adoramus skill was cast as an auto spell. ■ Patch contents of this server
    - EPISODE 17.2 Sage's Legacy is updated. → Prerequisite: Episode 17.1 Complete Illusion's last quest, Pure Nerd → limit level: Base Lv 130 or higher → Starting Position: [Rookie] Special Boundary Area Khor sp_cor 255 285 - The difficulty of some monsters will change. → Glastheim dungeon Ground Petit - Eliminates status effect attacks and reduces damage dealt. → Geffen West Field Sky Petit - Removes the attribute attack and reduces the damage dealt. → Glastheim Graveyard Dark Priest - Removes Dark Cross and reduces damage from property attacks. → Morocc Incarnation - Removes magic reflexes and increases the amount of Sacred Outgrowth objects in the Dimensional Rift. → Thanatos Tower 7F - Slightly increased the number of watchers and comforters. → 3rd floor of Juno Nogg Road - Eliminates Fury, lowers Hell Judgment, removes Acid Terror, reduces HP by 20%, experience by 20%, reduces mob population. → Illusion of Frozen - Magic Reflection → Illusion of Luanda - Increased megalithic drop rate, lowered monster attack, and eliminated Fury. → Glastheim Abbey - Removed power-ups, agility-ups, and increased the number of mobs → Einbech Mine Dungeon 3rd Floor - Jewelant population increase, White Porcellio population increase, Ungoliant skill added. → Deathward - Bloody Bookshelf Drop Rate → Cornus - Rise of the Horn of Magic → Nameless Island Necromancer - Reflective Shield Removal → Banshee Banshee - Dark Strike Chance and damage lowered. → Illusion of Abyss - Hallucination → Illusion of Labyrinth - Baphomet Junior Hallucination Chance → Abyss Lake 4F - Destroy Normal Monster Equipment, Remove Acid Terror → Illusion of Luanda - General monster damage down significantly, skill damage down. → Illusion of Teddy Bear - Decrease normal monster's skill damage. - Teleportation will be allowed in the towns of Schwarzwald, Juno, Lighthalzen, Einbroch, and Einbech. → During Episodes 15 ~ 17.1, Schwarzwald's Rekenber Corporation and the government's power structure changed, and one of the company's promised social reconciliation plans was to lift the ban on teleportation magic. Changed to allow teleportation like other towns. - Fixed a bug where some job class outfits would not be displayed in the character selection window. ■ Sakray Server Patch Contents
    - Paramarket limited quantity items sold out will change to disappear from the list. Please be aware of the inspection time so that you will not be disturbed.
    Thank you.

    Gravity Ragnarok Online Operation Team
    References
    http://ro.gnjoy.com/news/notice/View.asp?BBSMode=10001&seq=7180&curpage=1
    Retrieved from https://ragnarok.gamepedia.com/RO_Patch_(2019_Oct._30).
  14. Like
    Functor reacted to Ridley in External Paid Services Special Offers   
    Writing this to share some good offers I use by myself. Neither I am nor Hercules is related to these services.
     
    VPS Availability Check 2019-10-21
    ionos.DE (ionos = 1&1) is offering a good VPS for 1€/month. The website is - as you may thought - in german, but it is simple enough to order it. You need to scroll down and select VPS S. I don't think there is any cheaper service for a small VPS like this.
    1 vCore Intel® Xeon® E5 CPU 512 MB RAM 10 GB SSD 1,– €/Mon. Website: https://www.ionos.de/server/vps
    Google Translated: https://translate.google.com/translate?hl=de&sl=de&tl=en&u=https%3A%2F%2Fwww.ionos.de%2Fserver%2Fvps

     
    VPN Availability Check 2019-10-21
    Windscripe is offering a free VPN Service with 20gb/month traffic for lifetime.
    You need to register an account, then go to your accounts status tab and use the code FACTORY2

    Free servers to use:
    US Central US East US West Canada East Canada West France Germany Netherlands Norway Romania Switzerland United Kingdom Hong Kong I used it by myself a few times and got usually 80/20 mb/s (out of my usual 100/40).
    ____________________________________________________________________________________________
    OkayFreedom VPN
    OkayFreedom is offering a 1 Year free premium subscription. Simply input your email adress in the coupon link below and you will receive a code to redeem it. I did not check for the available servers location.
    Website: https://www.okayfreedom.com/en
    Google Translated coupon:  https://translate.google.com/translate?sl=auto&tl=en&u=https%3A%2F%2Fwww.okayfreedom.com%2Fspecials%2Fchip1219%2Fof
    Webhosting Availability Check 2019-10-21
    To be clear: You get what you pay for - Well, nowhere else in the tech business this is truer than with web hosting, but sometimes you just need one for... well, whatever you want/need to do. Be aware there is NO free webhosting provider without security issues and you should NOT use them for a live server.
    Infinity Free https://infinityfree.net/ Free SSL certificate with all plans No front-end ads Free Cloudflare CDN 10 email accounts 1 FTP account 400 MySQL databases. Byethost https://byet.host/ 5GB Disk Space FTP account and File Manager Control Panel MySQL databases & PHP Support Free tech support Unlimited Addon domain, Parked Domains, Sub-Domains Free Community Access (Forums) Clustered Servers No ads https SSL on all free hosting domains. (self signed certificate)
  15. Like
    Functor reacted to Jaburak in s1 Lykos - Graphic Designs   
    Latest Projects...





  16. Like
    Functor reacted to Ridley in September Digest 2019   
    September Digest 2019
    The following digest covers the month of September 1st - September 30th 2019

    Team Changes
    None Added
    Added/updated packets, encryption keys and message tables for clients up to 2019-09-18. (#2528) Added the `@changecharsex` command, to change a character's sex. (part of #2528) Added support for clan names in the name packets. (part of #2528) Added support for multiple Token of Siegfried item IDs. (#2515) Added support for the new guild UI features in the client. (#2519) Added per-item scriptable start/end rental functions, replacing the previous hardcoded functionality. See the new item DB fields `OnRentalStartScript` and `OnRentalEndScript`. (#2462, issue #140) Added the `getfont()` script command, to check the player's current chat font. (part of #2462) Added support for gcc-9 by disabling the array bound checks until the `ZEROED_BLOCK` related code will be fully compatible (#2536) Implemented the LapineDdukDdak System. (#2336) Implemented the Library Mistake Quest, allowing players to bypass the rebirth costs. (#2532) Changed
    Converted `sc_config` to libconfig. A tool to convert from the old format has been provided in `tools/scconfigconverter.py`. (#2526) Converted packet `ZC_TALKBOX_CHATCONTENTS` into a struct. (part of #2528) Extracted homunculus experience gain message code to a separate function. (part of #2528) Changed function arguments to type `enum battle_dmg_type` where applicable. (part of #2528) Changed pets, homunculi, etc. not to be loaded when autotrading. (part of #2524) Changed the guild castle IDs order to match the client's. (#part of #2519) Converted the item combo DB to libconfig. A tool to convert from the old format has been provided in `tools/itemcombodbconverter.py`. (#2529) Changed some remaining symbols to `static`. (part of #2536) Updated the gitlab-ci builds to reflect the release of Debian 10 buster. Gcc-8 is now the primary compiler used for the gcov, asan and i386 builds. (part of #2536) Increased the maximum allowed item ID to int32 max, for clients supporting it. (part of #2336) Fixed
    Fixed packet `ZC_ACK_RANKING` on old (2013 and earlier) clients. (part of #2528) Fixed an issue preventing homunculus auto-vaporize on death or skill reset, when the 80% HP condition isn't met. (#2524) Fixed a bug that caused homunculi's HP and SP to be refilled on every login instead of just on creation. (part of #2524) Fixed the intimacy requirement check for the homunculus ultimate skills. (part of #2524) Fixed the MVP tombstones causing players to get stuck if they were reading their message when the MVP respawns. (#2525) Fixed the MVP tombstones showing their message multiple times when clicked. (part of #2525) Fixed some incorrect examples of use of `while (select(...))` in the script documentation. (#2533) Corrected the item ID used by the KVM Logistic Officer. (#2527, issue #2404) Fixed several subtle issues caused by the nick partial match feature, when enabled. Now the partial match is only performed for lookups requested by atcommands and client features, while a full match is used for source and script lookups. (#2523) Rewritten the `itemdb_searchname_array` function, now properly supporting the items with IDs greater than 65535. (#2535) Fixed support for items with IDs greater than 65535 in the constdb2doc plugin. (part of #2535) Fixed a minor C standard compliance error, mixing function pointers and non-function pointers. (part of #2536) Fixed the (commented out by default) custom Venom Splasher countdown timer code. (part of #2536)  
    Special thanks to
    @Haru @4144 @Asheraf @skyleo @Emistry @hemagx 
  17. Like
    Functor got a reaction from Relzz in OPENKORE BOT Server config   
    You choose the wrong forum to ask it.
  18. Like
    Functor got a reaction from Virtue in OPENKORE BOT Server config   
    You choose the wrong forum to ask it.
  19. Like
    Functor got a reaction from San in Nemo patcher   
    @San @4144
    This is a typo in the script file.
    Open ../Patches/AllowSpamSkills.qs and change:
    "3B D8" + // cmp ebx, ebx to:
    "3B DB" + // cmp ebx, ebx  
  20. Like
    Functor got a reaction from IndieRO in Nemo patcher   
    @San @4144
    This is a typo in the script file.
    Open ../Patches/AllowSpamSkills.qs and change:
    "3B D8" + // cmp ebx, ebx to:
    "3B DB" + // cmp ebx, ebx  
  21. Like
    Functor reacted to Relzz in OPENKORE BOT Server config   
    ayy, wrong forum buddy 
    (and the anticheat guy replies to you, epic)
  22. Like
    Functor got a reaction from bWolfie in OPENKORE BOT Server config   
    You choose the wrong forum to ask it.
  23. Like
    Functor got a reaction from imbadudelz in How to run my server under gdb   
    You should read about "screen". You can start login and char servers with "screen".
     
  24. Like
    Functor got a reaction from Ridley in OPENKORE BOT Server config   
    You choose the wrong forum to ask it.
  25. Upvote
    Functor reacted to jTynne in This made me pop in!   
    Was riding home from my studio this evening and sighted this license plate, and was immediately compelled to pop in and say, “Hello!”
     
    👍🏽

×
×
  • Create New...

Important Information

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