SuiteGM RPG Plugin Creator Step 1 Now Working!
A very critical first step milestone has now been reached. The data entry form critical for creating the initial layout of a role playing game system that can be plugged into SuiteGM now has the important first step completed, the outline template XML file generation process works, and currently includes 55 variables and can easily have more added as testing requires. This tool...
Allows any user to create the initial layout of their favorite game system. This is the first step of creating a complete plugin for SuiteGM. In addition to boolean (true/false) template construction, when selecting yes/no to include a data field (like levels or hit points), you can at that time establish the base field names, but later you will need to create many more, and that is done in step 2. Step 3 has you setup all the logic specific to your system (for example combat/action chart results, etc.).
Here is a sample XML file that is created from this first step of the tools:
cat dnd3.5-1.1.xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<suitegmplugin version="4.0">
<rpgs_identity>
<rpgi_company_name>Wizards of the Coast</rpgi_company_name>
<rpgi_full_name>Dungeons & Dragons</rpgi_full_name>
<rpgi_nick_name>D&D 3.5</rpgi_nick_name>
<rpgi_version>3.5</rpgi_version>
<rpgi_genre>Fantasy</rpgi_genre>
<rpgi_plugin_abbrev>dnd3.5</rpgi_plugin_abbrev>
<rpgi_plugin_version>1.1</rpgi_plugin_version>
</rpgs_identity>
<rpg_specifications>
<use_gm_name>true</use_gm_name>
<use_campaign_name>true</use_campaign_name>
<use_campaign_start_date>false</use_campaign_start_date>
<use_player_name>true</use_player_name>
<use_character_name>true</use_character_name>
<use_character_hair>true</use_character_hair>
<use_character_eyes>true</use_character_eyes>
<use_character_height>true</use_character_height>
<use_character_weight>true</use_character_weight>
<use_email>false</use_email>
<use_printable>true</use_printable>
<use_races>true</use_races>
<use_professions>true</use_professions>
<use_gender>true</use_gender>
<use_abilities>true</use_abilities>
<use_levels>true</use_levels>
<use_skills>true</use_skills>
<use_languages>true</use_languages>
<use_weapons>true</use_weapons>
<use_armor>true</use_armor>
<use_magic>true</use_magic>
<use_tech>false</use_tech>
<use_hit_points>true</use_hit_points>
<use_attack_mods>true</use_attack_mods>
<use_defense_mods>true</use_defense_mods>
<use_resistance_checks>true</use_resistance_checks>
<use_difficulty_checks>true</use_difficulty_checks>
<use_cultures>false</use_cultures>
<use_multiclass>true</use_multiclass>
<use_fatigue>true</use_fatigue>
<use_backgroundoptions>false</use_backgroundoptions>
<use_spells>true</use_spells>
<use_martial_arts>false</use_martial_arts>
<use_clothing>true</use_clothing>
<use_footwear>true</use_footwear>
<use_armwear>true</use_armwear>
<use_jewelry>true</use_jewelry>
<use_hit_locations>false</use_hit_locations>
<use_hit_criticals>true</use_hit_criticals>
<use_action_rolls>false</use_action_rolls>
<use_sustenance>false</use_sustenance>
<use_herbs>false</use_herbs>
<use_healing>true</use_healing>
<use_money>false</use_money>
</rpg_specifications>
</suitegmplugin>

