### Function: GetCoinMessage(total_coins) **Description:** Gets the translated string message of the total coins in copper to copper, silver, gold and platinum. **Parameters:** - `total_coins` (uint32) - Integer value `total_coins`. **Returns:** String representation of the coins. **Example:** ```lua -- From SpawnScripts/Generic/aGigglegibberGoblinGamblinGameVendor.lua function hailed(NPC, Spawn) FaceTarget(NPC, Spawn) conversation = CreateConversation() AddConversationOption(conversation, "Thanks.") StartConversation(conversation, NPC, Spawn, "The current jackpot is " .. GetCoinMessage(GetVariableValue("gambling_current_jackpot")) .. ".") --[[ PlayFlavor(NPC, "", "", "", 0, 0, Spawn) AddConversationOption(conversation, "How did a goblin get in here? Don't you kill people?", "dlg_0_1") AddConversationOption(conversation, "I think I'd rather keep my money, thanks.") StartConversation(conversation, NPC, Spawn, "Buy ticket, you! Only ten shiny coins! You give just ten shiny coins and maybe you get um... many shinier coins!") if convo==1 then PlayFlavor(NPC, "", "", "", 0, 0, Spawn) AddConversationOption(conversation, "How did a goblin get in here? Don't you kill people?", "dlg_1_1") AddConversationOption(conversation, "What do you know about the disappearance of Lord Bowsprite?") AddConversationOption(conversation, "I think I'd rather keep my money, thanks.") StartConversation(conversation, NPC, Spawn, "Buy ticket, you! Only ten shiny coins! You give just ten shiny coins and maybe you get um... many shinier coins!") end ```