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: KFactions ACE
- Original author: kyonides
- Original date: January 11, 2023
- Source thread: https://forums.rpgmakerweb.com/threads/kfactions-ace.154013/
- Source forum path: Game Development Engines > Ruby Game System (RGSS) Scripts > RGSS3 Scripts (RMVX Ace)
Summary
KFactions ACE Version 1.1.0 by Kyonides Introduction
Archived First Post
KFactions ACE
Version 1.1.0
by Kyonides
Version 1.1.0
by Kyonides
Introduction
You know what a faction is. What if your game had some of them?
What if they were looking to keep track of what the hero's faction has under control?
What if the hero needs to find out what his enemy groups have achieved as of late?
What if you use a menu to check it out at any given moment?
How to Predefine Factions
Here you can take a look at the examples I left in the official demo.
Ruby:
module KFactions
FACTIONS["Lobbyists"] = faction = {}
faction[:leader] = "Elder Fritz"
faction[:value] = "Law & Order"
faction[:fame] = 500
faction[:allies] = ["Nobility"]
faction[:enemies] = ["Crimson Star"]
faction[:maps] = [1]
FACTIONS["Crimson Star"] = faction = {}
faction[:leader] = "Rick Star"
faction[:value] = "Lawlessness"
faction[:fame] = 1400
faction[:allies] = ["Thieves", "Assassins"]
faction[:enemies] = ["Lobbyists"]
faction[:maps] = [1]
DESCRIPTIONS["Lobbyists"] =
"It is composed of royal lobbyists.\n" +
"Their leader has grown quite old.\n" +
"Other groups treat them like garbage."
DESCRIPTIONS["Crimson Star"] =
"It claims to be the most powerful\n" +
"group in the entire kingdom.\n" +
"They are brave, stubborn and ruthless."
end
There is also the possibility to create new factions on the fly via the call script event command.
Screenshots
DOWNLOAD ACE DEMO
DOWNLOAD ACE DEMO
Terms & Conditions
Free for use in non commercial games.
Contact me in you are going commercial.
Don't forget to include me in your game credits!
Don't repost this script anywhere else!
Downloads / Referenced Files
Log in to download
Log in, then follow the RPG Maker Developers Group to see these download links.
Log in to downloadLicense / Terms Note
Free for use in non commercial games. Contact me in you are going commercial. Don't forget to include me in your game credits! Don't repost this script anywhere else!
Referenced Images / Attachments
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.
Replies (0)
No replies yet.
0
replies
1
view
Topic Summary
Loading summary...