├── .clang-format ├── .clang-tidy ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── auto_assign.yml └── workflows │ └── pages.yml ├── .gitignore ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile.am ├── README.md ├── autorun-watchdog.sh ├── autorun.sh ├── bin └── .gitkeep ├── cbuild.sh ├── companion ├── configure.ac ├── cp2dev.sh ├── cp2live.sh ├── cpfr2live.sh ├── docs ├── .nojekyll ├── CHANGELOG.md ├── GETTING_STARTED.md ├── GOLEM_CHANGELOG.md ├── GOLEM_IMPLEMENTATION_SUMMARY.md ├── GOLEM_SYSTEM.md ├── TASK_LIST.md ├── TECHNICAL_DOCUMENTATION_MASTER_INDEX.md ├── admin │ ├── CODEBASE_SCOPE.md │ ├── FAQ.md │ └── README.md ├── database │ └── narrative_weaver_schema_fixes.md ├── deployment │ ├── DATABASE_DEPLOYMENT_GUIDE.md │ ├── DEPLOYMENT_FIX.md │ ├── DEPLOYMENT_GUIDE.md │ ├── DEPLOYMENT_STATUS.md │ ├── DISCORD_BRIDGE_SETUP.md │ └── INTEGRATION_EXAMPLE.md ├── development │ ├── CMAKE_BUILD_GUIDE.md │ ├── DATA_STRUCTURES_AND_MEMORY.md │ ├── MOB_AI_GROUP_LOGIC.md │ ├── MOB_BUFF_OUTSIDE_COMBAT_REMOVAL.md │ ├── MOB_SPELL_SLOT_INITIALIZATION_FIX.md │ ├── PERFORMANCE_OPTIMIZATIONS.md │ ├── README.md │ ├── RESOURCE_REGENERATION_API.md │ ├── STAT_MOB_SPELL_SLOTS.md │ ├── WIZARD_AI_QUICK_REF.md │ ├── WIZARD_GROUP_AOE_SPELLS.md │ ├── WIZARD_MOB_BUFFING_TROUBLESHOOTING.md │ ├── affect_update_optimization.md │ ├── dox_noGraphs.doxyfile │ ├── dox_withGraphs.doxyfile │ └── perfmon_help.txt ├── guides │ ├── DATABASE_INITIALIZATION_GUIDE.md │ ├── DEVELOPER_GUIDE_AND_API.md │ ├── IMPORT_DB.md │ ├── NEW_PLAYER_GUIDE_LEVEL_1-5.md │ ├── OLC_SpecProcs.md │ ├── PHASE_4_INSTALLATION.md │ ├── RESOURCE_SYSTEM_REFERENCE.md │ ├── TESTING_GUIDE.md │ ├── TROUBLESHOOTING_AND_MAINTENANCE.md │ └── ultimate-mud-writing-guide.md ├── index.html ├── legacy_installation │ ├── FAQ.txt │ ├── LEGACY_README.md │ ├── Makefile.amiga │ ├── Makefile.arc │ ├── Makefile.bcc │ ├── Makefile.bcc55 │ ├── Makefile.in │ ├── Makefile.in_bak │ ├── Makefile.in_util_bak │ ├── Makefile.lcc │ ├── Makefile.msvc │ ├── Makefile.os2 │ ├── Makefile_bak │ ├── Makefile_util_bak │ ├── ProtocolSystem.txt │ ├── README │ ├── README.AMIGA │ ├── README.ARC │ ├── README.BORLAND │ ├── README.BSD │ ├── README.CMAKE.md │ ├── README.CYGWIN │ ├── README.MSVC2022 │ ├── README.MSVC4 │ ├── README.MSVC5 │ ├── README.MSVC6 │ ├── README.MSVC8 │ ├── README.OS2 │ ├── README.UNIX │ ├── README.VMS │ ├── README.WATCOM │ ├── README.WIN │ ├── README.md │ ├── README_HSITORY.md │ ├── Smakefile │ ├── UnixShellAdminGuide.pdf │ ├── aclocal.m4_bak │ ├── act.txt │ ├── admin.txt │ ├── autorun.amiga │ ├── autorun.pl │ ├── autorun.sh │ ├── build_circlemud.com │ ├── building.txt │ ├── coding.txt │ ├── color.txt │ ├── conf.h.amiga │ ├── conf.h.arc │ ├── conf.h.in │ ├── conf.h.in.old_root │ ├── conf.h.mac │ ├── conf.h.os2 │ ├── conf.h.vms │ ├── conf.h.win │ ├── configure.old_bak │ ├── debugging.txt │ ├── dg_events.txt │ ├── do_mail │ ├── files │ ├── files.txt │ ├── license.txt │ ├── licheck │ ├── macrun.pl │ ├── msgedit.txt │ ├── porting.txt │ ├── qedit_manual.pdf │ ├── releases.txt │ ├── socials.txt │ ├── syserr.txt │ ├── utils.txt │ └── vms_autorun.com ├── legal │ └── README.md ├── lore_luminari │ ├── DEITIES.md │ └── KNIGHTS.md ├── previous_changelogs │ ├── old_CHANGELOG_2025_07_23.md │ ├── old_CHANGELOG_2025_07_24.md │ ├── old_CHANGELOG_2025_07_25.md │ ├── old_CHANGELOG_2025_07_26_part01.md │ ├── old_CHANGELOG_2025_07_26_part02.md │ ├── old_CHANGELOG_2025_07_27_part01.md │ ├── old_CHANGELOG_2025_07_27_part02.md │ ├── old_CHANGELOG_2025_07_27_part03.md │ ├── old_CHANGELOG_2025_07_28.md │ ├── old_CHANGELOG_2025_08_11.md │ ├── old_CHANGELOG_2025_08_12.md │ ├── old_CHANGELOG_2025_08_13.md │ ├── old_CHANGELOG_2025_08_14.md │ └── old_CHANGELOG_2025_08_16.md ├── project-management-gicker │ ├── ARTIFICER_DEVICE_RECHARGE_SYSTEM.md │ ├── ARTISAN_POINTS_SYSTEM.md │ ├── BOARD_COMMAND_REGISTRATION_FIX.md │ ├── BOARD_COMMAND_ROUTING.md │ ├── BOARD_READ_TRACKING_SYSTEM.md │ ├── BOARD_REPLY_DISCONNECT_FIX.md │ ├── COLOR_CODES_MYSQL_BOARDS_FIX.md │ ├── COLOR_MACRO_REPLACEMENT.md │ ├── CRAFTING_STATIONS_IMPLEMENTATION.md │ ├── DEVICE_DC_PENALTY_IMPLEMENTATION.md │ ├── DUPLICATE_TALENTS_FIX.md │ ├── EXPERIENCE_MULTIPLIER_IMPLEMENTATION.md │ ├── FORCED_SHORT_DESC_IMPLEMENTATION.md │ ├── KNIGHTS_OF_SOLAMNIA_COMBINED.md │ ├── KNIGHT_IMPLEMENTATION_COMPLETE.md │ ├── KNIGHT_IMPLEMENTATION_STEPS.md │ ├── KNIGHT_SPELL_PROGRESSION.md │ ├── MYSQL_BOARDS_COMPLETE_SUMMARY.md │ ├── PVP_COOLDOWN_DISPLAY.md │ ├── PVP_FLAG_IMPLEMENTATION.md │ ├── PVP_PROTECTION_QUICK_REFERENCE.md │ ├── PVP_PROTECTION_SYSTEM.md │ ├── PVP_TIMER_INITIALIZATION_FIX.md │ ├── SHORT_DESCRIPTION_REQUIREMENT.md │ ├── SHORT_DESCRIPTION_REQUIREMENT_SUMMARY.md │ ├── SPELLS_BY_CLASS_HTML.md │ ├── SPELL_HTML_CLASS_INFO_UPDATE.md │ ├── SPELL_HTML_COLLAPSIBLE_UPDATE.md │ ├── SPELL_HTML_GENERATOR.md │ ├── SPELL_HTML_GENERATOR_DETAILED.md │ ├── class-talent-perk-system │ │ ├── BERSERKER_PERK_SYSTEM.md │ │ ├── BERSERKER_PRIMAL_WARRIOR_INTEGRATION.md │ │ ├── BERSERKER_RAVAGER_TIER_1_2_IMPLEMENTATION.md │ │ ├── BERSERKER_RAVAGER_TIER_3_4_IMPLEMENTATION.md │ │ ├── DRUID_NATURES_WARRIOR_TIER3_4_IMPLEMENTATION.md │ │ ├── DRUID_PERKS_IMPLEMENTATION.md │ │ ├── DRUID_SEASONS_HERALD_TIER1_2_IMPLEMENTATION.md │ │ ├── DRUID_SEASONS_HERALD_TIER3_4_IMPLEMENTATION.md │ │ ├── PALADIN_PERK_SYSTEM.md │ │ ├── PALADIN_TIER_3_4_PERKS_IMPLEMENTATION.md │ │ ├── RANGER_HUNTER_T3_T4_IMPLEMENTATION.md │ │ ├── RANGER_HUNTER_TREE_IMPLEMENTATION.md │ │ ├── RANGER_PERK_TREES.md │ │ └── TALENT_SYSTEM.md │ ├── knight_solamnia_class_def.txt │ └── mysql_boards_object_based_guide.txt ├── project-management-ornir │ ├── CLEANUP_REPORT.md │ ├── COMMAND_SEPARATION_SUMMARY.md │ ├── DATABASE_INITIALIZATION_COMPLETE.md │ ├── GITHUB_COPILOT_HANDOFF.md │ ├── PHASE4_COMPLETION_REPORT.md │ ├── PHASE_2B_SPATIAL_AUDIO_COMPLETION_REPORT.md │ ├── PHASE_2B_TESTING_GUIDE.md │ ├── PHASE_4_5_IMPLEMENTATION_SUMMARY.md │ ├── PHASE_4_5_TESTING.md │ ├── PHASE_4_75_PLAN.md │ ├── PHASE_4_75_TESTING.md │ ├── PHASE_4_COMPLETION_SUMMARY.md │ ├── PHASE_5_DESIGN.md │ ├── PHASE_5_IMPLEMENTATION_PLAN.md │ ├── PHASE_5_REGION_AFFECT_PLAN.md │ ├── PHASE_6_PLAN.md │ ├── PHASE_7_IMPLEMENTATION_GUIDE.md │ ├── PHASE_7_PLAN.md │ ├── PUB_SUB_PLAN.md │ ├── Phase7_Cascade_Implementation_Summary.md │ ├── database-integration │ │ └── DATABASE_INTEGRATION_EXPANSION.md │ ├── database_integration_expansion.md │ ├── narrative_weaver_realignment_plan.md │ ├── pubsub │ │ ├── EVENT_DRIVEN_ARCHITECTURE_GUIDE.md │ │ ├── PUB_SUB_MASTER_PLAN.md │ │ ├── README.md │ │ ├── SPATIAL_VISUAL_SYSTEM_PLAN.md │ │ ├── examples │ │ │ └── STRUCTURED_MESSAGES_EXAMPLES.md │ │ ├── phases │ │ │ ├── PHASE_2B_SPATIAL_AUDIO_COMPLETION_REPORT.md │ │ │ └── PHASE_3_IMPLEMENTATION_PLAN.md │ │ ├── pubsub_integration_examples.c │ │ ├── technical │ │ │ ├── API_REFERENCE.md │ │ │ ├── DEVELOPER_QUICK_START.md │ │ │ ├── EFFECTIVE_USAGE_GUIDE.md │ │ │ ├── INDEX.md │ │ │ ├── INSTALLATION_GUIDE.md │ │ │ ├── PERFORMANCE_GUIDE.md │ │ │ ├── STRUCTURED_MESSAGES_ARCHITECTURE.md │ │ │ ├── TECHNICAL_OVERVIEW.md │ │ │ └── WILDERNESS_SUBSCRIPTION_GUIDE.md │ │ └── testing │ │ │ └── PHASE_2B_TESTING_GUIDE.md │ ├── terrain-bridge-API.md │ └── wilderness │ │ ├── README_WILD.md │ │ ├── WILDERNESS-RESOURCE-PLAN.md │ │ ├── WILDERNESS_PROJECT.md │ │ └── WILDERNESS_TO_KB.md ├── project-management-zusuk │ ├── AI_TODO_IDEAS.md │ ├── CIRCLEMUD_CLIENT_AUDIT.md │ ├── DEPLOYMENT_LOG.md │ ├── DO_SKORE_PROJECT.md │ ├── IDEA_LIST.md │ ├── INTEGRATION_GUIDE.md │ ├── MERGE_MUD_EVENTS.md │ ├── MOUNT_AUDIT.md │ ├── PRODUCTION_DEPLOYMENT_STEPS.md │ ├── PROTOCOL_TODO.md │ ├── casting-visuals │ │ ├── casting-visuals-testing.md │ │ ├── current-casting-visuals.md │ │ ├── ideas-casting-visuals.md │ │ └── improving-casting-visuals.md │ ├── client_capabilities_and_player_preferences.md │ └── vessels │ │ ├── VESSELS_DEPLOYMENT_GUIDE.md │ │ ├── VESSELS_PHASE1.md │ │ ├── VESSELS_PHASE2.md │ │ ├── VESSELS_PROJECT_HIGH_LEVEL.md │ │ └── VESSELS_SCHEMA_VALIDATION.md ├── spells_by_class.html ├── spells_reference.html ├── systems │ ├── AI_REGION_HINTS_PLAN.md │ ├── AI_REGION_HINTS_STRATEGIC_PLAN.md │ ├── AI_REGION_HINTS_WORKFLOW.md │ ├── AI_SERVICE_README.md │ ├── AOE_EFFECT_SYSTEM.md │ ├── ARCHITECTURE.md │ ├── CAMPAIGN_SYSTEM_ARCHITECTURE.md │ ├── CLAN_SYSTEM.md │ ├── COMBAT_SYSTEM.md │ ├── COMMAND_SYSTEM_AND_INTERPRETER.md │ ├── CORE_SERVER_ARCHITECTURE.md │ ├── DATABASE_INITIALIZATION_SYSTEM.md │ ├── DATABASE_INTEGRATION.md │ ├── DISCORD_CHAT.md │ ├── DYNAMIC_RESOURCE_DESCRIPTIONS_PLAN.md │ ├── GAME_MECHANICS_SYSTEMS.md │ ├── HELP_SYSTEM.md │ ├── INTERMUD3.md │ ├── LISTS.md │ ├── METEOR_SWARM_MESSAGE_ENHANCEMENT.md │ ├── METEOR_SWARM_SPATIAL_EFFECTS.md │ ├── MOB_BEHAVIOR.md │ ├── MOB_SPELL_SLOTS_DESIGN.md │ ├── MOB_SPELL_SLOTS_FINAL_SUMMARY.md │ ├── MOB_SPELL_SLOTS_IMPLEMENTATION.md │ ├── MOB_SPELL_SLOTS_MIGRATION.md │ ├── MOB_SPELL_SLOTS_QUICK_START.md │ ├── MOVEMENT.md │ ├── MUD_EVENTS.md │ ├── OLC_ONLINE_CREATION_SYSTEM.md │ ├── PERKS_SYSTEM_DESIGN.md │ ├── PERK_SYSTEM_DESIGN.md │ ├── PLAYER_MANAGEMENT_SYSTEM.md │ ├── PROTOCOL_SYSTEMS.md │ ├── REGION_DESCRIPTION_ARCHITECTURE.md │ ├── REGION_HINTS_PHASE2_COMPLETE.md │ ├── RESOURCE_REGENERATION_QUICK_REFERENCE.md │ ├── RESOURCE_REGENERATION_SYSTEM.md │ ├── RESOURCE_SYSTEM_TECHNICAL.md │ ├── SAVE_SYSTEMS_BREAKDOWN.md │ ├── SCRIPTING_SYSTEM_DG.md │ ├── SHOP_SYSTEMS.md │ ├── SKORE_SYSTEM.md │ ├── SPATIAL_SYSTEMS_ARCHITECTURE.md │ ├── SPELL_PREPARATION_SYSTEM.md │ ├── STAFF_EVENT_SYSTEM.md │ ├── TRAP_SYSTEM_IMPLEMENTATION.md │ ├── UTILITY_SYSTEMS.md │ ├── WILDERNESS_CONNECTIVITY_ANALYSIS.md │ ├── narrative-weaver │ │ ├── CURRENT_IMPLEMENTATION_STATUS.md │ │ ├── DEPLOYMENT_INSTRUCTIONS.md │ │ ├── INTERMUD3_INTEGRATION_STATUS.md │ │ ├── NARRATIVE_WEAVER_ENHANCEMENT_PLAN.md │ │ ├── NEXT_STEPS.md │ │ ├── SYSTEM_ARCHITECTURE_OVERVIEW.md │ │ ├── TEMPLATE_FREE_NARRATIVE_WEAVING.md │ │ └── TODO.md │ └── perks │ │ ├── CLERIC_DOMAIN_MASTER_IMPLEMENTATION.md │ │ ├── CLERIC_PERKS.md │ │ ├── MONK_PERKS.md │ │ ├── RANGER_PERK_TREES.md │ │ ├── ROGUE_ASSASSIN_IMPLEMENTATION.md │ │ ├── ROGUE_PERKS.md │ │ ├── WARRIOR_DEFENDER_TIER1_TIER2_IMPLEMENTATION.md │ │ ├── WARRIOR_PERKS.md │ │ ├── WARRIOR_TIER1_IMPLEMENTATION.md │ │ ├── WARRIOR_TIER2_IMPLEMENTATION.md │ │ ├── WARRIOR_TIER3_IMPLEMENTATION.md │ │ └── WIZARD_PERKS.md ├── testing │ ├── CuTest_README.md │ ├── CuTest_license.txt │ ├── ORNIR_INTEGRATION_TEST_COMMANDS.md │ ├── RESOURCE_SYSTEM_TESTING.md │ ├── WEATHER_INTEGRATION_TESTING.md │ └── WILDERNESS_CRAFTING_INTEGRATION_TESTING.md ├── utilities │ └── README.md ├── web │ ├── README_WEB.md │ ├── assets │ │ ├── css │ │ │ └── style.css │ │ └── pandoc-template.html │ ├── data │ │ └── objects.json │ ├── dg-scripts │ │ ├── index.html │ │ └── staff-commands.html │ ├── guides │ │ ├── mob_flags.html │ │ ├── oedit.html │ │ └── room_flags.html │ ├── index.html │ ├── objects │ │ ├── README_OBJ.md │ │ └── index.html │ └── spells │ │ ├── by_class.html │ │ └── reference.html ├── world │ └── STARTER_AREA.md └── world_game-data │ ├── MOB_FLAGS.md │ ├── OEDIT_GUIDE.md │ ├── ROOM_FLAGS.md │ ├── builder_manual.md │ ├── crafting_notes_old.md │ ├── gear_guide.md │ └── wilderness_system.md ├── lib ├── .env_example ├── WILD_KB.md ├── etc │ └── .gitkeep ├── house │ └── .gitkeep ├── i3_config.example ├── luminari_wild_noise_elev.png ├── luminari_wilderness.png ├── misc │ ├── .gitkeep │ └── copyover_last_state.txt ├── mudmail │ └── .gitkeep ├── mysql_config_example ├── plrfiles │ ├── .gitkeep │ ├── A-E │ │ ├── .gitkeep │ │ └── 00 │ ├── F-J │ │ ├── .gitkeep │ │ └── 00 │ ├── K-O │ │ ├── .gitkeep │ │ └── 00 │ ├── P-T │ │ ├── .gitkeep │ │ └── 00 │ ├── U-Z │ │ ├── .gitkeep │ │ └── 00 │ └── ZZZ │ │ ├── .gitkeep │ │ └── 00 ├── plrobjs │ ├── .gitkeep │ ├── A-E │ │ ├── .gitkeep │ │ └── 00 │ ├── F-J │ │ ├── .gitkeep │ │ └── 00 │ ├── K-O │ │ ├── .gitkeep │ │ └── 00 │ ├── P-T │ │ ├── .gitkeep │ │ └── 00 │ ├── U-Z │ │ ├── .gitkeep │ │ └── 00 │ └── ZZZ │ │ ├── .gitkeep │ │ └── 00 ├── pubsub_v3_schema.sql ├── text │ ├── .gitkeep │ └── help │ │ └── .gitkeep └── world │ ├── .gitkeep │ ├── backup-zone.ps1 │ ├── backup-zone.sh │ ├── copytofr.sh │ ├── hlq │ └── .gitkeep │ ├── minimal │ ├── 0.mob │ ├── 0.obj │ ├── 0.wld │ ├── 0.zon │ ├── 16.mob │ ├── index.hlq │ ├── index.mob │ ├── index.obj │ ├── index.qst │ ├── index.shp │ ├── index.trg │ ├── index.wld │ └── index.zon │ ├── mob │ └── .gitkeep │ ├── mvzone.sh │ ├── obj │ └── .gitkeep │ ├── qst │ └── .gitkeep │ ├── rebuildindex.sh │ ├── remove-zone.sh │ ├── shp │ └── .gitkeep │ ├── trg │ └── .gitkeep │ ├── validate-zone.ps1 │ ├── validate-zone.sh │ ├── wld │ └── .gitkeep │ └── zon │ └── .gitkeep ├── log └── .gitkeep ├── luminari.service ├── scripts ├── check_permissions.sh ├── copyover_watchdog.sh ├── debug_game.sh ├── deploy.sh ├── enhanced_copyover_diagnostic.sh ├── fix_permissions.sh ├── move_bin.sh ├── setup.sh ├── setup_mariadb_sudoers.sh ├── start_mariadb.sh ├── test_pubsub.sh └── vgrind.sh ├── sql ├── GENERATE_SQL_SCHEMA.md ├── components │ ├── ai_region_hints_schema.sql │ ├── ai_service_migration.sql │ ├── dynamic_descriptions_deployment.sql │ ├── fix_help_entries_production.sql │ ├── fix_narrative_weaver_schema_inconsistencies.sql │ ├── help_system_indexes.sql │ ├── insert_room_templates.sql │ ├── mosswood_sample_data.sql │ ├── narrative_weaver_installation.sql │ ├── narrative_weaver_reference_schema.sql │ ├── phase7_cascade_migration.sql │ ├── pubsub_v3_schema.sql │ ├── region_description_schema.sql │ ├── region_effects_system.sql │ ├── region_resource_effects.sql │ ├── region_resource_effects_simple.sql │ ├── region_type_resource_effects.sql │ ├── resource_cascade_db.sql │ ├── resource_depletion_db.sql │ ├── resource_depletion_schema.sql │ ├── test_vessels_integrity.sql │ ├── verify_vessels_schema.sql │ ├── vessels_phase2_rollback.sql │ └── vessels_phase2_schema.sql ├── master_schema.sql └── perks_rogue_assassin_t1_t2.sql ├── src ├── .gitignore ├── account.c ├── account.h ├── act.comm.c ├── act.comm.do_spec_comm.c ├── act.h ├── act.informative.c ├── act.item.c ├── act.offensive.c ├── act.other.c ├── act.social.c ├── act.wizard.c ├── actionqueues.c ├── actionqueues.h ├── actions.c ├── actions.h ├── aedit.c ├── ai_cache.c ├── ai_events.c ├── ai_region_hints.c ├── ai_region_hints.h ├── ai_security.c ├── ai_service.c ├── ai_service.h ├── alchemy.c ├── alchemy.h ├── asciimap.c ├── asciimap.h ├── assign_wpn_armor.c ├── assign_wpn_armor.h ├── backgrounds.c ├── backgrounds.h ├── ban.c ├── ban.h ├── bardic_performance.c ├── bardic_performance.h ├── bedit.c ├── bedit.h ├── boards.c ├── boards.h ├── bool.h ├── brew.c ├── brew.h ├── bsd-snprintf.c ├── bsd-snprintf.h ├── campaign.example.h ├── casting_visuals.c ├── casting_visuals.h ├── castle.c.tbamud ├── cedit.c ├── char_descs.c ├── char_descs.h ├── clan.c ├── clan.h ├── clan_benefits.h ├── clan_economy.c ├── clan_economy.h ├── clan_edit.c ├── clan_transactions.c ├── clan_transactions.h ├── class.c ├── class.h ├── combat_modes.c ├── combat_modes.h ├── comm.c ├── comm.h ├── config.c ├── config.h ├── constants.c ├── constants.h ├── copyover_diagnostic.c ├── copyover_diagnostic.h ├── craft.c ├── craft.h ├── crafting_new.c ├── crafting_new.h ├── crafting_recipes.c ├── crafting_recipes.h ├── crafts.c ├── crafts.h ├── db.c ├── db.h ├── db_admin_commands.c ├── db_init.c ├── db_init.h ├── db_init_data.c ├── db_startup_init.c ├── deities.c ├── deities.h ├── desc_engine.c ├── desc_engine.h ├── dg_comm.c ├── dg_db_scripts.c ├── dg_event.c ├── dg_event.h ├── dg_handler.c ├── dg_misc.c ├── dg_mobcmd.c ├── dg_objcmd.c ├── dg_olc.c ├── dg_olc.h ├── dg_scripts.c ├── dg_scripts.h ├── dg_triggers.c ├── dg_variables.c ├── dg_wldcmd.c ├── discord_bridge.c ├── discord_bridge.h ├── domain_powers.c ├── domains_schools.c ├── domains_schools.h ├── dotenv.c ├── dotenv.h ├── encounters.c ├── encounters.h ├── enhanced_crafting_recipes.h ├── evolutions.c ├── evolutions.h ├── feats.c ├── feats.h ├── fight.c ├── fight.h ├── gain.c ├── genmob.c ├── genmob.h ├── genobj.c ├── genobj.h ├── genolc.c ├── genolc.h ├── genqst.c ├── genshp.c ├── genshp.h ├── genwld.c ├── genwld.h ├── genzon.c ├── genzon.h ├── graph.c ├── graph.h ├── grapple.c ├── grapple.h ├── handler.c ├── handler.h ├── hedit.c ├── hedit.h ├── help.c ├── help.h ├── helpers.c ├── helpers.h ├── hlqedit.c ├── hlquest.c ├── hlquest.h ├── house.c ├── house.h ├── hsedit.c ├── hunts.c ├── hunts.h ├── ibt.c ├── ibt.h ├── improved-edit.c ├── improved-edit.h ├── interpreter.c ├── interpreter.h ├── introduce.c ├── item.h ├── kdtree.c ├── kdtree.h ├── limits.c ├── lists.c ├── lists.h ├── magic.c ├── mail.c ├── mail.h ├── material_types.h ├── medit.c ├── metamagic_science.c ├── metamagic_science.h ├── missions.c ├── missions.h ├── mob_act.c ├── mob_act.h ├── mob_class.c ├── mob_class.h ├── mob_known_spells.c ├── mob_known_spells.h ├── mob_memory.c ├── mob_memory.h ├── mob_psionic.c ├── mob_psionic.h ├── mob_race.c ├── mob_race.h ├── mob_spells.c ├── mob_spells.h ├── mob_spellslots.c ├── mob_spellslots.h ├── mob_utils.c ├── mob_utils.h ├── modify.c ├── modify.h ├── movement.c ├── movement.h ├── movement_cost.c ├── movement_cost.h ├── movement_doors.c ├── movement_doors.h ├── movement_events.c ├── movement_events.h ├── movement_falling.c ├── movement_falling.h ├── movement_messages.c ├── movement_messages.h ├── movement_position.c ├── movement_position.h ├── movement_tracks.c ├── movement_tracks.h ├── movement_validation.c ├── movement_validation.h ├── msgedit.c ├── msgedit.h ├── mud_event.c ├── mud_event.h ├── mud_event_list.c ├── mud_options.example.h ├── mudlim.h ├── mysql.c ├── mysql.h ├── mysql_boards.c ├── mysql_boards.h ├── new_mail.c ├── new_mail.h ├── oasis.c ├── oasis.h ├── oasis_copy.c ├── oasis_delete.c ├── oasis_list.c ├── objsave.c ├── oedit.c ├── perfmon.c ├── perfmon.h ├── perks.c ├── perks.h ├── perlin.c ├── perlin.h ├── pfdefaults.h ├── players.c ├── prefedit.c ├── prefedit.h ├── premadebuilds.c ├── premadebuilds.h ├── protocol.c ├── protocol.h ├── psionics.c ├── psionics.h ├── pubsub.c ├── pubsub.h ├── pubsub_v3.h ├── qedit.c ├── quest.c ├── quest.h ├── race.c ├── race.h ├── random.c ├── random_names.c ├── random_names.h ├── rank.c ├── redit.c ├── region_hints.h ├── resource_cascade.c ├── resource_cascade.h ├── resource_cascade_integration.c ├── resource_depletion.c ├── resource_depletion.h ├── resource_depletion_simple.h ├── resource_descriptions.c ├── resource_descriptions.h ├── resource_regeneration.c ├── resource_regeneration.h ├── resource_system.c ├── resource_system.h ├── roleplay.c ├── roleplay.h ├── routing.c ├── routing.h ├── screen.h ├── sedit.c ├── shop.c ├── shop.h ├── spatial_audio.h ├── spatial_core.c ├── spatial_core.h ├── spatial_visual.c ├── spatial_visual.h ├── spec_abilities.c ├── spec_abilities.h ├── spec_assign.c ├── spec_procs.c ├── spec_procs.h ├── specs.artifacts.c ├── specs.artifacts.h ├── spell_parser.c ├── spell_prep.c ├── spell_prep.h ├── spellbook_scroll.c ├── spells.c ├── spells.h ├── staff_events.c ├── staff_events.h ├── structs.h ├── study.c ├── sysdep.h ├── systems │ ├── intermud3 │ │ ├── i3_client.c │ │ ├── i3_client.h │ │ ├── i3_commands.c │ │ ├── i3_utils.c │ │ └── i3_utils.h │ ├── narrative_weaver │ │ ├── narrative_weaver.c │ │ └── narrative_weaver.h │ ├── pubsub │ │ ├── pubsub_commands.c │ │ ├── pubsub_db.c │ │ ├── pubsub_event_handlers.c │ │ ├── pubsub_handlers.c │ │ ├── pubsub_queue.c │ │ ├── pubsub_spatial.c │ │ ├── pubsub_stubs.c │ │ └── pubsub_v3.c │ ├── region_hints │ │ └── region_hints.c │ ├── spatial │ │ ├── spatial_audio.c │ │ ├── spatial_core.c │ │ └── spatial_visual.c │ └── terrainbridge │ │ └── terrain_bridge.c ├── talents.c ├── talents.h ├── tedit.c ├── telnet.h ├── templates.c ├── templates.h ├── terrain_bridge.h ├── test_metamagic.c ├── trade.c ├── trade.h ├── trails.h ├── transport.c ├── transport.h ├── traps.c ├── traps.h ├── traps_new.c ├── treasure.c ├── treasure.h ├── treasure_const.c ├── utils.c ├── utils.h ├── vessels.c ├── vessels.h ├── vessels_db.c ├── vessels_docking.c ├── vessels_rooms.c ├── vessels_src.c ├── vessels_src.h ├── vnums.example.h ├── weather.c ├── wilderness.c ├── wilderness.h ├── wilderness_crafting_bridge.c ├── wilderness_crafting_bridge.h ├── wilderness_kb.c ├── wilderness_kb.h ├── zedit.c ├── zmalloc.c ├── zmalloc.h └── zone_procs.c ├── unittests ├── CuTest │ ├── CuTest.c │ ├── CuTest.h │ ├── README.txt │ ├── license.txt │ ├── make-tests.sh │ ├── test.helpers.c │ ├── test.interpreter.c │ ├── test_alignment.c │ ├── test_bounds_checking.c │ ├── test_char_cache.c │ ├── test_char_skills.c │ ├── test_random.c │ ├── test_treasure.c │ └── test_utils.c ├── Makefile-common ├── README.md ├── minunit.h ├── mocks.c ├── test_act.comm.c ├── test_act.comm.c-Makefile ├── test_clan.c ├── test_clan.c-Makefile ├── test_staff_events.c └── test_staff_events.c-Makefile └── util ├── Makefile.am ├── __pycache__ └── terrain_api_client.cpython-312.pyc ├── ai_ollama_llama └── host_your_llm.md ├── aider ├── aider_config_template.md ├── aider_generic_config_template.md ├── aider_setup.md └── conf.example.yml ├── asciipasswd.c ├── autoload.php ├── autowiz.c ├── bonus_breakdown.php ├── bonuses.php ├── check_score_help ├── check_score_help.c ├── claude_code ├── CLAUDE.example.md ├── claude_hooks.md └── claude_subagents.md ├── config.php ├── debug_mysql_exact ├── debug_mysql_exact.c ├── enter_encounter.php ├── enter_hunt.php ├── enter_spell_help.php ├── export_objectdb_to_json.py ├── generate_spell_html.sh ├── generate_spell_html_detailed.py ├── hl_events.c ├── hl_events.h ├── mysql_fix.patch ├── plrtoascii.c ├── powershell ├── Install-Profile.ps1 ├── ProfileTemplate.ps1 ├── README.md └── Remove-Profile.ps1 ├── rebuildAsciiIndex.c ├── rebuildMailIndex.c ├── scheck.md ├── shopconv.c ├── sign.c ├── spelllist_html ├── spelllist_html.c ├── split.c ├── terrain_api_client.py ├── test_exact_replication ├── test_exact_replication.c ├── test_lower_issue ├── test_lower_issue.c ├── test_mysql_c ├── test_mysql_c.c ├── test_mysql_fix ├── test_mysql_fix.c ├── test_mysql_prepared_statements.py ├── test_mysql_simple ├── test_mysql_simple.c ├── test_prepared_stmt_debug ├── test_prepared_stmt_debug.c ├── webster.c └── wld2html.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/README.md -------------------------------------------------------------------------------- /autorun-watchdog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/autorun-watchdog.sh -------------------------------------------------------------------------------- /autorun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/autorun.sh -------------------------------------------------------------------------------- /bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/cbuild.sh -------------------------------------------------------------------------------- /companion: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/configure.ac -------------------------------------------------------------------------------- /cp2dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/cp2dev.sh -------------------------------------------------------------------------------- /cp2live.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/cp2live.sh -------------------------------------------------------------------------------- /cpfr2live.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/cpfr2live.sh -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/GETTING_STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/GETTING_STARTED.md -------------------------------------------------------------------------------- /docs/GOLEM_CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/GOLEM_CHANGELOG.md -------------------------------------------------------------------------------- /docs/GOLEM_IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/GOLEM_IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/GOLEM_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/GOLEM_SYSTEM.md -------------------------------------------------------------------------------- /docs/TASK_LIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/TASK_LIST.md -------------------------------------------------------------------------------- /docs/TECHNICAL_DOCUMENTATION_MASTER_INDEX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/TECHNICAL_DOCUMENTATION_MASTER_INDEX.md -------------------------------------------------------------------------------- /docs/admin/CODEBASE_SCOPE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/admin/CODEBASE_SCOPE.md -------------------------------------------------------------------------------- /docs/admin/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/admin/FAQ.md -------------------------------------------------------------------------------- /docs/admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/admin/README.md -------------------------------------------------------------------------------- /docs/database/narrative_weaver_schema_fixes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/database/narrative_weaver_schema_fixes.md -------------------------------------------------------------------------------- /docs/deployment/DATABASE_DEPLOYMENT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/deployment/DATABASE_DEPLOYMENT_GUIDE.md -------------------------------------------------------------------------------- /docs/deployment/DEPLOYMENT_FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/deployment/DEPLOYMENT_FIX.md -------------------------------------------------------------------------------- /docs/deployment/DEPLOYMENT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/deployment/DEPLOYMENT_GUIDE.md -------------------------------------------------------------------------------- /docs/deployment/DEPLOYMENT_STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/deployment/DEPLOYMENT_STATUS.md -------------------------------------------------------------------------------- /docs/deployment/DISCORD_BRIDGE_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/deployment/DISCORD_BRIDGE_SETUP.md -------------------------------------------------------------------------------- /docs/deployment/INTEGRATION_EXAMPLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/deployment/INTEGRATION_EXAMPLE.md -------------------------------------------------------------------------------- /docs/development/CMAKE_BUILD_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/development/CMAKE_BUILD_GUIDE.md -------------------------------------------------------------------------------- /docs/development/DATA_STRUCTURES_AND_MEMORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/development/DATA_STRUCTURES_AND_MEMORY.md -------------------------------------------------------------------------------- /docs/development/MOB_AI_GROUP_LOGIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/development/MOB_AI_GROUP_LOGIC.md -------------------------------------------------------------------------------- /docs/development/MOB_BUFF_OUTSIDE_COMBAT_REMOVAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/development/MOB_BUFF_OUTSIDE_COMBAT_REMOVAL.md -------------------------------------------------------------------------------- /docs/development/MOB_SPELL_SLOT_INITIALIZATION_FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/development/MOB_SPELL_SLOT_INITIALIZATION_FIX.md -------------------------------------------------------------------------------- /docs/development/PERFORMANCE_OPTIMIZATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/development/PERFORMANCE_OPTIMIZATIONS.md -------------------------------------------------------------------------------- /docs/development/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/development/README.md -------------------------------------------------------------------------------- /docs/development/RESOURCE_REGENERATION_API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/development/RESOURCE_REGENERATION_API.md -------------------------------------------------------------------------------- /docs/development/STAT_MOB_SPELL_SLOTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/development/STAT_MOB_SPELL_SLOTS.md -------------------------------------------------------------------------------- /docs/development/WIZARD_AI_QUICK_REF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/development/WIZARD_AI_QUICK_REF.md -------------------------------------------------------------------------------- /docs/development/WIZARD_GROUP_AOE_SPELLS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/development/WIZARD_GROUP_AOE_SPELLS.md -------------------------------------------------------------------------------- /docs/development/WIZARD_MOB_BUFFING_TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/development/WIZARD_MOB_BUFFING_TROUBLESHOOTING.md -------------------------------------------------------------------------------- /docs/development/affect_update_optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/development/affect_update_optimization.md -------------------------------------------------------------------------------- /docs/development/dox_noGraphs.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/development/dox_noGraphs.doxyfile -------------------------------------------------------------------------------- /docs/development/dox_withGraphs.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/development/dox_withGraphs.doxyfile -------------------------------------------------------------------------------- /docs/development/perfmon_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/development/perfmon_help.txt -------------------------------------------------------------------------------- /docs/guides/DATABASE_INITIALIZATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/guides/DATABASE_INITIALIZATION_GUIDE.md -------------------------------------------------------------------------------- /docs/guides/DEVELOPER_GUIDE_AND_API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/guides/DEVELOPER_GUIDE_AND_API.md -------------------------------------------------------------------------------- /docs/guides/IMPORT_DB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/guides/IMPORT_DB.md -------------------------------------------------------------------------------- /docs/guides/NEW_PLAYER_GUIDE_LEVEL_1-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/guides/NEW_PLAYER_GUIDE_LEVEL_1-5.md -------------------------------------------------------------------------------- /docs/guides/OLC_SpecProcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/guides/OLC_SpecProcs.md -------------------------------------------------------------------------------- /docs/guides/PHASE_4_INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/guides/PHASE_4_INSTALLATION.md -------------------------------------------------------------------------------- /docs/guides/RESOURCE_SYSTEM_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/guides/RESOURCE_SYSTEM_REFERENCE.md -------------------------------------------------------------------------------- /docs/guides/TESTING_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/guides/TESTING_GUIDE.md -------------------------------------------------------------------------------- /docs/guides/TROUBLESHOOTING_AND_MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/guides/TROUBLESHOOTING_AND_MAINTENANCE.md -------------------------------------------------------------------------------- /docs/guides/ultimate-mud-writing-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/guides/ultimate-mud-writing-guide.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/legacy_installation/FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/FAQ.txt -------------------------------------------------------------------------------- /docs/legacy_installation/LEGACY_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/LEGACY_README.md -------------------------------------------------------------------------------- /docs/legacy_installation/Makefile.amiga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/Makefile.amiga -------------------------------------------------------------------------------- /docs/legacy_installation/Makefile.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/Makefile.arc -------------------------------------------------------------------------------- /docs/legacy_installation/Makefile.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/Makefile.bcc -------------------------------------------------------------------------------- /docs/legacy_installation/Makefile.bcc55: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/Makefile.bcc55 -------------------------------------------------------------------------------- /docs/legacy_installation/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/Makefile.in -------------------------------------------------------------------------------- /docs/legacy_installation/Makefile.in_bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/Makefile.in_bak -------------------------------------------------------------------------------- /docs/legacy_installation/Makefile.in_util_bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/Makefile.in_util_bak -------------------------------------------------------------------------------- /docs/legacy_installation/Makefile.lcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/Makefile.lcc -------------------------------------------------------------------------------- /docs/legacy_installation/Makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/Makefile.msvc -------------------------------------------------------------------------------- /docs/legacy_installation/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/Makefile.os2 -------------------------------------------------------------------------------- /docs/legacy_installation/Makefile_bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/Makefile_bak -------------------------------------------------------------------------------- /docs/legacy_installation/Makefile_util_bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/Makefile_util_bak -------------------------------------------------------------------------------- /docs/legacy_installation/ProtocolSystem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/ProtocolSystem.txt -------------------------------------------------------------------------------- /docs/legacy_installation/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/README -------------------------------------------------------------------------------- /docs/legacy_installation/README.AMIGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/README.AMIGA -------------------------------------------------------------------------------- /docs/legacy_installation/README.ARC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/README.ARC -------------------------------------------------------------------------------- /docs/legacy_installation/README.BORLAND: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/README.BORLAND -------------------------------------------------------------------------------- /docs/legacy_installation/README.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/README.BSD -------------------------------------------------------------------------------- /docs/legacy_installation/README.CMAKE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/README.CMAKE.md -------------------------------------------------------------------------------- /docs/legacy_installation/README.CYGWIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/README.CYGWIN -------------------------------------------------------------------------------- /docs/legacy_installation/README.MSVC2022: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/README.MSVC2022 -------------------------------------------------------------------------------- /docs/legacy_installation/README.MSVC4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/README.MSVC4 -------------------------------------------------------------------------------- /docs/legacy_installation/README.MSVC5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/README.MSVC5 -------------------------------------------------------------------------------- /docs/legacy_installation/README.MSVC6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/README.MSVC6 -------------------------------------------------------------------------------- /docs/legacy_installation/README.MSVC8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/README.MSVC8 -------------------------------------------------------------------------------- /docs/legacy_installation/README.OS2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/README.OS2 -------------------------------------------------------------------------------- /docs/legacy_installation/README.UNIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/README.UNIX -------------------------------------------------------------------------------- /docs/legacy_installation/README.VMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/README.VMS -------------------------------------------------------------------------------- /docs/legacy_installation/README.WATCOM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/README.WATCOM -------------------------------------------------------------------------------- /docs/legacy_installation/README.WIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/README.WIN -------------------------------------------------------------------------------- /docs/legacy_installation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/README.md -------------------------------------------------------------------------------- /docs/legacy_installation/README_HSITORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/README_HSITORY.md -------------------------------------------------------------------------------- /docs/legacy_installation/Smakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/Smakefile -------------------------------------------------------------------------------- /docs/legacy_installation/UnixShellAdminGuide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/UnixShellAdminGuide.pdf -------------------------------------------------------------------------------- /docs/legacy_installation/aclocal.m4_bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/aclocal.m4_bak -------------------------------------------------------------------------------- /docs/legacy_installation/act.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/act.txt -------------------------------------------------------------------------------- /docs/legacy_installation/admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/admin.txt -------------------------------------------------------------------------------- /docs/legacy_installation/autorun.amiga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/autorun.amiga -------------------------------------------------------------------------------- /docs/legacy_installation/autorun.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/autorun.pl -------------------------------------------------------------------------------- /docs/legacy_installation/autorun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/autorun.sh -------------------------------------------------------------------------------- /docs/legacy_installation/build_circlemud.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/build_circlemud.com -------------------------------------------------------------------------------- /docs/legacy_installation/building.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/building.txt -------------------------------------------------------------------------------- /docs/legacy_installation/coding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/coding.txt -------------------------------------------------------------------------------- /docs/legacy_installation/color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/color.txt -------------------------------------------------------------------------------- /docs/legacy_installation/conf.h.amiga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/conf.h.amiga -------------------------------------------------------------------------------- /docs/legacy_installation/conf.h.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/conf.h.arc -------------------------------------------------------------------------------- /docs/legacy_installation/conf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/conf.h.in -------------------------------------------------------------------------------- /docs/legacy_installation/conf.h.in.old_root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/conf.h.in.old_root -------------------------------------------------------------------------------- /docs/legacy_installation/conf.h.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/conf.h.mac -------------------------------------------------------------------------------- /docs/legacy_installation/conf.h.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/conf.h.os2 -------------------------------------------------------------------------------- /docs/legacy_installation/conf.h.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/conf.h.vms -------------------------------------------------------------------------------- /docs/legacy_installation/conf.h.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/conf.h.win -------------------------------------------------------------------------------- /docs/legacy_installation/configure.old_bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/configure.old_bak -------------------------------------------------------------------------------- /docs/legacy_installation/debugging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/debugging.txt -------------------------------------------------------------------------------- /docs/legacy_installation/dg_events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/dg_events.txt -------------------------------------------------------------------------------- /docs/legacy_installation/do_mail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/do_mail -------------------------------------------------------------------------------- /docs/legacy_installation/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/files -------------------------------------------------------------------------------- /docs/legacy_installation/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/files.txt -------------------------------------------------------------------------------- /docs/legacy_installation/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/license.txt -------------------------------------------------------------------------------- /docs/legacy_installation/licheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/licheck -------------------------------------------------------------------------------- /docs/legacy_installation/macrun.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/macrun.pl -------------------------------------------------------------------------------- /docs/legacy_installation/msgedit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/msgedit.txt -------------------------------------------------------------------------------- /docs/legacy_installation/porting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/porting.txt -------------------------------------------------------------------------------- /docs/legacy_installation/qedit_manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/qedit_manual.pdf -------------------------------------------------------------------------------- /docs/legacy_installation/releases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/releases.txt -------------------------------------------------------------------------------- /docs/legacy_installation/socials.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/socials.txt -------------------------------------------------------------------------------- /docs/legacy_installation/syserr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/syserr.txt -------------------------------------------------------------------------------- /docs/legacy_installation/utils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/utils.txt -------------------------------------------------------------------------------- /docs/legacy_installation/vms_autorun.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legacy_installation/vms_autorun.com -------------------------------------------------------------------------------- /docs/legal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/legal/README.md -------------------------------------------------------------------------------- /docs/lore_luminari/DEITIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/lore_luminari/DEITIES.md -------------------------------------------------------------------------------- /docs/lore_luminari/KNIGHTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/lore_luminari/KNIGHTS.md -------------------------------------------------------------------------------- /docs/previous_changelogs/old_CHANGELOG_2025_07_23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/previous_changelogs/old_CHANGELOG_2025_07_23.md -------------------------------------------------------------------------------- /docs/previous_changelogs/old_CHANGELOG_2025_07_24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/previous_changelogs/old_CHANGELOG_2025_07_24.md -------------------------------------------------------------------------------- /docs/previous_changelogs/old_CHANGELOG_2025_07_25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/previous_changelogs/old_CHANGELOG_2025_07_25.md -------------------------------------------------------------------------------- /docs/previous_changelogs/old_CHANGELOG_2025_07_26_part01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/previous_changelogs/old_CHANGELOG_2025_07_26_part01.md -------------------------------------------------------------------------------- /docs/previous_changelogs/old_CHANGELOG_2025_07_26_part02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/previous_changelogs/old_CHANGELOG_2025_07_26_part02.md -------------------------------------------------------------------------------- /docs/previous_changelogs/old_CHANGELOG_2025_07_27_part01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/previous_changelogs/old_CHANGELOG_2025_07_27_part01.md -------------------------------------------------------------------------------- /docs/previous_changelogs/old_CHANGELOG_2025_07_27_part02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/previous_changelogs/old_CHANGELOG_2025_07_27_part02.md -------------------------------------------------------------------------------- /docs/previous_changelogs/old_CHANGELOG_2025_07_27_part03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/previous_changelogs/old_CHANGELOG_2025_07_27_part03.md -------------------------------------------------------------------------------- /docs/previous_changelogs/old_CHANGELOG_2025_07_28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/previous_changelogs/old_CHANGELOG_2025_07_28.md -------------------------------------------------------------------------------- /docs/previous_changelogs/old_CHANGELOG_2025_08_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/previous_changelogs/old_CHANGELOG_2025_08_11.md -------------------------------------------------------------------------------- /docs/previous_changelogs/old_CHANGELOG_2025_08_12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/previous_changelogs/old_CHANGELOG_2025_08_12.md -------------------------------------------------------------------------------- /docs/previous_changelogs/old_CHANGELOG_2025_08_13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/previous_changelogs/old_CHANGELOG_2025_08_13.md -------------------------------------------------------------------------------- /docs/previous_changelogs/old_CHANGELOG_2025_08_14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/previous_changelogs/old_CHANGELOG_2025_08_14.md -------------------------------------------------------------------------------- /docs/previous_changelogs/old_CHANGELOG_2025_08_16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/previous_changelogs/old_CHANGELOG_2025_08_16.md -------------------------------------------------------------------------------- /docs/project-management-gicker/ARTISAN_POINTS_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/ARTISAN_POINTS_SYSTEM.md -------------------------------------------------------------------------------- /docs/project-management-gicker/BOARD_COMMAND_REGISTRATION_FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/BOARD_COMMAND_REGISTRATION_FIX.md -------------------------------------------------------------------------------- /docs/project-management-gicker/BOARD_COMMAND_ROUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/BOARD_COMMAND_ROUTING.md -------------------------------------------------------------------------------- /docs/project-management-gicker/BOARD_READ_TRACKING_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/BOARD_READ_TRACKING_SYSTEM.md -------------------------------------------------------------------------------- /docs/project-management-gicker/BOARD_REPLY_DISCONNECT_FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/BOARD_REPLY_DISCONNECT_FIX.md -------------------------------------------------------------------------------- /docs/project-management-gicker/COLOR_CODES_MYSQL_BOARDS_FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/COLOR_CODES_MYSQL_BOARDS_FIX.md -------------------------------------------------------------------------------- /docs/project-management-gicker/COLOR_MACRO_REPLACEMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/COLOR_MACRO_REPLACEMENT.md -------------------------------------------------------------------------------- /docs/project-management-gicker/DUPLICATE_TALENTS_FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/DUPLICATE_TALENTS_FIX.md -------------------------------------------------------------------------------- /docs/project-management-gicker/KNIGHTS_OF_SOLAMNIA_COMBINED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/KNIGHTS_OF_SOLAMNIA_COMBINED.md -------------------------------------------------------------------------------- /docs/project-management-gicker/KNIGHT_IMPLEMENTATION_COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/KNIGHT_IMPLEMENTATION_COMPLETE.md -------------------------------------------------------------------------------- /docs/project-management-gicker/KNIGHT_IMPLEMENTATION_STEPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/KNIGHT_IMPLEMENTATION_STEPS.md -------------------------------------------------------------------------------- /docs/project-management-gicker/KNIGHT_SPELL_PROGRESSION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/KNIGHT_SPELL_PROGRESSION.md -------------------------------------------------------------------------------- /docs/project-management-gicker/MYSQL_BOARDS_COMPLETE_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/MYSQL_BOARDS_COMPLETE_SUMMARY.md -------------------------------------------------------------------------------- /docs/project-management-gicker/PVP_COOLDOWN_DISPLAY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/PVP_COOLDOWN_DISPLAY.md -------------------------------------------------------------------------------- /docs/project-management-gicker/PVP_FLAG_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/PVP_FLAG_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/project-management-gicker/PVP_PROTECTION_QUICK_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/PVP_PROTECTION_QUICK_REFERENCE.md -------------------------------------------------------------------------------- /docs/project-management-gicker/PVP_PROTECTION_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/PVP_PROTECTION_SYSTEM.md -------------------------------------------------------------------------------- /docs/project-management-gicker/PVP_TIMER_INITIALIZATION_FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/PVP_TIMER_INITIALIZATION_FIX.md -------------------------------------------------------------------------------- /docs/project-management-gicker/SHORT_DESCRIPTION_REQUIREMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/SHORT_DESCRIPTION_REQUIREMENT.md -------------------------------------------------------------------------------- /docs/project-management-gicker/SPELLS_BY_CLASS_HTML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/SPELLS_BY_CLASS_HTML.md -------------------------------------------------------------------------------- /docs/project-management-gicker/SPELL_HTML_CLASS_INFO_UPDATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/SPELL_HTML_CLASS_INFO_UPDATE.md -------------------------------------------------------------------------------- /docs/project-management-gicker/SPELL_HTML_GENERATOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/SPELL_HTML_GENERATOR.md -------------------------------------------------------------------------------- /docs/project-management-gicker/knight_solamnia_class_def.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-gicker/knight_solamnia_class_def.txt -------------------------------------------------------------------------------- /docs/project-management-ornir/CLEANUP_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/CLEANUP_REPORT.md -------------------------------------------------------------------------------- /docs/project-management-ornir/COMMAND_SEPARATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/COMMAND_SEPARATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/project-management-ornir/GITHUB_COPILOT_HANDOFF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/GITHUB_COPILOT_HANDOFF.md -------------------------------------------------------------------------------- /docs/project-management-ornir/PHASE4_COMPLETION_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/PHASE4_COMPLETION_REPORT.md -------------------------------------------------------------------------------- /docs/project-management-ornir/PHASE_2B_TESTING_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/PHASE_2B_TESTING_GUIDE.md -------------------------------------------------------------------------------- /docs/project-management-ornir/PHASE_4_5_TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/PHASE_4_5_TESTING.md -------------------------------------------------------------------------------- /docs/project-management-ornir/PHASE_4_75_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/PHASE_4_75_PLAN.md -------------------------------------------------------------------------------- /docs/project-management-ornir/PHASE_4_75_TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/PHASE_4_75_TESTING.md -------------------------------------------------------------------------------- /docs/project-management-ornir/PHASE_4_COMPLETION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/PHASE_4_COMPLETION_SUMMARY.md -------------------------------------------------------------------------------- /docs/project-management-ornir/PHASE_5_DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/PHASE_5_DESIGN.md -------------------------------------------------------------------------------- /docs/project-management-ornir/PHASE_5_IMPLEMENTATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/PHASE_5_IMPLEMENTATION_PLAN.md -------------------------------------------------------------------------------- /docs/project-management-ornir/PHASE_5_REGION_AFFECT_PLAN.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/project-management-ornir/PHASE_6_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/PHASE_6_PLAN.md -------------------------------------------------------------------------------- /docs/project-management-ornir/PHASE_7_IMPLEMENTATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/PHASE_7_IMPLEMENTATION_GUIDE.md -------------------------------------------------------------------------------- /docs/project-management-ornir/PHASE_7_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/PHASE_7_PLAN.md -------------------------------------------------------------------------------- /docs/project-management-ornir/PUB_SUB_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/PUB_SUB_PLAN.md -------------------------------------------------------------------------------- /docs/project-management-ornir/pubsub/PUB_SUB_MASTER_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/pubsub/PUB_SUB_MASTER_PLAN.md -------------------------------------------------------------------------------- /docs/project-management-ornir/pubsub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/pubsub/README.md -------------------------------------------------------------------------------- /docs/project-management-ornir/pubsub/technical/INDEX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/pubsub/technical/INDEX.md -------------------------------------------------------------------------------- /docs/project-management-ornir/terrain-bridge-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/terrain-bridge-API.md -------------------------------------------------------------------------------- /docs/project-management-ornir/wilderness/README_WILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/wilderness/README_WILD.md -------------------------------------------------------------------------------- /docs/project-management-ornir/wilderness/WILDERNESS_PROJECT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/wilderness/WILDERNESS_PROJECT.md -------------------------------------------------------------------------------- /docs/project-management-ornir/wilderness/WILDERNESS_TO_KB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-ornir/wilderness/WILDERNESS_TO_KB.md -------------------------------------------------------------------------------- /docs/project-management-zusuk/AI_TODO_IDEAS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-zusuk/AI_TODO_IDEAS.md -------------------------------------------------------------------------------- /docs/project-management-zusuk/CIRCLEMUD_CLIENT_AUDIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-zusuk/CIRCLEMUD_CLIENT_AUDIT.md -------------------------------------------------------------------------------- /docs/project-management-zusuk/DEPLOYMENT_LOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-zusuk/DEPLOYMENT_LOG.md -------------------------------------------------------------------------------- /docs/project-management-zusuk/DO_SKORE_PROJECT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-zusuk/DO_SKORE_PROJECT.md -------------------------------------------------------------------------------- /docs/project-management-zusuk/IDEA_LIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-zusuk/IDEA_LIST.md -------------------------------------------------------------------------------- /docs/project-management-zusuk/INTEGRATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-zusuk/INTEGRATION_GUIDE.md -------------------------------------------------------------------------------- /docs/project-management-zusuk/MERGE_MUD_EVENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-zusuk/MERGE_MUD_EVENTS.md -------------------------------------------------------------------------------- /docs/project-management-zusuk/MOUNT_AUDIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-zusuk/MOUNT_AUDIT.md -------------------------------------------------------------------------------- /docs/project-management-zusuk/PRODUCTION_DEPLOYMENT_STEPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-zusuk/PRODUCTION_DEPLOYMENT_STEPS.md -------------------------------------------------------------------------------- /docs/project-management-zusuk/PROTOCOL_TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-zusuk/PROTOCOL_TODO.md -------------------------------------------------------------------------------- /docs/project-management-zusuk/vessels/VESSELS_PHASE1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-zusuk/vessels/VESSELS_PHASE1.md -------------------------------------------------------------------------------- /docs/project-management-zusuk/vessels/VESSELS_PHASE2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/project-management-zusuk/vessels/VESSELS_PHASE2.md -------------------------------------------------------------------------------- /docs/spells_by_class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/spells_by_class.html -------------------------------------------------------------------------------- /docs/spells_reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/spells_reference.html -------------------------------------------------------------------------------- /docs/systems/AI_REGION_HINTS_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/AI_REGION_HINTS_PLAN.md -------------------------------------------------------------------------------- /docs/systems/AI_REGION_HINTS_STRATEGIC_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/AI_REGION_HINTS_STRATEGIC_PLAN.md -------------------------------------------------------------------------------- /docs/systems/AI_REGION_HINTS_WORKFLOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/AI_REGION_HINTS_WORKFLOW.md -------------------------------------------------------------------------------- /docs/systems/AI_SERVICE_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/AI_SERVICE_README.md -------------------------------------------------------------------------------- /docs/systems/AOE_EFFECT_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/AOE_EFFECT_SYSTEM.md -------------------------------------------------------------------------------- /docs/systems/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/systems/CAMPAIGN_SYSTEM_ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/CAMPAIGN_SYSTEM_ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/systems/CLAN_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/CLAN_SYSTEM.md -------------------------------------------------------------------------------- /docs/systems/COMBAT_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/COMBAT_SYSTEM.md -------------------------------------------------------------------------------- /docs/systems/COMMAND_SYSTEM_AND_INTERPRETER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/COMMAND_SYSTEM_AND_INTERPRETER.md -------------------------------------------------------------------------------- /docs/systems/CORE_SERVER_ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/CORE_SERVER_ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/systems/DATABASE_INITIALIZATION_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/DATABASE_INITIALIZATION_SYSTEM.md -------------------------------------------------------------------------------- /docs/systems/DATABASE_INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/DATABASE_INTEGRATION.md -------------------------------------------------------------------------------- /docs/systems/DISCORD_CHAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/DISCORD_CHAT.md -------------------------------------------------------------------------------- /docs/systems/DYNAMIC_RESOURCE_DESCRIPTIONS_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/DYNAMIC_RESOURCE_DESCRIPTIONS_PLAN.md -------------------------------------------------------------------------------- /docs/systems/GAME_MECHANICS_SYSTEMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/GAME_MECHANICS_SYSTEMS.md -------------------------------------------------------------------------------- /docs/systems/HELP_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/HELP_SYSTEM.md -------------------------------------------------------------------------------- /docs/systems/INTERMUD3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/INTERMUD3.md -------------------------------------------------------------------------------- /docs/systems/LISTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/LISTS.md -------------------------------------------------------------------------------- /docs/systems/METEOR_SWARM_MESSAGE_ENHANCEMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/METEOR_SWARM_MESSAGE_ENHANCEMENT.md -------------------------------------------------------------------------------- /docs/systems/METEOR_SWARM_SPATIAL_EFFECTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/METEOR_SWARM_SPATIAL_EFFECTS.md -------------------------------------------------------------------------------- /docs/systems/MOB_BEHAVIOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/MOB_BEHAVIOR.md -------------------------------------------------------------------------------- /docs/systems/MOB_SPELL_SLOTS_DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/MOB_SPELL_SLOTS_DESIGN.md -------------------------------------------------------------------------------- /docs/systems/MOB_SPELL_SLOTS_FINAL_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/MOB_SPELL_SLOTS_FINAL_SUMMARY.md -------------------------------------------------------------------------------- /docs/systems/MOB_SPELL_SLOTS_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/MOB_SPELL_SLOTS_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/systems/MOB_SPELL_SLOTS_MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/MOB_SPELL_SLOTS_MIGRATION.md -------------------------------------------------------------------------------- /docs/systems/MOB_SPELL_SLOTS_QUICK_START.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/MOB_SPELL_SLOTS_QUICK_START.md -------------------------------------------------------------------------------- /docs/systems/MOVEMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/MOVEMENT.md -------------------------------------------------------------------------------- /docs/systems/MUD_EVENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/MUD_EVENTS.md -------------------------------------------------------------------------------- /docs/systems/OLC_ONLINE_CREATION_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/OLC_ONLINE_CREATION_SYSTEM.md -------------------------------------------------------------------------------- /docs/systems/PERKS_SYSTEM_DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/PERKS_SYSTEM_DESIGN.md -------------------------------------------------------------------------------- /docs/systems/PERK_SYSTEM_DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/PERK_SYSTEM_DESIGN.md -------------------------------------------------------------------------------- /docs/systems/PLAYER_MANAGEMENT_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/PLAYER_MANAGEMENT_SYSTEM.md -------------------------------------------------------------------------------- /docs/systems/PROTOCOL_SYSTEMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/PROTOCOL_SYSTEMS.md -------------------------------------------------------------------------------- /docs/systems/REGION_DESCRIPTION_ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/REGION_DESCRIPTION_ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/systems/REGION_HINTS_PHASE2_COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/REGION_HINTS_PHASE2_COMPLETE.md -------------------------------------------------------------------------------- /docs/systems/RESOURCE_REGENERATION_QUICK_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/RESOURCE_REGENERATION_QUICK_REFERENCE.md -------------------------------------------------------------------------------- /docs/systems/RESOURCE_REGENERATION_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/RESOURCE_REGENERATION_SYSTEM.md -------------------------------------------------------------------------------- /docs/systems/RESOURCE_SYSTEM_TECHNICAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/RESOURCE_SYSTEM_TECHNICAL.md -------------------------------------------------------------------------------- /docs/systems/SAVE_SYSTEMS_BREAKDOWN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/SAVE_SYSTEMS_BREAKDOWN.md -------------------------------------------------------------------------------- /docs/systems/SCRIPTING_SYSTEM_DG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/SCRIPTING_SYSTEM_DG.md -------------------------------------------------------------------------------- /docs/systems/SHOP_SYSTEMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/SHOP_SYSTEMS.md -------------------------------------------------------------------------------- /docs/systems/SKORE_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/SKORE_SYSTEM.md -------------------------------------------------------------------------------- /docs/systems/SPATIAL_SYSTEMS_ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/SPATIAL_SYSTEMS_ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/systems/SPELL_PREPARATION_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/SPELL_PREPARATION_SYSTEM.md -------------------------------------------------------------------------------- /docs/systems/STAFF_EVENT_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/STAFF_EVENT_SYSTEM.md -------------------------------------------------------------------------------- /docs/systems/TRAP_SYSTEM_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/TRAP_SYSTEM_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/systems/UTILITY_SYSTEMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/UTILITY_SYSTEMS.md -------------------------------------------------------------------------------- /docs/systems/WILDERNESS_CONNECTIVITY_ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/WILDERNESS_CONNECTIVITY_ANALYSIS.md -------------------------------------------------------------------------------- /docs/systems/narrative-weaver/CURRENT_IMPLEMENTATION_STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/narrative-weaver/CURRENT_IMPLEMENTATION_STATUS.md -------------------------------------------------------------------------------- /docs/systems/narrative-weaver/DEPLOYMENT_INSTRUCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/narrative-weaver/DEPLOYMENT_INSTRUCTIONS.md -------------------------------------------------------------------------------- /docs/systems/narrative-weaver/INTERMUD3_INTEGRATION_STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/narrative-weaver/INTERMUD3_INTEGRATION_STATUS.md -------------------------------------------------------------------------------- /docs/systems/narrative-weaver/NEXT_STEPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/narrative-weaver/NEXT_STEPS.md -------------------------------------------------------------------------------- /docs/systems/narrative-weaver/SYSTEM_ARCHITECTURE_OVERVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/narrative-weaver/SYSTEM_ARCHITECTURE_OVERVIEW.md -------------------------------------------------------------------------------- /docs/systems/narrative-weaver/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/narrative-weaver/TODO.md -------------------------------------------------------------------------------- /docs/systems/perks/CLERIC_DOMAIN_MASTER_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/perks/CLERIC_DOMAIN_MASTER_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/systems/perks/CLERIC_PERKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/perks/CLERIC_PERKS.md -------------------------------------------------------------------------------- /docs/systems/perks/MONK_PERKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/perks/MONK_PERKS.md -------------------------------------------------------------------------------- /docs/systems/perks/RANGER_PERK_TREES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/perks/RANGER_PERK_TREES.md -------------------------------------------------------------------------------- /docs/systems/perks/ROGUE_ASSASSIN_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/perks/ROGUE_ASSASSIN_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/systems/perks/ROGUE_PERKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/perks/ROGUE_PERKS.md -------------------------------------------------------------------------------- /docs/systems/perks/WARRIOR_PERKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/perks/WARRIOR_PERKS.md -------------------------------------------------------------------------------- /docs/systems/perks/WARRIOR_TIER1_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/perks/WARRIOR_TIER1_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/systems/perks/WARRIOR_TIER2_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/perks/WARRIOR_TIER2_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/systems/perks/WARRIOR_TIER3_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/perks/WARRIOR_TIER3_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/systems/perks/WIZARD_PERKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/systems/perks/WIZARD_PERKS.md -------------------------------------------------------------------------------- /docs/testing/CuTest_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/testing/CuTest_README.md -------------------------------------------------------------------------------- /docs/testing/CuTest_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/testing/CuTest_license.txt -------------------------------------------------------------------------------- /docs/testing/ORNIR_INTEGRATION_TEST_COMMANDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/testing/ORNIR_INTEGRATION_TEST_COMMANDS.md -------------------------------------------------------------------------------- /docs/testing/RESOURCE_SYSTEM_TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/testing/RESOURCE_SYSTEM_TESTING.md -------------------------------------------------------------------------------- /docs/testing/WEATHER_INTEGRATION_TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/testing/WEATHER_INTEGRATION_TESTING.md -------------------------------------------------------------------------------- /docs/testing/WILDERNESS_CRAFTING_INTEGRATION_TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/testing/WILDERNESS_CRAFTING_INTEGRATION_TESTING.md -------------------------------------------------------------------------------- /docs/utilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/utilities/README.md -------------------------------------------------------------------------------- /docs/web/README_WEB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/web/README_WEB.md -------------------------------------------------------------------------------- /docs/web/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/web/assets/css/style.css -------------------------------------------------------------------------------- /docs/web/assets/pandoc-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/web/assets/pandoc-template.html -------------------------------------------------------------------------------- /docs/web/data/objects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/web/data/objects.json -------------------------------------------------------------------------------- /docs/web/dg-scripts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/web/dg-scripts/index.html -------------------------------------------------------------------------------- /docs/web/dg-scripts/staff-commands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/web/dg-scripts/staff-commands.html -------------------------------------------------------------------------------- /docs/web/guides/mob_flags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/web/guides/mob_flags.html -------------------------------------------------------------------------------- /docs/web/guides/oedit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/web/guides/oedit.html -------------------------------------------------------------------------------- /docs/web/guides/room_flags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/web/guides/room_flags.html -------------------------------------------------------------------------------- /docs/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/web/index.html -------------------------------------------------------------------------------- /docs/web/objects/README_OBJ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/web/objects/README_OBJ.md -------------------------------------------------------------------------------- /docs/web/objects/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/web/objects/index.html -------------------------------------------------------------------------------- /docs/web/spells/by_class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/web/spells/by_class.html -------------------------------------------------------------------------------- /docs/web/spells/reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/web/spells/reference.html -------------------------------------------------------------------------------- /docs/world/STARTER_AREA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/world/STARTER_AREA.md -------------------------------------------------------------------------------- /docs/world_game-data/MOB_FLAGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/world_game-data/MOB_FLAGS.md -------------------------------------------------------------------------------- /docs/world_game-data/OEDIT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/world_game-data/OEDIT_GUIDE.md -------------------------------------------------------------------------------- /docs/world_game-data/ROOM_FLAGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/world_game-data/ROOM_FLAGS.md -------------------------------------------------------------------------------- /docs/world_game-data/builder_manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/world_game-data/builder_manual.md -------------------------------------------------------------------------------- /docs/world_game-data/crafting_notes_old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/world_game-data/crafting_notes_old.md -------------------------------------------------------------------------------- /docs/world_game-data/gear_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/world_game-data/gear_guide.md -------------------------------------------------------------------------------- /docs/world_game-data/wilderness_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/docs/world_game-data/wilderness_system.md -------------------------------------------------------------------------------- /lib/.env_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/.env_example -------------------------------------------------------------------------------- /lib/WILD_KB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/WILD_KB.md -------------------------------------------------------------------------------- /lib/etc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/house/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/i3_config.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/i3_config.example -------------------------------------------------------------------------------- /lib/luminari_wild_noise_elev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/luminari_wild_noise_elev.png -------------------------------------------------------------------------------- /lib/luminari_wilderness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/luminari_wilderness.png -------------------------------------------------------------------------------- /lib/misc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/misc/copyover_last_state.txt: -------------------------------------------------------------------------------- 1 | Last Phase: START 2 | Timestamp: 1755422662 3 | Details: Copyover initiated 4 | -------------------------------------------------------------------------------- /lib/mudmail/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/mysql_config_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/mysql_config_example -------------------------------------------------------------------------------- /lib/plrfiles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/plrfiles/A-E/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/plrfiles/A-E/00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/plrfiles/A-E/00 -------------------------------------------------------------------------------- /lib/plrfiles/F-J/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/plrfiles/F-J/00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/plrfiles/F-J/00 -------------------------------------------------------------------------------- /lib/plrfiles/K-O/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/plrfiles/K-O/00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/plrfiles/K-O/00 -------------------------------------------------------------------------------- /lib/plrfiles/P-T/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/plrfiles/P-T/00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/plrfiles/P-T/00 -------------------------------------------------------------------------------- /lib/plrfiles/U-Z/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/plrfiles/U-Z/00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/plrfiles/U-Z/00 -------------------------------------------------------------------------------- /lib/plrfiles/ZZZ/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/plrfiles/ZZZ/00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/plrfiles/ZZZ/00 -------------------------------------------------------------------------------- /lib/plrobjs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/plrobjs/A-E/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/plrobjs/A-E/00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/plrobjs/A-E/00 -------------------------------------------------------------------------------- /lib/plrobjs/F-J/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/plrobjs/F-J/00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/plrobjs/F-J/00 -------------------------------------------------------------------------------- /lib/plrobjs/K-O/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/plrobjs/K-O/00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/plrobjs/K-O/00 -------------------------------------------------------------------------------- /lib/plrobjs/P-T/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/plrobjs/P-T/00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/plrobjs/P-T/00 -------------------------------------------------------------------------------- /lib/plrobjs/U-Z/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/plrobjs/U-Z/00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/plrobjs/U-Z/00 -------------------------------------------------------------------------------- /lib/plrobjs/ZZZ/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/plrobjs/ZZZ/00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/plrobjs/ZZZ/00 -------------------------------------------------------------------------------- /lib/pubsub_v3_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/pubsub_v3_schema.sql -------------------------------------------------------------------------------- /lib/text/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/text/help/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/world/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/world/backup-zone.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/world/backup-zone.ps1 -------------------------------------------------------------------------------- /lib/world/backup-zone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/world/backup-zone.sh -------------------------------------------------------------------------------- /lib/world/copytofr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/world/copytofr.sh -------------------------------------------------------------------------------- /lib/world/hlq/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/world/minimal/0.mob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/world/minimal/0.mob -------------------------------------------------------------------------------- /lib/world/minimal/0.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/world/minimal/0.obj -------------------------------------------------------------------------------- /lib/world/minimal/0.wld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/world/minimal/0.wld -------------------------------------------------------------------------------- /lib/world/minimal/0.zon: -------------------------------------------------------------------------------- 1 | #0 2 | None.~ 3 | The Void~ 4 | 0 3099 30 2 5 | S 6 | $ 7 | -------------------------------------------------------------------------------- /lib/world/minimal/16.mob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/world/minimal/16.mob -------------------------------------------------------------------------------- /lib/world/minimal/index.hlq: -------------------------------------------------------------------------------- 1 | $ 2 | -------------------------------------------------------------------------------- /lib/world/minimal/index.mob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/world/minimal/index.mob -------------------------------------------------------------------------------- /lib/world/minimal/index.obj: -------------------------------------------------------------------------------- 1 | 0.obj 2 | $ 3 | -------------------------------------------------------------------------------- /lib/world/minimal/index.qst: -------------------------------------------------------------------------------- 1 | $ 2 | -------------------------------------------------------------------------------- /lib/world/minimal/index.shp: -------------------------------------------------------------------------------- 1 | $ 2 | -------------------------------------------------------------------------------- /lib/world/minimal/index.trg: -------------------------------------------------------------------------------- 1 | $ 2 | -------------------------------------------------------------------------------- /lib/world/minimal/index.wld: -------------------------------------------------------------------------------- 1 | 0.wld 2 | $ 3 | -------------------------------------------------------------------------------- /lib/world/minimal/index.zon: -------------------------------------------------------------------------------- 1 | 0.zon 2 | $ 3 | -------------------------------------------------------------------------------- /lib/world/mob/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/world/mvzone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/world/mvzone.sh -------------------------------------------------------------------------------- /lib/world/obj/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/world/qst/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/world/rebuildindex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/world/rebuildindex.sh -------------------------------------------------------------------------------- /lib/world/remove-zone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/world/remove-zone.sh -------------------------------------------------------------------------------- /lib/world/shp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/world/trg/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/world/validate-zone.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/world/validate-zone.ps1 -------------------------------------------------------------------------------- /lib/world/validate-zone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/lib/world/validate-zone.sh -------------------------------------------------------------------------------- /lib/world/wld/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/world/zon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luminari.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/luminari.service -------------------------------------------------------------------------------- /scripts/check_permissions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/scripts/check_permissions.sh -------------------------------------------------------------------------------- /scripts/copyover_watchdog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/scripts/copyover_watchdog.sh -------------------------------------------------------------------------------- /scripts/debug_game.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/scripts/debug_game.sh -------------------------------------------------------------------------------- /scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/scripts/deploy.sh -------------------------------------------------------------------------------- /scripts/enhanced_copyover_diagnostic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/scripts/enhanced_copyover_diagnostic.sh -------------------------------------------------------------------------------- /scripts/fix_permissions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/scripts/fix_permissions.sh -------------------------------------------------------------------------------- /scripts/move_bin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/scripts/move_bin.sh -------------------------------------------------------------------------------- /scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/scripts/setup.sh -------------------------------------------------------------------------------- /scripts/setup_mariadb_sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/scripts/setup_mariadb_sudoers.sh -------------------------------------------------------------------------------- /scripts/start_mariadb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/scripts/start_mariadb.sh -------------------------------------------------------------------------------- /scripts/test_pubsub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/scripts/test_pubsub.sh -------------------------------------------------------------------------------- /scripts/vgrind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/scripts/vgrind.sh -------------------------------------------------------------------------------- /sql/GENERATE_SQL_SCHEMA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/GENERATE_SQL_SCHEMA.md -------------------------------------------------------------------------------- /sql/components/ai_region_hints_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/components/ai_region_hints_schema.sql -------------------------------------------------------------------------------- /sql/components/ai_service_migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/components/ai_service_migration.sql -------------------------------------------------------------------------------- /sql/components/dynamic_descriptions_deployment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/components/dynamic_descriptions_deployment.sql -------------------------------------------------------------------------------- /sql/components/fix_help_entries_production.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/components/fix_help_entries_production.sql -------------------------------------------------------------------------------- /sql/components/fix_narrative_weaver_schema_inconsistencies.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/components/fix_narrative_weaver_schema_inconsistencies.sql -------------------------------------------------------------------------------- /sql/components/help_system_indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/components/help_system_indexes.sql -------------------------------------------------------------------------------- /sql/components/insert_room_templates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/components/insert_room_templates.sql -------------------------------------------------------------------------------- /sql/components/mosswood_sample_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/components/mosswood_sample_data.sql -------------------------------------------------------------------------------- /sql/components/narrative_weaver_installation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/components/narrative_weaver_installation.sql -------------------------------------------------------------------------------- /sql/components/narrative_weaver_reference_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/components/narrative_weaver_reference_schema.sql -------------------------------------------------------------------------------- /sql/components/phase7_cascade_migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/components/phase7_cascade_migration.sql -------------------------------------------------------------------------------- /sql/components/pubsub_v3_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/components/pubsub_v3_schema.sql -------------------------------------------------------------------------------- /sql/components/region_description_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/components/region_description_schema.sql -------------------------------------------------------------------------------- /sql/components/region_effects_system.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/components/region_effects_system.sql -------------------------------------------------------------------------------- /sql/components/region_resource_effects.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sql/components/region_resource_effects_simple.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sql/components/region_type_resource_effects.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sql/components/resource_cascade_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/components/resource_cascade_db.sql -------------------------------------------------------------------------------- /sql/components/resource_depletion_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/components/resource_depletion_db.sql -------------------------------------------------------------------------------- /sql/components/resource_depletion_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/components/resource_depletion_schema.sql -------------------------------------------------------------------------------- /sql/components/test_vessels_integrity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/components/test_vessels_integrity.sql -------------------------------------------------------------------------------- /sql/components/verify_vessels_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/components/verify_vessels_schema.sql -------------------------------------------------------------------------------- /sql/components/vessels_phase2_rollback.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/components/vessels_phase2_rollback.sql -------------------------------------------------------------------------------- /sql/components/vessels_phase2_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/components/vessels_phase2_schema.sql -------------------------------------------------------------------------------- /sql/master_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/master_schema.sql -------------------------------------------------------------------------------- /sql/perks_rogue_assassin_t1_t2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/sql/perks_rogue_assassin_t1_t2.sql -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | depend 3 | *.swp 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /src/account.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/account.c -------------------------------------------------------------------------------- /src/account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/account.h -------------------------------------------------------------------------------- /src/act.comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/act.comm.c -------------------------------------------------------------------------------- /src/act.comm.do_spec_comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/act.comm.do_spec_comm.c -------------------------------------------------------------------------------- /src/act.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/act.h -------------------------------------------------------------------------------- /src/act.informative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/act.informative.c -------------------------------------------------------------------------------- /src/act.item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/act.item.c -------------------------------------------------------------------------------- /src/act.offensive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/act.offensive.c -------------------------------------------------------------------------------- /src/act.other.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/act.other.c -------------------------------------------------------------------------------- /src/act.social.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/act.social.c -------------------------------------------------------------------------------- /src/act.wizard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/act.wizard.c -------------------------------------------------------------------------------- /src/actionqueues.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/actionqueues.c -------------------------------------------------------------------------------- /src/actionqueues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/actionqueues.h -------------------------------------------------------------------------------- /src/actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/actions.c -------------------------------------------------------------------------------- /src/actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/actions.h -------------------------------------------------------------------------------- /src/aedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/aedit.c -------------------------------------------------------------------------------- /src/ai_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/ai_cache.c -------------------------------------------------------------------------------- /src/ai_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/ai_events.c -------------------------------------------------------------------------------- /src/ai_region_hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/ai_region_hints.c -------------------------------------------------------------------------------- /src/ai_region_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/ai_region_hints.h -------------------------------------------------------------------------------- /src/ai_security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/ai_security.c -------------------------------------------------------------------------------- /src/ai_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/ai_service.c -------------------------------------------------------------------------------- /src/ai_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/ai_service.h -------------------------------------------------------------------------------- /src/alchemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/alchemy.c -------------------------------------------------------------------------------- /src/alchemy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/alchemy.h -------------------------------------------------------------------------------- /src/asciimap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/asciimap.c -------------------------------------------------------------------------------- /src/asciimap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/asciimap.h -------------------------------------------------------------------------------- /src/assign_wpn_armor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/assign_wpn_armor.c -------------------------------------------------------------------------------- /src/assign_wpn_armor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/assign_wpn_armor.h -------------------------------------------------------------------------------- /src/backgrounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/backgrounds.c -------------------------------------------------------------------------------- /src/backgrounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/backgrounds.h -------------------------------------------------------------------------------- /src/ban.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/ban.c -------------------------------------------------------------------------------- /src/ban.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/ban.h -------------------------------------------------------------------------------- /src/bardic_performance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/bardic_performance.c -------------------------------------------------------------------------------- /src/bardic_performance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/bardic_performance.h -------------------------------------------------------------------------------- /src/bedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/bedit.c -------------------------------------------------------------------------------- /src/bedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/bedit.h -------------------------------------------------------------------------------- /src/boards.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/boards.c -------------------------------------------------------------------------------- /src/boards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/boards.h -------------------------------------------------------------------------------- /src/bool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/bool.h -------------------------------------------------------------------------------- /src/brew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/brew.c -------------------------------------------------------------------------------- /src/brew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/brew.h -------------------------------------------------------------------------------- /src/bsd-snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/bsd-snprintf.c -------------------------------------------------------------------------------- /src/bsd-snprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/bsd-snprintf.h -------------------------------------------------------------------------------- /src/campaign.example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/campaign.example.h -------------------------------------------------------------------------------- /src/casting_visuals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/casting_visuals.c -------------------------------------------------------------------------------- /src/casting_visuals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/casting_visuals.h -------------------------------------------------------------------------------- /src/castle.c.tbamud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/castle.c.tbamud -------------------------------------------------------------------------------- /src/cedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/cedit.c -------------------------------------------------------------------------------- /src/char_descs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/char_descs.c -------------------------------------------------------------------------------- /src/char_descs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/char_descs.h -------------------------------------------------------------------------------- /src/clan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/clan.c -------------------------------------------------------------------------------- /src/clan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/clan.h -------------------------------------------------------------------------------- /src/clan_benefits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/clan_benefits.h -------------------------------------------------------------------------------- /src/clan_economy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/clan_economy.c -------------------------------------------------------------------------------- /src/clan_economy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/clan_economy.h -------------------------------------------------------------------------------- /src/clan_edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/clan_edit.c -------------------------------------------------------------------------------- /src/clan_transactions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/clan_transactions.c -------------------------------------------------------------------------------- /src/clan_transactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/clan_transactions.h -------------------------------------------------------------------------------- /src/class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/class.c -------------------------------------------------------------------------------- /src/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/class.h -------------------------------------------------------------------------------- /src/combat_modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/combat_modes.c -------------------------------------------------------------------------------- /src/combat_modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/combat_modes.h -------------------------------------------------------------------------------- /src/comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/comm.c -------------------------------------------------------------------------------- /src/comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/comm.h -------------------------------------------------------------------------------- /src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/config.c -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/config.h -------------------------------------------------------------------------------- /src/constants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/constants.c -------------------------------------------------------------------------------- /src/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/constants.h -------------------------------------------------------------------------------- /src/copyover_diagnostic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/copyover_diagnostic.c -------------------------------------------------------------------------------- /src/copyover_diagnostic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/copyover_diagnostic.h -------------------------------------------------------------------------------- /src/craft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/craft.c -------------------------------------------------------------------------------- /src/craft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/craft.h -------------------------------------------------------------------------------- /src/crafting_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/crafting_new.c -------------------------------------------------------------------------------- /src/crafting_new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/crafting_new.h -------------------------------------------------------------------------------- /src/crafting_recipes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/crafting_recipes.c -------------------------------------------------------------------------------- /src/crafting_recipes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/crafting_recipes.h -------------------------------------------------------------------------------- /src/crafts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/crafts.c -------------------------------------------------------------------------------- /src/crafts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/crafts.h -------------------------------------------------------------------------------- /src/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/db.c -------------------------------------------------------------------------------- /src/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/db.h -------------------------------------------------------------------------------- /src/db_admin_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/db_admin_commands.c -------------------------------------------------------------------------------- /src/db_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/db_init.c -------------------------------------------------------------------------------- /src/db_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/db_init.h -------------------------------------------------------------------------------- /src/db_init_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/db_init_data.c -------------------------------------------------------------------------------- /src/db_startup_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/db_startup_init.c -------------------------------------------------------------------------------- /src/deities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/deities.c -------------------------------------------------------------------------------- /src/deities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/deities.h -------------------------------------------------------------------------------- /src/desc_engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/desc_engine.c -------------------------------------------------------------------------------- /src/desc_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/desc_engine.h -------------------------------------------------------------------------------- /src/dg_comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/dg_comm.c -------------------------------------------------------------------------------- /src/dg_db_scripts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/dg_db_scripts.c -------------------------------------------------------------------------------- /src/dg_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/dg_event.c -------------------------------------------------------------------------------- /src/dg_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/dg_event.h -------------------------------------------------------------------------------- /src/dg_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/dg_handler.c -------------------------------------------------------------------------------- /src/dg_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/dg_misc.c -------------------------------------------------------------------------------- /src/dg_mobcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/dg_mobcmd.c -------------------------------------------------------------------------------- /src/dg_objcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/dg_objcmd.c -------------------------------------------------------------------------------- /src/dg_olc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/dg_olc.c -------------------------------------------------------------------------------- /src/dg_olc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/dg_olc.h -------------------------------------------------------------------------------- /src/dg_scripts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/dg_scripts.c -------------------------------------------------------------------------------- /src/dg_scripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/dg_scripts.h -------------------------------------------------------------------------------- /src/dg_triggers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/dg_triggers.c -------------------------------------------------------------------------------- /src/dg_variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/dg_variables.c -------------------------------------------------------------------------------- /src/dg_wldcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/dg_wldcmd.c -------------------------------------------------------------------------------- /src/discord_bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/discord_bridge.c -------------------------------------------------------------------------------- /src/discord_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/discord_bridge.h -------------------------------------------------------------------------------- /src/domain_powers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/domain_powers.c -------------------------------------------------------------------------------- /src/domains_schools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/domains_schools.c -------------------------------------------------------------------------------- /src/domains_schools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/domains_schools.h -------------------------------------------------------------------------------- /src/dotenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/dotenv.c -------------------------------------------------------------------------------- /src/dotenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/dotenv.h -------------------------------------------------------------------------------- /src/encounters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/encounters.c -------------------------------------------------------------------------------- /src/encounters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/encounters.h -------------------------------------------------------------------------------- /src/enhanced_crafting_recipes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/enhanced_crafting_recipes.h -------------------------------------------------------------------------------- /src/evolutions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/evolutions.c -------------------------------------------------------------------------------- /src/evolutions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/evolutions.h -------------------------------------------------------------------------------- /src/feats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/feats.c -------------------------------------------------------------------------------- /src/feats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/feats.h -------------------------------------------------------------------------------- /src/fight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/fight.c -------------------------------------------------------------------------------- /src/fight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/fight.h -------------------------------------------------------------------------------- /src/gain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/gain.c -------------------------------------------------------------------------------- /src/genmob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/genmob.c -------------------------------------------------------------------------------- /src/genmob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/genmob.h -------------------------------------------------------------------------------- /src/genobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/genobj.c -------------------------------------------------------------------------------- /src/genobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/genobj.h -------------------------------------------------------------------------------- /src/genolc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/genolc.c -------------------------------------------------------------------------------- /src/genolc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/genolc.h -------------------------------------------------------------------------------- /src/genqst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/genqst.c -------------------------------------------------------------------------------- /src/genshp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/genshp.c -------------------------------------------------------------------------------- /src/genshp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/genshp.h -------------------------------------------------------------------------------- /src/genwld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/genwld.c -------------------------------------------------------------------------------- /src/genwld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/genwld.h -------------------------------------------------------------------------------- /src/genzon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/genzon.c -------------------------------------------------------------------------------- /src/genzon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/genzon.h -------------------------------------------------------------------------------- /src/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/graph.c -------------------------------------------------------------------------------- /src/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/graph.h -------------------------------------------------------------------------------- /src/grapple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/grapple.c -------------------------------------------------------------------------------- /src/grapple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/grapple.h -------------------------------------------------------------------------------- /src/handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/handler.c -------------------------------------------------------------------------------- /src/handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/handler.h -------------------------------------------------------------------------------- /src/hedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/hedit.c -------------------------------------------------------------------------------- /src/hedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/hedit.h -------------------------------------------------------------------------------- /src/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/help.c -------------------------------------------------------------------------------- /src/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/help.h -------------------------------------------------------------------------------- /src/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/helpers.c -------------------------------------------------------------------------------- /src/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/helpers.h -------------------------------------------------------------------------------- /src/hlqedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/hlqedit.c -------------------------------------------------------------------------------- /src/hlquest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/hlquest.c -------------------------------------------------------------------------------- /src/hlquest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/hlquest.h -------------------------------------------------------------------------------- /src/house.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/house.c -------------------------------------------------------------------------------- /src/house.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/house.h -------------------------------------------------------------------------------- /src/hsedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/hsedit.c -------------------------------------------------------------------------------- /src/hunts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/hunts.c -------------------------------------------------------------------------------- /src/hunts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/hunts.h -------------------------------------------------------------------------------- /src/ibt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/ibt.c -------------------------------------------------------------------------------- /src/ibt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/ibt.h -------------------------------------------------------------------------------- /src/improved-edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/improved-edit.c -------------------------------------------------------------------------------- /src/improved-edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/improved-edit.h -------------------------------------------------------------------------------- /src/interpreter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/interpreter.c -------------------------------------------------------------------------------- /src/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/interpreter.h -------------------------------------------------------------------------------- /src/introduce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/introduce.c -------------------------------------------------------------------------------- /src/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/item.h -------------------------------------------------------------------------------- /src/kdtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/kdtree.c -------------------------------------------------------------------------------- /src/kdtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/kdtree.h -------------------------------------------------------------------------------- /src/limits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/limits.c -------------------------------------------------------------------------------- /src/lists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/lists.c -------------------------------------------------------------------------------- /src/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/lists.h -------------------------------------------------------------------------------- /src/magic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/magic.c -------------------------------------------------------------------------------- /src/mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mail.c -------------------------------------------------------------------------------- /src/mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mail.h -------------------------------------------------------------------------------- /src/material_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/material_types.h -------------------------------------------------------------------------------- /src/medit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/medit.c -------------------------------------------------------------------------------- /src/metamagic_science.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/metamagic_science.c -------------------------------------------------------------------------------- /src/metamagic_science.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/metamagic_science.h -------------------------------------------------------------------------------- /src/missions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/missions.c -------------------------------------------------------------------------------- /src/missions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/missions.h -------------------------------------------------------------------------------- /src/mob_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mob_act.c -------------------------------------------------------------------------------- /src/mob_act.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mob_act.h -------------------------------------------------------------------------------- /src/mob_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mob_class.c -------------------------------------------------------------------------------- /src/mob_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mob_class.h -------------------------------------------------------------------------------- /src/mob_known_spells.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mob_known_spells.c -------------------------------------------------------------------------------- /src/mob_known_spells.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mob_known_spells.h -------------------------------------------------------------------------------- /src/mob_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mob_memory.c -------------------------------------------------------------------------------- /src/mob_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mob_memory.h -------------------------------------------------------------------------------- /src/mob_psionic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mob_psionic.c -------------------------------------------------------------------------------- /src/mob_psionic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mob_psionic.h -------------------------------------------------------------------------------- /src/mob_race.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mob_race.c -------------------------------------------------------------------------------- /src/mob_race.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mob_race.h -------------------------------------------------------------------------------- /src/mob_spells.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mob_spells.c -------------------------------------------------------------------------------- /src/mob_spells.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mob_spells.h -------------------------------------------------------------------------------- /src/mob_spellslots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mob_spellslots.c -------------------------------------------------------------------------------- /src/mob_spellslots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mob_spellslots.h -------------------------------------------------------------------------------- /src/mob_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mob_utils.c -------------------------------------------------------------------------------- /src/mob_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mob_utils.h -------------------------------------------------------------------------------- /src/modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/modify.c -------------------------------------------------------------------------------- /src/modify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/modify.h -------------------------------------------------------------------------------- /src/movement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/movement.c -------------------------------------------------------------------------------- /src/movement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/movement.h -------------------------------------------------------------------------------- /src/movement_cost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/movement_cost.c -------------------------------------------------------------------------------- /src/movement_cost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/movement_cost.h -------------------------------------------------------------------------------- /src/movement_doors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/movement_doors.c -------------------------------------------------------------------------------- /src/movement_doors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/movement_doors.h -------------------------------------------------------------------------------- /src/movement_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/movement_events.c -------------------------------------------------------------------------------- /src/movement_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/movement_events.h -------------------------------------------------------------------------------- /src/movement_falling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/movement_falling.c -------------------------------------------------------------------------------- /src/movement_falling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/movement_falling.h -------------------------------------------------------------------------------- /src/movement_messages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/movement_messages.c -------------------------------------------------------------------------------- /src/movement_messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/movement_messages.h -------------------------------------------------------------------------------- /src/movement_position.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/movement_position.c -------------------------------------------------------------------------------- /src/movement_position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/movement_position.h -------------------------------------------------------------------------------- /src/movement_tracks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/movement_tracks.c -------------------------------------------------------------------------------- /src/movement_tracks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/movement_tracks.h -------------------------------------------------------------------------------- /src/movement_validation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/movement_validation.c -------------------------------------------------------------------------------- /src/movement_validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/movement_validation.h -------------------------------------------------------------------------------- /src/msgedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/msgedit.c -------------------------------------------------------------------------------- /src/msgedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/msgedit.h -------------------------------------------------------------------------------- /src/mud_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mud_event.c -------------------------------------------------------------------------------- /src/mud_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mud_event.h -------------------------------------------------------------------------------- /src/mud_event_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mud_event_list.c -------------------------------------------------------------------------------- /src/mud_options.example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mud_options.example.h -------------------------------------------------------------------------------- /src/mudlim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mudlim.h -------------------------------------------------------------------------------- /src/mysql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mysql.c -------------------------------------------------------------------------------- /src/mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mysql.h -------------------------------------------------------------------------------- /src/mysql_boards.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mysql_boards.c -------------------------------------------------------------------------------- /src/mysql_boards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/mysql_boards.h -------------------------------------------------------------------------------- /src/new_mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/new_mail.c -------------------------------------------------------------------------------- /src/new_mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/new_mail.h -------------------------------------------------------------------------------- /src/oasis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/oasis.c -------------------------------------------------------------------------------- /src/oasis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/oasis.h -------------------------------------------------------------------------------- /src/oasis_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/oasis_copy.c -------------------------------------------------------------------------------- /src/oasis_delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/oasis_delete.c -------------------------------------------------------------------------------- /src/oasis_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/oasis_list.c -------------------------------------------------------------------------------- /src/objsave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/objsave.c -------------------------------------------------------------------------------- /src/oedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/oedit.c -------------------------------------------------------------------------------- /src/perfmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/perfmon.c -------------------------------------------------------------------------------- /src/perfmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/perfmon.h -------------------------------------------------------------------------------- /src/perks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/perks.c -------------------------------------------------------------------------------- /src/perks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/perks.h -------------------------------------------------------------------------------- /src/perlin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/perlin.c -------------------------------------------------------------------------------- /src/perlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/perlin.h -------------------------------------------------------------------------------- /src/pfdefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/pfdefaults.h -------------------------------------------------------------------------------- /src/players.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/players.c -------------------------------------------------------------------------------- /src/prefedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/prefedit.c -------------------------------------------------------------------------------- /src/prefedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/prefedit.h -------------------------------------------------------------------------------- /src/premadebuilds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/premadebuilds.c -------------------------------------------------------------------------------- /src/premadebuilds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/premadebuilds.h -------------------------------------------------------------------------------- /src/protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/protocol.c -------------------------------------------------------------------------------- /src/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/protocol.h -------------------------------------------------------------------------------- /src/psionics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/psionics.c -------------------------------------------------------------------------------- /src/psionics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/psionics.h -------------------------------------------------------------------------------- /src/pubsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/pubsub.c -------------------------------------------------------------------------------- /src/pubsub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/pubsub.h -------------------------------------------------------------------------------- /src/pubsub_v3.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/qedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/qedit.c -------------------------------------------------------------------------------- /src/quest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/quest.c -------------------------------------------------------------------------------- /src/quest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/quest.h -------------------------------------------------------------------------------- /src/race.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/race.c -------------------------------------------------------------------------------- /src/race.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/race.h -------------------------------------------------------------------------------- /src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/random.c -------------------------------------------------------------------------------- /src/random_names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/random_names.c -------------------------------------------------------------------------------- /src/random_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/random_names.h -------------------------------------------------------------------------------- /src/rank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/rank.c -------------------------------------------------------------------------------- /src/redit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/redit.c -------------------------------------------------------------------------------- /src/region_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/region_hints.h -------------------------------------------------------------------------------- /src/resource_cascade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/resource_cascade.c -------------------------------------------------------------------------------- /src/resource_cascade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/resource_cascade.h -------------------------------------------------------------------------------- /src/resource_cascade_integration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/resource_cascade_integration.c -------------------------------------------------------------------------------- /src/resource_depletion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/resource_depletion.c -------------------------------------------------------------------------------- /src/resource_depletion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/resource_depletion.h -------------------------------------------------------------------------------- /src/resource_depletion_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/resource_depletion_simple.h -------------------------------------------------------------------------------- /src/resource_descriptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/resource_descriptions.c -------------------------------------------------------------------------------- /src/resource_descriptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/resource_descriptions.h -------------------------------------------------------------------------------- /src/resource_regeneration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/resource_regeneration.c -------------------------------------------------------------------------------- /src/resource_regeneration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/resource_regeneration.h -------------------------------------------------------------------------------- /src/resource_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/resource_system.c -------------------------------------------------------------------------------- /src/resource_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/resource_system.h -------------------------------------------------------------------------------- /src/roleplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/roleplay.c -------------------------------------------------------------------------------- /src/roleplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/roleplay.h -------------------------------------------------------------------------------- /src/routing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/routing.c -------------------------------------------------------------------------------- /src/routing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/routing.h -------------------------------------------------------------------------------- /src/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/screen.h -------------------------------------------------------------------------------- /src/sedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/sedit.c -------------------------------------------------------------------------------- /src/shop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/shop.c -------------------------------------------------------------------------------- /src/shop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/shop.h -------------------------------------------------------------------------------- /src/spatial_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/spatial_audio.h -------------------------------------------------------------------------------- /src/spatial_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/spatial_core.c -------------------------------------------------------------------------------- /src/spatial_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/spatial_core.h -------------------------------------------------------------------------------- /src/spatial_visual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/spatial_visual.c -------------------------------------------------------------------------------- /src/spatial_visual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/spatial_visual.h -------------------------------------------------------------------------------- /src/spec_abilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/spec_abilities.c -------------------------------------------------------------------------------- /src/spec_abilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/spec_abilities.h -------------------------------------------------------------------------------- /src/spec_assign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/spec_assign.c -------------------------------------------------------------------------------- /src/spec_procs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/spec_procs.c -------------------------------------------------------------------------------- /src/spec_procs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/spec_procs.h -------------------------------------------------------------------------------- /src/specs.artifacts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/specs.artifacts.c -------------------------------------------------------------------------------- /src/specs.artifacts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/specs.artifacts.h -------------------------------------------------------------------------------- /src/spell_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/spell_parser.c -------------------------------------------------------------------------------- /src/spell_prep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/spell_prep.c -------------------------------------------------------------------------------- /src/spell_prep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/spell_prep.h -------------------------------------------------------------------------------- /src/spellbook_scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/spellbook_scroll.c -------------------------------------------------------------------------------- /src/spells.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/spells.c -------------------------------------------------------------------------------- /src/spells.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/spells.h -------------------------------------------------------------------------------- /src/staff_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/staff_events.c -------------------------------------------------------------------------------- /src/staff_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/staff_events.h -------------------------------------------------------------------------------- /src/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/structs.h -------------------------------------------------------------------------------- /src/study.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/study.c -------------------------------------------------------------------------------- /src/sysdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/sysdep.h -------------------------------------------------------------------------------- /src/systems/intermud3/i3_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/systems/intermud3/i3_client.c -------------------------------------------------------------------------------- /src/systems/intermud3/i3_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/systems/intermud3/i3_client.h -------------------------------------------------------------------------------- /src/systems/intermud3/i3_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/systems/intermud3/i3_commands.c -------------------------------------------------------------------------------- /src/systems/intermud3/i3_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/systems/intermud3/i3_utils.c -------------------------------------------------------------------------------- /src/systems/intermud3/i3_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/systems/intermud3/i3_utils.h -------------------------------------------------------------------------------- /src/systems/narrative_weaver/narrative_weaver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/systems/narrative_weaver/narrative_weaver.c -------------------------------------------------------------------------------- /src/systems/narrative_weaver/narrative_weaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/systems/narrative_weaver/narrative_weaver.h -------------------------------------------------------------------------------- /src/systems/pubsub/pubsub_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/systems/pubsub/pubsub_commands.c -------------------------------------------------------------------------------- /src/systems/pubsub/pubsub_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/systems/pubsub/pubsub_db.c -------------------------------------------------------------------------------- /src/systems/pubsub/pubsub_event_handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/systems/pubsub/pubsub_event_handlers.c -------------------------------------------------------------------------------- /src/systems/pubsub/pubsub_handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/systems/pubsub/pubsub_handlers.c -------------------------------------------------------------------------------- /src/systems/pubsub/pubsub_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/systems/pubsub/pubsub_queue.c -------------------------------------------------------------------------------- /src/systems/pubsub/pubsub_spatial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/systems/pubsub/pubsub_spatial.c -------------------------------------------------------------------------------- /src/systems/pubsub/pubsub_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/systems/pubsub/pubsub_stubs.c -------------------------------------------------------------------------------- /src/systems/pubsub/pubsub_v3.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systems/region_hints/region_hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/systems/region_hints/region_hints.c -------------------------------------------------------------------------------- /src/systems/spatial/spatial_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/systems/spatial/spatial_audio.c -------------------------------------------------------------------------------- /src/systems/spatial/spatial_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/systems/spatial/spatial_core.c -------------------------------------------------------------------------------- /src/systems/spatial/spatial_visual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/systems/spatial/spatial_visual.c -------------------------------------------------------------------------------- /src/systems/terrainbridge/terrain_bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/systems/terrainbridge/terrain_bridge.c -------------------------------------------------------------------------------- /src/talents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/talents.c -------------------------------------------------------------------------------- /src/talents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/talents.h -------------------------------------------------------------------------------- /src/tedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/tedit.c -------------------------------------------------------------------------------- /src/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/telnet.h -------------------------------------------------------------------------------- /src/templates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/templates.c -------------------------------------------------------------------------------- /src/templates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/templates.h -------------------------------------------------------------------------------- /src/terrain_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/terrain_bridge.h -------------------------------------------------------------------------------- /src/test_metamagic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/test_metamagic.c -------------------------------------------------------------------------------- /src/trade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/trade.c -------------------------------------------------------------------------------- /src/trade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/trade.h -------------------------------------------------------------------------------- /src/trails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/trails.h -------------------------------------------------------------------------------- /src/transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/transport.c -------------------------------------------------------------------------------- /src/transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/transport.h -------------------------------------------------------------------------------- /src/traps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/traps.c -------------------------------------------------------------------------------- /src/traps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/traps.h -------------------------------------------------------------------------------- /src/traps_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/traps_new.c -------------------------------------------------------------------------------- /src/treasure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/treasure.c -------------------------------------------------------------------------------- /src/treasure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/treasure.h -------------------------------------------------------------------------------- /src/treasure_const.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/treasure_const.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/utils.c -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/vessels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/vessels.c -------------------------------------------------------------------------------- /src/vessels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/vessels.h -------------------------------------------------------------------------------- /src/vessels_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/vessels_db.c -------------------------------------------------------------------------------- /src/vessels_docking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/vessels_docking.c -------------------------------------------------------------------------------- /src/vessels_rooms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/vessels_rooms.c -------------------------------------------------------------------------------- /src/vessels_src.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/vessels_src.c -------------------------------------------------------------------------------- /src/vessels_src.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/vessels_src.h -------------------------------------------------------------------------------- /src/vnums.example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/vnums.example.h -------------------------------------------------------------------------------- /src/weather.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/weather.c -------------------------------------------------------------------------------- /src/wilderness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/wilderness.c -------------------------------------------------------------------------------- /src/wilderness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/wilderness.h -------------------------------------------------------------------------------- /src/wilderness_crafting_bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/wilderness_crafting_bridge.c -------------------------------------------------------------------------------- /src/wilderness_crafting_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/wilderness_crafting_bridge.h -------------------------------------------------------------------------------- /src/wilderness_kb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/wilderness_kb.c -------------------------------------------------------------------------------- /src/wilderness_kb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/wilderness_kb.h -------------------------------------------------------------------------------- /src/zedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/zedit.c -------------------------------------------------------------------------------- /src/zmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/zmalloc.c -------------------------------------------------------------------------------- /src/zmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/zmalloc.h -------------------------------------------------------------------------------- /src/zone_procs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/src/zone_procs.c -------------------------------------------------------------------------------- /unittests/CuTest/CuTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/CuTest/CuTest.c -------------------------------------------------------------------------------- /unittests/CuTest/CuTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/CuTest/CuTest.h -------------------------------------------------------------------------------- /unittests/CuTest/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/CuTest/README.txt -------------------------------------------------------------------------------- /unittests/CuTest/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/CuTest/license.txt -------------------------------------------------------------------------------- /unittests/CuTest/make-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/CuTest/make-tests.sh -------------------------------------------------------------------------------- /unittests/CuTest/test.helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/CuTest/test.helpers.c -------------------------------------------------------------------------------- /unittests/CuTest/test.interpreter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/CuTest/test.interpreter.c -------------------------------------------------------------------------------- /unittests/CuTest/test_alignment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/CuTest/test_alignment.c -------------------------------------------------------------------------------- /unittests/CuTest/test_bounds_checking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/CuTest/test_bounds_checking.c -------------------------------------------------------------------------------- /unittests/CuTest/test_char_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/CuTest/test_char_cache.c -------------------------------------------------------------------------------- /unittests/CuTest/test_char_skills.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/CuTest/test_char_skills.c -------------------------------------------------------------------------------- /unittests/CuTest/test_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/CuTest/test_random.c -------------------------------------------------------------------------------- /unittests/CuTest/test_treasure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/CuTest/test_treasure.c -------------------------------------------------------------------------------- /unittests/CuTest/test_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/CuTest/test_utils.c -------------------------------------------------------------------------------- /unittests/Makefile-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/Makefile-common -------------------------------------------------------------------------------- /unittests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/README.md -------------------------------------------------------------------------------- /unittests/minunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/minunit.h -------------------------------------------------------------------------------- /unittests/mocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/mocks.c -------------------------------------------------------------------------------- /unittests/test_act.comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/test_act.comm.c -------------------------------------------------------------------------------- /unittests/test_act.comm.c-Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/test_act.comm.c-Makefile -------------------------------------------------------------------------------- /unittests/test_clan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/test_clan.c -------------------------------------------------------------------------------- /unittests/test_clan.c-Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/test_clan.c-Makefile -------------------------------------------------------------------------------- /unittests/test_staff_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/test_staff_events.c -------------------------------------------------------------------------------- /unittests/test_staff_events.c-Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/unittests/test_staff_events.c-Makefile -------------------------------------------------------------------------------- /util/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/Makefile.am -------------------------------------------------------------------------------- /util/__pycache__/terrain_api_client.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/__pycache__/terrain_api_client.cpython-312.pyc -------------------------------------------------------------------------------- /util/ai_ollama_llama/host_your_llm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/ai_ollama_llama/host_your_llm.md -------------------------------------------------------------------------------- /util/aider/aider_config_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/aider/aider_config_template.md -------------------------------------------------------------------------------- /util/aider/aider_generic_config_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/aider/aider_generic_config_template.md -------------------------------------------------------------------------------- /util/aider/aider_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/aider/aider_setup.md -------------------------------------------------------------------------------- /util/aider/conf.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/aider/conf.example.yml -------------------------------------------------------------------------------- /util/asciipasswd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/asciipasswd.c -------------------------------------------------------------------------------- /util/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/autoload.php -------------------------------------------------------------------------------- /util/autowiz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/autowiz.c -------------------------------------------------------------------------------- /util/bonus_breakdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/bonus_breakdown.php -------------------------------------------------------------------------------- /util/bonuses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/bonuses.php -------------------------------------------------------------------------------- /util/check_score_help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/check_score_help -------------------------------------------------------------------------------- /util/check_score_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/check_score_help.c -------------------------------------------------------------------------------- /util/claude_code/CLAUDE.example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/claude_code/CLAUDE.example.md -------------------------------------------------------------------------------- /util/claude_code/claude_hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/claude_code/claude_hooks.md -------------------------------------------------------------------------------- /util/claude_code/claude_subagents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/claude_code/claude_subagents.md -------------------------------------------------------------------------------- /util/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/config.php -------------------------------------------------------------------------------- /util/debug_mysql_exact: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/debug_mysql_exact -------------------------------------------------------------------------------- /util/debug_mysql_exact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/debug_mysql_exact.c -------------------------------------------------------------------------------- /util/enter_encounter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/enter_encounter.php -------------------------------------------------------------------------------- /util/enter_hunt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/enter_hunt.php -------------------------------------------------------------------------------- /util/enter_spell_help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/enter_spell_help.php -------------------------------------------------------------------------------- /util/export_objectdb_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/export_objectdb_to_json.py -------------------------------------------------------------------------------- /util/generate_spell_html.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/generate_spell_html.sh -------------------------------------------------------------------------------- /util/generate_spell_html_detailed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/generate_spell_html_detailed.py -------------------------------------------------------------------------------- /util/hl_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/hl_events.c -------------------------------------------------------------------------------- /util/hl_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/hl_events.h -------------------------------------------------------------------------------- /util/mysql_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/mysql_fix.patch -------------------------------------------------------------------------------- /util/plrtoascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/plrtoascii.c -------------------------------------------------------------------------------- /util/powershell/Install-Profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/powershell/Install-Profile.ps1 -------------------------------------------------------------------------------- /util/powershell/ProfileTemplate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/powershell/ProfileTemplate.ps1 -------------------------------------------------------------------------------- /util/powershell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/powershell/README.md -------------------------------------------------------------------------------- /util/powershell/Remove-Profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/powershell/Remove-Profile.ps1 -------------------------------------------------------------------------------- /util/rebuildAsciiIndex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/rebuildAsciiIndex.c -------------------------------------------------------------------------------- /util/rebuildMailIndex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/rebuildMailIndex.c -------------------------------------------------------------------------------- /util/scheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/scheck.md -------------------------------------------------------------------------------- /util/shopconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/shopconv.c -------------------------------------------------------------------------------- /util/sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/sign.c -------------------------------------------------------------------------------- /util/spelllist_html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/spelllist_html -------------------------------------------------------------------------------- /util/spelllist_html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/spelllist_html.c -------------------------------------------------------------------------------- /util/split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/split.c -------------------------------------------------------------------------------- /util/terrain_api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/terrain_api_client.py -------------------------------------------------------------------------------- /util/test_exact_replication: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/test_exact_replication -------------------------------------------------------------------------------- /util/test_exact_replication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/test_exact_replication.c -------------------------------------------------------------------------------- /util/test_lower_issue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/test_lower_issue -------------------------------------------------------------------------------- /util/test_lower_issue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/test_lower_issue.c -------------------------------------------------------------------------------- /util/test_mysql_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/test_mysql_c -------------------------------------------------------------------------------- /util/test_mysql_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/test_mysql_c.c -------------------------------------------------------------------------------- /util/test_mysql_fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/test_mysql_fix -------------------------------------------------------------------------------- /util/test_mysql_fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/test_mysql_fix.c -------------------------------------------------------------------------------- /util/test_mysql_prepared_statements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/test_mysql_prepared_statements.py -------------------------------------------------------------------------------- /util/test_mysql_simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/test_mysql_simple -------------------------------------------------------------------------------- /util/test_mysql_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/test_mysql_simple.c -------------------------------------------------------------------------------- /util/test_prepared_stmt_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/test_prepared_stmt_debug -------------------------------------------------------------------------------- /util/test_prepared_stmt_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/test_prepared_stmt_debug.c -------------------------------------------------------------------------------- /util/webster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/webster.c -------------------------------------------------------------------------------- /util/wld2html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuminariMUD/Luminari-Source/HEAD/util/wld2html.c --------------------------------------------------------------------------------