i just want remove the "Name of my character" in msg when i use the dice 
Thanks
Script
Thanks
Script
LUA:
function onUse(player, item, fromPosition, target, toPosition, isHotkey)
local dicePosition = item:getPosition()
local value = math.random(6)
local isInGhostMode = player:isInGhostMode()
dicePosition:sendMagicEffect(26, isInGhostMode and player)
local spectators = Game.getSpectators(dicePosition, false, true, 3, 3)
for i = 1, #spectators do
player:say(player:getName() .. " Rolled " .. value .. " !", TALKTYPE_MONSTER_SAY, isInGhostMode, spectators[i], dicePosition)
end
item:transform(5091 + value)
return true
end