public

Rpg Maker Developers Group

Simple enough for a child, powerful enough for a developer

2 Followers
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 VX
  • Original author: kyonides
  • Original date: January 11, 2023
  • Source thread: https://forums.rpgmakerweb.com/threads/kfactions-vx.154009/
  • Source forum path: Game Development Engines > Ruby Game System (RGSS) Scripts > RGSS2 Scripts (RMVX)

Summary

KFactions VX Version 1.1.0 by Kyonides Arkanthes​ Introduction

Archived First Post

KFactions VX
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["Westerners"] = faction = {}
  faction[:leader] = "Elder Oldus"
  faction[:value] = "Law & Order"
  faction[:fame] = 100
  faction[:allies] = ["Nobility"]
  faction[:enemies] = ["Polar Star"]
  faction[:maps] = [1]
  FACTIONS["Polar Star"] = faction = {}
  faction[:leader] = "Oscar"
  faction[:value] = "Lawlessness"
  faction[:fame] = 900
  faction[:allies] = ["Merchants"]
  faction[:enemies] = ["Westerners"]
  faction[:maps] = [1]
  DESCRIPTIONS["Westerners"] =
  "This faction is totally loyal to the king but their\n" +
  "current leader has grown quite old.\n" +
  "Other groups treat them like mere garbage."
  DESCRIPTIONS["Polar Star"] =
  "This faction claim to be the most powerful\n" +
  "group of the entire kingdom and beyond.\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

kfactionsmenuvx03.jpg

kfactionsmenuvx04.jpg

DOWNLOAD VX 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 download

License / 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

kfactionsmenuvx03.jpg
kfactionsmenuvx03.jpg
kfactionsmenuvx04.jpg
kfactionsmenuvx04.jpg
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.

#039#rgss2#script-archive

Replies (0)

No replies yet.

0 replies 1 view

Log in to reply.

User Avatar