Shop Tracking v1.01
Author: Michael Morris
@Blue Booth Studios
Introduction
This simple plugin allows you to bind two variables to track the amount of gold players spend buying items in stores, and the amount of gold players earn selling items in stores.
Features
- Can track player gold spent/earned from buying/selling.
- Common use is for Achievements.
How to Use
- Copy script into your game js/plugins directory.
- Import plugin and set tracking variables in plugin config.
- Call script plugin commands within your own events or plugins.
Requirements
This script has no external requirements.
Demo
No demo provided.
Script
Spoiler Code:
//============================================================================= // Bluebooth Plugins - Track Shopping // BBS_TrackShopping.js //============================================================================= //============================================================================= /*: * @title Track Shopping Plugin * @author Michael Morris (https://www.patreon.com/bluebooth) * @date Feb 13, 2016 * @filename BBS_TrackShopping.js * If you enjoy my work, consider supporting me on Patreon! * * https://www.patreon.com/bluebooth * * @plugindesc v1.01 Tracks total money the player spends buying and selling at stores. * Special Thanks to Tsukihime for all the help. * Special Thanks to 'Ramza' Michael Sweeney for being so supportive. * * ============================================================================ * Terms of Use * ============================================================================ * - Free for use in non-commercial and commercial projects with credits * * ============================================================================ * Parameters * ============================================================================ * @param Buying Tracking Game Variable * @desc Index of Game Variable to use to track amount bought. Tracking does not reset when saving/loading. * @default -1 * * @param Selling Tracking Game Variable * @desc Index of Game Variable to use to track amount sold. Tracking does not reset when saving/loading. * @default -1 * * @help * ============================================================================ * Description * ============================================================================ * * Tracks total money the player spends buying and selling at stores. * * ============================================================================ * Change Log * ============================================================================ * 1.01 - Plugin finished. * */ //============================================================================= //============================================================================= var Imported = Imported || {} ; var BBS = BBS || {}; Imported.TrackShopping = 1; BBS.TrackShopping = BBS.TrackShopping || {}; (function() { //============================================================================= // Parameter Variables //============================================================================= var parameters = PluginManager.parameters('BBS_TrackShopping'); var pBuyGameVarIndex = Number(parameters['Buying Tracking Game Variable'] || '-1'); var pSellGameVarIndex = Number(parameters['Selling Tracking Game Variable'] || '-1'); var BBS_TS_Scene_Shop_doBuy = Scene_Shop.prototype.doBuy; Scene_Shop.prototype.doBuy = function(number) { BBS_TS_Scene_Shop_doBuy.call(this, number); if (pBuyGameVarIndex > 0) { var changeInSpentGold = $gameVariables.value(pBuyGameVarIndex); changeInSpentGold = changeInSpentGold + (number * this.buyingPrice()); $gameVariables.setValue(pBuyGameVarIndex, changeInSpentGold); } }; var BBS_TS_Scene_Shop_doSell = Scene_Shop.prototype.doSell; Scene_Shop.prototype.doSell = function(number) { BBS_TS_Scene_Shop_doSell.call(this, number); if (pSellGameVarIndex > 0) { var changeInSoldGold = $gameVariables.value(pSellGameVarIndex); changeInSoldGold = changeInSoldGold + (number * this.sellingPrice()); $gameVariables.setValue(pSellGameVarIndex, changeInSoldGold); } }; })(BBS.TrackShopping); //============================================================================= // End of File //============================================================================= 复制代码
Change Log
1.01
- Plugin finished.
Known Bugs / TODO
Suggestions, bug reports, and feature requests are welcomed!
Compatibility Issues
None known. Compatible with Klaus Map Overlays, Terrax Lighting System, and most (if not all) of Yanfly's plugins.
Credit and Thanks
- Micheal Morris
@Blue Booth Studios
- So much credit to Tsukihime and all of those who have been supportive of my scripts and put up with my incessant barrage of questions.
Author's Notes
Free for non-commercial and commercial use.
本贴来自国际rpgmaker官方论坛作者:bluebooth处,因国际论坛即将永久关站,为了存档多年珍贵资料,署名转载到本论坛存档,由于官方帖子为英文原帖,需要中文翻译请点击论坛顶部切换语言为中文就可以将帖子翻译成中文浏览,方便大家随时查看,原文地址:
https://forums.rpgmakerweb.com/threads/shop-tracking-v1-01.75923/