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

Help

gurden

i need support for my server, good scripter!
Joined
May 19, 2009
Messages
519
Reaction score
5
Location
Sweden
Can someone explaine why 0.2.5 npcs doesent use the npc channel? :( can someone send a script? not the 0.3.5 please that doesent work.
 
Go to npc/lib/npcsystem/npchandler.lua.

Then on line 19, change:
Code:
NPCHANDLER_CONVBEHAVIOR = CONVERSATION_DEFAULT

To:
Code:
NPCHANDLER_CONVBEHAVIOR = CONVERSATION_PRIVATE

Go to npcsystem.lua at the same directory and change this on line 34:
Code:
NPCHANDLER_CONVBEHAVIOR = CONVERSATION_DEFAULT

To this:
Code:
NPCHANDLER_CONVBEHAVIOR = CONVERSATION_PRIVATE

Now it should use the NPC channel instead of the default one. :)
 
there were already one like that

NPCHANDLER_CONVBEHAVIOR = CONVERSATION_DEFAULT 0

NPCHANDLER_CONVBEHAVIOR = CONVERSATION_PRIVATE 1
 
Back
Top