• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

How to get player msg -- XML NPC -- HELP

d3eather1650

New Member
Joined
Apr 22, 2015
Messages
7
Reaction score
1
I tried somthing like that but it doesn't work:

Code:
<interact keywords="|*|">
<response>
<action name="script">
selfSay("You say:".. _state.*, cid)
</action>
</response>
</interact>

HELP.
 
what are you trying to do exactly ?

Actually i don't have time right now if your trying to get a a text amount then look at a banking npc and see how its done :) hope this kinda helps
 
Last edited:
For just keywords you can do this.
Code:
<parameter key="module_keywords" value="1" />
<parameter key="keywords" value="name;job;help" />
<parameter key="keyword_reply1" value="My name is ..." />
<parameter key="keyword_reply2" value="I am a ..." />
<parameter key="keyword_reply3" value="I don't need help." />
 
Back
Top