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

Solved. (Delete Please)

Where exactly would I have to change that?

Edit:
Selfsay doesnt exist on my NPC's luas.
Only NpcHandlerSay.

local keywordHandler = KeywordHandler:new()
local npcHandler = NpcHandler:new(keywordHandler)
NpcSystem.parseParameters(npcHandler)
local talkState = {}

function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end
function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end
function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end
function onThink() npcHandler:onThink() end
 
It's not in the LUA :p

It's about the XML.

You must add a parameter key for "hi", "hello", etc...

Here is it:

Code:
<parameter key="message_greet" value="Hello |PLAYERNAME|. Do you want to buy some addons?"/>
 
Last edited:
Back
Top