PDA

View Full Version : Is there a list of message icons?



alloowishus
November 18th, 2024, 16:45
For instance

local msg = {font = "msgfont"};
msg.icon = "portrait_gm_token";
msg.text = "Poisoned.";

Comm.deliverChatMessage(msg);


Is there a poison icon? Where do I have find a list of all icons? Thanks.

Trenloe
November 18th, 2024, 17:03
It'll depend on what ruleset you're using. Look in the rulesets (CoreRPG and the one you're using) in graphics\icons for examples. Ultimately, you can use any graphic that's defined within the ruleset using the <icon> asset definition: https://fantasygroundsunity.atlassian.net/wiki/spaces/FGCP/pages/996645466/icon But the size of the graphic may restrict what you can use within the chat message.

alloowishus
November 19th, 2024, 01:01
It'll depend on what ruleset you're using. Look in the rulesets (CoreRPG and the one you're using) in graphics\icons for examples. Ultimately, you can use any graphic that's defined within the ruleset using the <icon> asset definition: https://fantasygroundsunity.atlassian.net/wiki/spaces/FGCP/pages/996645466/icon But the size of the graphic may restrict what you can use within the chat message.

ok thanks!