PDA

View Full Version : lua npc whisper


phate8908
12-28-2018, 12:16 PM
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

function NPC:Whisper(Client, Message)
local TextColor = 315;
Client:Message(TextColor, self:GetCleanName() .. " whispers, '" .. Message .."'");
end