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 XP
- Original author: kyonides
- Original date: January 11, 2023
- Source thread: https://forums.rpgmakerweb.com/threads/kfactions-xp.153986/
- Source forum path: Game Development Engines > Ruby Game System (RGSS) Scripts > RGSS Scripts (RMXP)
Summary
KFactions XP Version 1.1.0 by Kyonides Arkanthes Introduction
Archived First Post
KFactions XP
Version 1.1.0
by Kyonides Arkanthes
Version 1.1.0
by Kyonides Arkanthes
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["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
DOWNLOAD XP DEMO
DOWNLOAD XP 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...