Save-Point
KDirtyShop - Printable Version

+- Save-Point (https://www.save-point.org)
+-- Forum: Material Development (https://www.save-point.org/forum-8.html)
+--- Forum: Scripts Database (https://www.save-point.org/forum-39.html)
+--- Thread: KDirtyShop (/thread-8879.html)



KDirtyShop - kyonides - 12-28-2023

KDirtyShop
XP + VX + ACE

by Kyonides

Introduction

This script allows you to alter the normal behavior of the shop scene.
Now you can trigger a Common Event that makes the shopkeeper ask for some extra money before allowing you to purchase or sell any item there.

Times are very difficult, and storekeepers got to do whatever is necessary to feed their poor families, you know!

IMPORTANT NOTES

The script depends on Common Events for a very good reason, namely the ability to customize it without depending too much on custom script calls.

The GUI has not changed at all, but 2 default methods have been overwritten for the sake of convenience.

This script does not alter normal shops!
If you ever forget to set the Common Event for a specific shop, it will work as an ordinary shop.

BASIC INSTRUCTIONS

  1. You will need 2 Game Switches and 4 Game Variables to make this happen.
    Thus, you have to setup the 6 CONSTANTS found in the KDirtyShop module below.
    All of them have self explanatory names so you won't ever get confused.
  2. Next pick a Common Event for Every Shady Shopkeeper.
  3. Check out the Official Demo to learn how to configure that Common Event.
  4. To ensure the Common Event will process the purchase or sale, use this call:

Code:
KDirtyShop.process!

The Constants

Code:
module KDirtyShop
  # - Switches - #
  BUY_OR_SELL_SWITCH = 10
  NO_EXPLANATION_SWITCH = 11
  # - Variables - #
  COMMON_EVENT_VAR = 9
  BUY_BASE_PERCENT_VAR = 10
  BUY_EXTRA_PERCENT_VAR = 11
  SELL_BASE_PERCENT_VAR = 12
  SELL_EXTRA_PERCENT_VAR = 13


Terms & Conditions

Free for Non Commercial Games Only!
If you want to go commercial, please contact me first.
It is quite inexpensive indeed.
Due credit is mandatory.
Mention the forum where you found this script.
That's it! Tongue sticking out


RE: KDirtyShop - kyonides - 12-29-2023

The Script Has Been Ported!

Now both RMXP and RMVX can also enjoy the super shady benefits of letting a despicable shopkeeper ask for some extra money Cash before letting you purchase your darn items. Thinking Well, you gotta know that things won't get any better if you ever try to sell your stuff there. Not saying the storekeeper is an actual thief Thief at all!


RE: KDirtyShop - kyonides - 02-23-2024

Script Update

Now version 1.1.0 features the exclusion of items or weapons or armors from the extortion mechanism already implemented in my script.

New Script Calls for All RGSS-Based Engines

Code:
KDirtyShop.skip_items(ID1, etc.)
KDirtyShop.skip_weapons(ID1, etc.)
KDirtyShop.skip_armors(ID1, etc.)