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

Npc default channel

Fifflaren

Art of Conquest
Joined
Dec 11, 2018
Messages
154
Solutions
1
Reaction score
50
Hello Otland! I have this problem where all my npc's respond in npc channel as they should but they wont listen to anything you say if its in npc channel. For exampel I have a rune npc so I walk up to him and say "hi" he responds in npc channel and npc channel opens but then if I say "trade" in the npc channel he wont react. He only reacts when I type trade in default. Video!
 
Solution
Yeah it does ruin it because you already changed all
Lua:
TALKTYPE_PRIVATE_PN
to
Lua:
TALKTYPE_SAY
So I would suggest you to try this, Change all your msgtype from
Lua:
msgtype == TALKTYPE_SAY
to
Lua:
(msgtype == TALKTYPE_PRIVATE_PN or TALKTYPE_SAY)
Should work and what did you mean with only M0ustafa? I can just wait next time if you are looking for specific member to help you.
Yeah it does ruin it because you already changed all
Lua:
TALKTYPE_PRIVATE_PN
to
Lua:
TALKTYPE_SAY
So I would suggest you to try this, Change all your msgtype from
Lua:
msgtype == TALKTYPE_SAY
to
Lua:
(msgtype == TALKTYPE_PRIVATE_PN or TALKTYPE_SAY)
Should work and what did you mean with only M0ustafa? I can just wait next time if you are looking for specific member to help you.
 
Solution
Yeah it does ruin it because you already changed all
Lua:
TALKTYPE_PRIVATE_PN
to
Lua:
TALKTYPE_SAY
So I would suggest you to try this, Change all your msgtype from
Lua:
msgtype == TALKTYPE_SAY
to
Lua:
(msgtype == TALKTYPE_PRIVATE_PN or TALKTYPE_SAY)
Should work and what did you mean with only M0ustafa? I can just wait next time if you are looking for specific member to help you.
Wow dude youre a life saver thanks alot. And what I mean with one and only M0ustafa is that I didnt expect a otland legend to answer my simple question XD Youre like a legend dude <333
 
Yeah it does ruin it because you already changed all
Lua:
TALKTYPE_PRIVATE_PN
to
Lua:
TALKTYPE_SAY
So I would suggest you to try this, Change all your msgtype from
Lua:
msgtype == TALKTYPE_SAY
to
Lua:
(msgtype == TALKTYPE_PRIVATE_PN or TALKTYPE_SAY)
Should work and what did you mean with only M0ustafa? I can just wait next time if you are looking for specific member to help you.
My npcs talk in default channel, but don't know how to do this for tfs 1.3 in the opposite way, please help. dont know what to change and what not
 

Attachments

Last edited:
Back
Top