Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/24/24 in Posts

  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. 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...