append this to the end of lua_modules\npc_ext.lua
this is just the lua version of whisper, same thing as the perl version
Code:
function NPC:Whisper(Client, Message)
local TextColor = 315;
Client:Message(TextColor, self:GetCleanName() .. " whispers, '" .. Message .."'");
end