Hi Casper,
Just want to thank you for this amazing teleport script.
Can I make request for a couple of additions please..?
1. An option to swap the picture and description above or below each other.
2. An option to have more than 2 lines for the description, say 3 or 4 lines. I feel 2 lines ain't quite enough for descriptions so cutting maybe the picture space down a little will free more space up for line(s).
3. When using Gold as a currency.. an option to stop the plugin putting Gold at the end of the gold amount you've put in. (see picture, you can see i've used a gold icon so there would be no need to put gold at the end of the cost).
Thanks!
Viewing post in [CGMZ] Fast Travel for RPG Maker MZ comments
Change this:
if(this._item._goldCost > 0) { this.drawText(this._item._goldCost + TextManager.currencyUnit, 0, y, this.contents.width, 'center'); y += this.lineHeight(); }
to this:
if(this._item._goldCost > 0) { this.drawText(this._item._goldCost, 0, y, this.contents.width, 'center'); y += this.lineHeight(); }