Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/24/24 in all areas

  1. If your concern is to remove that message, Any work in progress (NPC dialog, manufacturing...) quit and try again you can disable it in npc.cpp find: clif_msg(sd, MSI_BUSY); and // comment this line
    1 point
  2. This guide will teach you through modifying the existing code in itemInfo.lua to add ItemID numbers to the description of all items in your server. Specifically, we'll replace the current loop that processes identified descriptions with a method that concatenates all descriptions and appends the ItemID at the end of the description. Step 1: The original code uses a loop to add identified descriptions. just remove this at your itemInfo.lua for k, v in pairs(DESC.identifiedDescriptionName) do result, msg = AddItemIdentifiedDesc(ItemID, v) if not result == true then return false, msg end end Step 2: Replace the Loop -- Concatenate identified description into a single string local fullDescription = table.concat(DESC.identifiedDescriptionName, "\n") -- Append the ItemID only once at the end of the full description fullDescription = fullDescription .. "\n\n_______________________\n^0000CCItem ID:^000000 " .. ItemID -- Add the modified full description result, msg = AddItemIdentifiedDesc(ItemID, fullDescription) if not result == true then return false, msg end The Result will be look like this.
    1 point
  3. cookie clicker Yes, aside from "ROSTRViewer," there are a few other .str file viewers and editors, but they're generally less common since the .str format is specific to certain games like Ragnarok Online. Unfortunately, tools similar to ACT Editor for this format are rare, and you might not find one with the same level of ease or flexibility.
    1 point
  4. Version 3.0.0

    3 downloads

    Tema com suporte para os idiomas 'en_us' e 'pt_br'. Tema responsivo. Sistema de notícias na página inicial com categorias. Classificação: exibe as 3 primeiras posições em um pódio, mostrando imagens de cada classe. (Atenção) Apenas imagens das classes 2-1 foram adicionadas, se você quiser adicionar mais imagens, siga o exemplo no arquivo de configuração 'SeuRo/config.php' Guilda: exibe apenas os castelos ocupados, com o nome da Guilda e o Emblema. O arquivo de download contém um manual com todas as etapas de instalação! Versão do PHP usada: 8.2.12 ----------------------------------------------------- Tema, com suporte as linguagens 'en_us' e 'pt_br'. Tema responsivo. Sistema de notícias na página inicial, com categorias. Ranking: mostra os 3 primeiros colocados em um Podium, mostrando as imagens, de cada classe. (Atenção) Foi adicionado somente as imagens das classes 2-1, caso queira adicionar mais imagens siga o exemplo, no arquivo de configuração 'SeuRo/config.php' Guild: exibe somente os castelos ocupados, com nome da Guild e Emblema. Dentro do arquivo de download, contem um manual com todos os passo a passo de instalação! Versão do PHP utilizado: 8.2.12
    50.00 USD
    1 point
  5. Included in this guide : i1.1.0 -Ubuntu OS Setup i1.2.0 -Web Server i1.3.0 -phpmyadmin Setup i1.4.0 -Game Server i1.5.0 -sFTP Setup i1.6.0 -SSH Setup i1.7.0 -Making Windows 10 on Linux i1.8.0 -Emulating all RO tools i1.9.0 -Emulating RO i1.10.0 -Setting up rAthena i1.11.0 -Setting Up UFW (Firewall) i1.12.0 -Auto-Start Scripts i2.1.0 -FluxCP Setup i2.2.0 -Making an EXE i2.3.0 -Making a Patcher i2.4.0 -Making a Patch i2.5.0 -Send Patches i2.6.0 -Adding/Removing Map Cache Data o3.1.0 -Port Forwarding o3.2.0 -Automatic Backups Optional Recommended Resources : (terminal commands) sudo apt install flatpak -y sudo apt install wine -y sudo apt install winetricks -y Upcoming steps : (Coming Soon!) -Making an EXE -Making a Patcher -Making/Sending a Patch In Consideration : (Not quite there yet) -Proxy Navigation & Setup
    1 point
×
×
  • Create New...