public

Rpg Maker Developers Group

Simple enough for a child, powerful enough for a developer

2 Followers

MVGold Icon (currency icon)

BMM Archive · July 15, 2026

Preserved forum archive. This topic stores the original first post and locally mirrored RPG Maker Web attachments when available. It is posted by the BMMPlay archive account, not by the original creator.

Original Source

  • Original title: Gold Icon (currency icon)
  • Original author: ovate
  • Original date: May 20, 2020
  • Source thread: https://forums.rpgmakerweb.com/threads/gold-icon-currency-icon.121797/
  • Source forum path: Game Development Engines > RPG Maker Javascript Plugins > JS Plugin Releases (RMMV)

Summary

MNKR_GoldIcon - 2020/03/30 Creator name: munokura Introduction Replace currency unit display with icon

Archived First Post

MNKR_GoldIcon - 2020/03/30

Creator name: munokura

Introduction
Replace currency unit display with icon

Note: if you only want to change gold icon only without using YEP_CoreEngine.

Feature
Parameter to set gold icon based on icon ID

Preview
tQLkcEt.png


Credit and Thanks: munokura

Terms of Use- Free for commercial and non-commercial use.

License - Public Domain

JavaScript:
/*:
* @plugindesc Replace currency unit display with icon
* @author munokura
*
* @param Gold Icon
* @text Currency icon ID
* @type string
* @desc Icon ID used for currency unit
* @default 313
*
* @help
* Replaces Currency Unit display with an icon.
*
* Terms of Use
* Copyright from the author is waived.
* License- Public Domain
*/

(function() {
    'use strict';

    var parameters = PluginManager.parameters('MNKR_GoldIcon');
    var goldIcon = parseInt(parameters['Gold Icon'] || 313);

    Window_Base.prototype.drawCurrencyValue = function(value, unit, x, y, width) {
        this.resetTextColor();
        this.drawText(value, x, y, width - 36 - 6, 'right');
        this.drawIcon(goldIcon, x + width - 36, y);
    };

})();

You can download js file from the thread attachment or Dropbox link: https://www.dropbox.com/s/y3yj04b5r3k95jk/MNKR_GoldIcon.js?dl=1

Features Mentioned

  • Parameter to set gold icon based on icon ID
  • Preview
  • "lightbox_close": "Close",
  • "lightbox_next": "Next",
  • "lightbox_previous": "Previous",
  • "lightbox_error": "The requested content cannot be loaded. Please try again later.",
  • "lightbox_start_slideshow": "Start slideshow",
  • "lightbox_stop_slideshow": "Stop slideshow",
  • "lightbox_full_screen": "Full screen",
  • "lightbox_thumbnails": "Thumbnails",
  • "lightbox_download": "Download",
  • "lightbox_share": "Share",
  • "lightbox_zoom": "Zoom",
  • "lightbox_new_window": "New window",
  • "lightbox_toggle_sidebar": "Toggle sidebar"
  • Credit and Thanks: munokura
  • Terms of Use- Free for commercial and non-commercial use.
  • License - Public Domain

Downloads / Referenced Files

Log in to download

Log in, then follow the RPG Maker Developers Group to see these download links.

Log in to download

License / Terms Note

Credit and Thanks: munokura Terms of Use- Free for commercial and non-commercial use. License - Public Domain JavaScript:

Creator Claims / Removal

If you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.

#rmmv#plugin-archive

Replies (0)

No replies yet.

0 replies 1 view

Log in to reply.

User Avatar