• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Replace the word Trade with NPC

leeebux

Awsome
Premium User
Joined
May 18, 2009
Messages
104
Reaction score
5
Location
Sweden
Is there a way to bind another multiple words then "trade" to open a trade window to NPC?

For example "Would you like to {browers} my stuff?"
 
Solution
data\npc\lib\npcsystem\modules.lua
Lua:
    -- The words for requesting trade window.
    SHOP_TRADEREQUEST = {"trade"}

Lua:
SHOP_TRADEREQUEST = {"trade", "browse", "shop", "store"}
data\npc\lib\npcsystem\modules.lua
Lua:
    -- The words for requesting trade window.
    SHOP_TRADEREQUEST = {"trade"}

Lua:
SHOP_TRADEREQUEST = {"trade", "browse", "shop", "store"}
 
Solution
Back
Top