• 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!

Lua How can I....?

Archez

'
Senator
Joined
Jun 26, 2008
Messages
6,589
Solutions
1
Reaction score
70
Location
Mexico
Is there a way to choose between Trade NPC system or just talking with NPC?

Like:

Code:
>> Archez: Hi
>> NPC: Hi Archez!
>> Archez: Sell sword
>> NPC: Do you want to sell this sword for 15 gps?
>> Archez: Yes
>> NPC: Here you are.

???

I dont want to choose in trade window...
 
SHOPMODULE_MODE_TALK = 1 -- Old system used before Tibia 8.2: sell/buy item name
SHOPMODULE_MODE_TRADE = 2 -- Trade window system introduced in Tibia 8.2
SHOPMODULE_MODE_BOTH = 3 -- Both working at one time

-- Used shop mode
SHOPMODULE_MODE = SHOPMODULE_MODE_BOTH
 
Back
Top