Hi.

I'm building a extension which needs to send to the chat a message with a number which can be dragged to a PC token to heal.

Can you help me with that?

Code:
function my_heal(message)
  local msg = {};
  msg.text = tonumber(message);
  Comm.deliverChatMessage(msg); -- deliverChatMessage ou addChatMessage
end

my_heal(20);