Save-Point
KFactions VX + ACE - 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)
+---- Forum: RPGMaker VX/VXAce (RGSS2/3) Engines (https://www.save-point.org/forum-117.html)
+---- Thread: KFactions VX + ACE (/thread-11326.html)



KFactions VX + ACE - kyonides - 12-12-2024

KFactions VX + ACE

by Kyonides


Introduction

Is your game based on a world full of gangs? Confused
Or are there many political parties?
Or are the nobles looking to overthrow their current king?

If you replied positively to any of these questions, then this script was made just for you! Grinning

NOTES

RG stands for all versions of the RGSS based engines. Happy with a sweat
I have included PLENTY of comments in my script so please check them out. Winking

3 Demos are available now for you to play with!

How to Predefine Factions

Here you can take a look at the examples I left in the official demo.

Code:
module KFactions
  FACTIONS["Centralists"] = faction = {}
  faction[:leader] = "Elder Alsemus"
  faction[:value] = "Law & Order"
  faction[:fame] = 200
  faction[:allies] = ["Nobility"]
  faction[:enemies] = ["North Star"]
  faction[:maps] = [1]
  FACTIONS["North Star"] = faction = {}
  faction[:leader] = "Cyrus"
  faction[:value] = "Lawlessness"
  faction[:fame] = 1000
  faction[:allies] = ["Merchants"]
  faction[:enemies] = ["Centralists"]
  faction[:maps] = [2]
  DESCRIPTIONS["Centralists"] =
  "This faction has always been totally loyal to the king\n" +
  "but their current leader has grown quite old.\n" +
  "Other groups treat them like mere garbage."
  DESCRIPTIONS["North Star"] =
  "This faction claim to be the most powerful group of the\n" +
  "entire kingdom but it has not been confirmed.\n" +
  "Its leader is brave, stubborn and ruthless."
end

There is also the possibility to create new factions on the fly via the call script event command.

Screenshots

VX & ACE

The Main Faction Script
NO GUI


Happy with a sweat The Scene Scripts can be found in my next post on this thread.


Terms & Conditions

Free for use in non commercial games.
Contact me if you want to go commercial. It will be pretty much inexpensive anyway. Laughing
Please mention me in your game credits! Grinning
Serious You can't repost these scripts anywhere! Angry


RE: KFactions VX + ACE - kyonides - 12-12-2024

Script Update!

This new release includes a bug fix and a new feature: some visual indicators of how many quotes you have recorded so far and the current index.

3 Screenshots