Jump to content

Fou-lu

Members
  • Content Count

    141
  • Joined

  • Last visited

  • Days Won

    1

Fou-lu last won the day on March 25

Fou-lu had the most liked content!

About Fou-lu

  • Rank
    Advanced Member

Profile Information

  • Github
    Pedro

Recent Profile Visitors

3040 profile views
  1. Pasta data não basta pegar o do BRO que já está traduzido?
  2. https://www.serenitywall.com/ Does anyone know or use this service? Does it make sense to purchase such a service? For hosts that already offer DDOS protection, does it still make sense to purchase a service like this? What do you think about this service?
  3. My goal is to take a map and edit it in BrowEdit to just rotate it. Making your east into south and west into north. Editing the minimap is simple, so this is not a question. My point is really how to do this with the map. Would anyone have any tips?
  4. Now it's perfect. The menu background is: data\texture\À¯ÀúÀÎÅÍÆäÀ̽º\menu_icon\bg_menu.tga For the record, I managed to solve this problem using this patch. Now all unwanted windows won't open even by shortcut. https://nemo.herc.ws/patches/DisableWindows/
  5. Thank you very much. Worked perfectly. Do you mean patching NEMO or editing image files in the game files?
  6. I haven't tested my change, if it generates an error and doesn't work correctly, I believe the intention was clear in the script for you to continue with the change, if you still can't get back to me here with the error so I can try to correct it. Change this part of the script: // Present a list of available bonuses. mes(.@name$); mes("Which of the following item bonuses would you like to add to this item?"); next(); // Build the Options! .@menu$ = ""; for (.@i = 0; .@i < getarraysize(.options$); ++.@i) .@menu$ += (.@i + 1) + ") " + .options$[.@i] + ":"; do { // Select the options! .@option_variable = select(.@menu$); next(); mes(.@name$); mesf("You chose ^009900%s^000000!", .options$[.@option_variable - 1]); mes("Are you sure?"); next(); } while (select("Fo Shizzle.", "I'ma re-evaluate, brah.") == 2); For this: // Present a list of available bonuses. mes(.@name$); mes("Which of the following item bonuses would you like to add to this item?"); next(); //Check Option Repeat for (.@i = 1; .@i <= MAX_ITEM_OPTIONS; ++.@i) { .@opt = getequipoption(.@equip_index, .@i, IT_OPT_INDEX); if (.@opt > 0) .option_repeat$[getarraysize(.option_repeat$)] = .options$[.@opt - 1]; } // Build the Options! .@menu$ = ""; for (.@i = 0; .@i < getarraysize(.options$); ++.@i) { .@jump = 0; for (.@i = 0; .@i < getarraysize(.option_repeat$); ++.@i) { if (.option_repeat$[.@i] == .options$[.@i]) { .@jump++; break; } } if (.@jump == 0) .@menu$ += (.@i + 1) + ") " + .options$[.@i] + ":"; } do { // Select the options! .@option_variable = select(.@menu$); next(); mes(.@name$); mesf("You chose ^009900%s^000000!", .options$[.@option_variable - 1]); mes("Are you sure?"); next(); } while (select("Fo Shizzle.", "I'ma re-evaluate, brah.") == 2);
  7. It worked. Thanks. 4144 enjoying your attention on this topic. Would you know how I can rearrange these menu buttons? I used many patches that removed most of the buttons and now I wanted to keep them organized and even reduce the extra space in the layout. I would like to know if it is also possible to prevent access to the windows from which I removed the buttons. For example: Even removing the bank button, it is possible to access it via the shortcut.
  8. I also have the same doubt as the author and a little more. What is the budget for a 5k player server? Where to host an international server? Does adding proxy options help with latency? How to place proxies?
  9. I want to remove the mechanism that makes objects on the map transparent when the character approaches. I remember that in the past this didn't exist in the game, it must be a feature that was included in recent hexeds. Is there a Nemo Patch or way to remove this?
  10. Thank you. Do you suggest any Hexed version that is stable?
  11. I would like to test a new hexed, but I don't know where to find client 2023 with compatible data folder files.
  12. I think exactly that. Using the GPT API only for chats. Regarding the issue of credit consumption, I haven't been able to measure how much this cost would be, but I believe it would be a useful feature to use on an international server. The game Ragnarok Online has always lived up to the MMO name, but nowadays the small number of players is causing them to play alone. A system that removes the language barrier between players, in my view, aligns perfectly with the sense of community that Ragnarok Online embodies. I think you didn't understand the topic's goal. The intention is to use a translation API to instantly translate conversations in chat between players.
  13. After more than 3 years and with the chatGPT API fully disseminated, what do you think of this topic of mine? Wrongly written messages, GPT can translate. GPT can even translate slang from the Ragnarok game world perfectly.
×
×
  • Create New...

Important Information

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