├── .dockerignore ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ └── bug_report.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── black.yml │ └── github_action_test_suite.yml ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── __init__.py ├── bin └── start ├── commands ├── README.md ├── __init__.py ├── base.py ├── base_commands │ ├── __init__.py │ ├── bboards.py │ ├── channels.py │ ├── crafting.py │ ├── exchanges.py │ ├── general.py │ ├── guest.py │ ├── help.py │ ├── jobs.py │ ├── maps.py │ ├── overrides.py │ ├── rolling.py │ ├── roster.py │ ├── social.py │ ├── staff_commands.py │ ├── story_actions.py │ ├── tests.py │ ├── unloggedin.py │ └── xp.py ├── cmdsets │ ├── __init__.py │ ├── bank.py │ ├── cmdset_guest.py │ ├── combat.py │ ├── death.py │ ├── home.py │ ├── market.py │ ├── rumor.py │ ├── situational.py │ ├── sleep.py │ ├── standard.py │ ├── starting_gear.py │ └── tests.py ├── command.py ├── default_cmdsets.py └── mixins.py ├── contributors.txt ├── docker-compose-live.yaml ├── docker-compose.yaml ├── evennia_extensions ├── __init__.py ├── character_extensions │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── character_data_handler.py │ ├── constants.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_charactersheet_religion.py │ │ └── __init__.py │ ├── models.py │ ├── storage_wrappers.py │ ├── tests.py │ ├── validators.py │ └── views.py ├── object_extensions │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── item_data_handler.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_displaynames.py │ │ ├── 0003_dimensions_is_locked.py │ │ ├── 0004_permanence_pre_offgrid_location.py │ │ ├── 0005_descriptions.py │ │ ├── 0006_dimensions_currency.py │ │ └── __init__.py │ ├── models.py │ ├── storage_wrappers.py │ ├── tests.py │ ├── validators.py │ └── views.py └── room_extensions │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_roomdetail.py │ └── __init__.py │ ├── models.py │ ├── room_data_handler.py │ ├── storage_wrappers.py │ ├── tests.py │ └── views.py ├── init.sh ├── paxforms ├── __init__.py ├── fields.py ├── forms.py ├── paxform_commands.py └── tests.py ├── requirements.txt ├── sample-development.env ├── server ├── README.md ├── __init__.py ├── conf │ ├── __init__.py │ ├── at_initial_setup.py │ ├── at_search.py │ ├── at_server_startstop.py │ ├── base_settings.py │ ├── cmdparser.py │ ├── connection_screens.py │ ├── inlinefuncs.py │ ├── inputfuncs.py │ ├── lockfuncs.py │ ├── mssp.py │ ├── portal_services_plugins.py │ ├── production_settings.py │ ├── server_services_plugins.py │ ├── serversession.py │ ├── settings.py │ ├── test_settings.py │ ├── travis_settings.py │ └── web_plugins.py └── utils │ ├── __init__.py │ ├── abstract_models.py │ ├── arx_more.py │ ├── arx_utils.py │ ├── exceptions.py │ ├── helpdesk_api.py │ ├── name_paginator.py │ ├── notifier.py │ ├── one_use_scripts │ └── __init__.py │ ├── picker.py │ ├── prettytable.py │ ├── progress_bar.py │ ├── test_timing.py │ ├── test_utils.py │ └── view_mixins.py ├── typeclasses ├── README.md ├── __init__.py ├── accounts.py ├── bauble.py ├── bulletin_board │ ├── __init__.py │ └── bboard.py ├── channels.py ├── characters.py ├── consumable │ ├── __init__.py │ ├── appearance_script.py │ ├── consumable.py │ ├── perfume.py │ └── use_commands.py ├── containers │ ├── __init__.py │ └── container.py ├── disguises │ ├── __init__.py │ └── disguises.py ├── exceptions.py ├── exits.py ├── gambling │ ├── __init__.py │ ├── cmdset_gambling.py │ └── gambling.py ├── guest.py ├── managers │ ├── __init__.py │ └── apps_manager.py ├── map.py ├── mixins.py ├── npcs │ ├── __init__.py │ ├── cmdsets_for_npcs.py │ ├── constants.py │ ├── npc.py │ └── npc_types.py ├── objects.py ├── places │ ├── __init__.py │ ├── cmdset_places.py │ └── places.py ├── readable │ ├── __init__.py │ ├── exceptions.py │ ├── readable.py │ └── readable_commands.py ├── rooms.py ├── rooms_base.py ├── scripts │ ├── __init__.py │ ├── combat │ │ ├── __init__.py │ │ ├── attacks.py │ │ ├── combat_script.py │ │ ├── combat_settings.py │ │ ├── combatant.py │ │ ├── special_actions.py │ │ ├── state_handler.py │ │ └── utils.py │ ├── database_cleanup.py │ ├── event_manager.py │ ├── gametime.py │ ├── recovery.py │ ├── script_mixins.py │ ├── scripts.py │ ├── tests.py │ └── weekly_events.py ├── tests.py └── wearable │ ├── __init__.py │ ├── cmdset_wearable.py │ ├── cmdset_wieldable.py │ ├── decorative_weapon.py │ ├── mixins.py │ ├── tests.py │ ├── wearable.py │ └── wieldable.py ├── web ├── __init__.py ├── admintools │ ├── __init__.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── backup_db.py │ ├── templates │ │ └── admintools │ │ │ ├── search.html │ │ │ └── search_results.html │ ├── urls.py │ └── views.py ├── character │ ├── __init__.py │ ├── admin.py │ ├── context_processors.py │ ├── file_commands.py │ ├── forms.py │ ├── goal_commands.py │ ├── investigation.py │ ├── managers.py │ ├── migrations │ │ ├── 0001_squashed_character.py │ │ ├── 0002_fix_character_dependencies.py │ │ ├── 0003_auto_20210704_1214.py │ │ ├── 0004_playeraccount_episodes.py │ │ └── __init__.py │ ├── models.py │ ├── scene_commands.py │ ├── templates │ │ └── character │ │ │ ├── _action_paginator.html │ │ │ ├── _action_search.html │ │ │ ├── _clue_paginator.html │ │ │ ├── _clue_search.html │ │ │ ├── action_edit.html │ │ │ ├── action_list.html │ │ │ ├── action_view.html │ │ │ ├── actions.html │ │ │ ├── clue_list.html │ │ │ ├── episode.html │ │ │ ├── flashback_create_form.html │ │ │ ├── flashback_list.html │ │ │ ├── flashbackpost_form.html │ │ │ ├── gallery.html │ │ │ ├── journals.html │ │ │ ├── list.html │ │ │ ├── sheet.html │ │ │ ├── story.html │ │ │ └── upload.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── help_topics │ ├── __init__.py │ ├── admin.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── help_topics │ │ │ ├── command_help.html │ │ │ ├── list.html │ │ │ ├── list_commands.html │ │ │ ├── lore_category.html │ │ │ ├── org.html │ │ │ ├── recipes.html │ │ │ └── topic.html │ ├── templatetags │ │ ├── __init__.py │ │ └── app_filters.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── helpdesk │ ├── __init__.py │ ├── admin.py │ ├── akismet.py │ ├── apps.py │ ├── fixtures │ │ └── emailtemplate.json │ ├── forms.py │ ├── lib.py │ ├── locale │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── es_CO │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── es_MX │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fa_IR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── hr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── nb_NO │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── sv │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── lore_commands.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── create_escalation_exclusions.py │ │ │ ├── create_usersettings.py │ │ │ ├── escalate_tickets.py │ │ │ └── get_email.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_socks_proxy.py │ │ ├── 0003_populate_usersettings.py │ │ ├── 0004_initial_data_import.py │ │ ├── 0005_auto_20151214_0208.py │ │ ├── 0006_ticket_submitting_player.py │ │ ├── 0007_ticket_submitting_room.py │ │ ├── 0008_auto_20170116_1712.py │ │ ├── 0009_auto_20170521_1705.py │ │ ├── 0010_auto_20171109_0942.py │ │ ├── 0011_auto_20171109_2244.py │ │ ├── 0012_auto_20181116_0459.py │ │ ├── 0013_ticket_goal_update.py │ │ ├── 0014_auto_20181223_0216.py │ │ ├── 0015_auto_20191228_1417.py │ │ └── __init__.py │ ├── models.py │ ├── settings.py │ ├── south_migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto__add_ticketdependency__add_unique_ticketdependency_ticket_depends.py │ │ ├── 0003_auto__add_field_customfield_ordering.py │ │ ├── 0004_auto__add_field_ticket_due_date.py │ │ ├── 0005_auto__add_field_customfield_empty_selection_list.py │ │ ├── 0006_auto__add_field_ticket_tags.py │ │ ├── 0007_auto__chg_field_attachment_mime_type.py │ │ ├── 0008_auto__chg_field_attachment_file__del_unique_ticketcustomfieldvalue_tic.py │ │ ├── 0009_auto__chg_field_attachment_filename.py │ │ ├── 0010_auto__add_field_queue_socks_proxy_type__add_field_queue_socks_proxy_ho.py │ │ ├── 0011_populate_usersettings.py │ │ └── __init__.py │ ├── static │ │ └── helpdesk │ │ │ ├── buttons │ │ │ ├── accept.png │ │ │ ├── button_template.psd │ │ │ ├── button_template.txt │ │ │ ├── delete.png │ │ │ ├── edit.png │ │ │ └── take.png │ │ │ ├── filter.js │ │ │ ├── helpdesk-extend.css │ │ │ ├── helpdesk-print.css │ │ │ ├── helpdesk.css │ │ │ ├── jquery-1.5.min.js │ │ │ ├── jquery-smoothness-theme │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ └── jquery-ui-1.8.9.custom.css │ │ │ ├── jquery-ui-1.8.9.custom.min.js │ │ │ ├── jquery.jqplot │ │ │ ├── excanvas.min.js │ │ │ ├── jquery.jqplot.min.css │ │ │ ├── jquery.jqplot.min.js │ │ │ └── plugins │ │ │ │ ├── jqplot.BezierCurveRenderer.min.js │ │ │ │ ├── jqplot.barRenderer.min.js │ │ │ │ ├── jqplot.blockRenderer.min.js │ │ │ │ ├── jqplot.bubbleRenderer.min.js │ │ │ │ ├── jqplot.canvasAxisLabelRenderer.min.js │ │ │ │ ├── jqplot.canvasAxisTickRenderer.min.js │ │ │ │ ├── jqplot.canvasOverlay.min.js │ │ │ │ ├── jqplot.canvasTextRenderer.min.js │ │ │ │ ├── jqplot.categoryAxisRenderer.min.js │ │ │ │ ├── jqplot.ciParser.min.js │ │ │ │ ├── jqplot.cursor.min.js │ │ │ │ ├── jqplot.dateAxisRenderer.min.js │ │ │ │ ├── jqplot.donutRenderer.min.js │ │ │ │ ├── jqplot.dragable.min.js │ │ │ │ ├── jqplot.enhancedLegendRenderer.min.js │ │ │ │ ├── jqplot.funnelRenderer.min.js │ │ │ │ ├── jqplot.highlighter.min.js │ │ │ │ ├── jqplot.json2.min.js │ │ │ │ ├── jqplot.logAxisRenderer.min.js │ │ │ │ ├── jqplot.mekkoAxisRenderer.min.js │ │ │ │ ├── jqplot.mekkoRenderer.min.js │ │ │ │ ├── jqplot.meterGaugeRenderer.min.js │ │ │ │ ├── jqplot.mobile.min.js │ │ │ │ ├── jqplot.ohlcRenderer.min.js │ │ │ │ ├── jqplot.pieRenderer.min.js │ │ │ │ ├── jqplot.pointLabels.min.js │ │ │ │ ├── jqplot.pyramidAxisRenderer.min.js │ │ │ │ ├── jqplot.pyramidGridRenderer.min.js │ │ │ │ ├── jqplot.pyramidRenderer.min.js │ │ │ │ └── jqplot.trendline.min.js │ │ │ ├── jquery.translate-debug-all.js │ │ │ ├── priorities │ │ │ ├── priority1.png │ │ │ ├── priority2.png │ │ │ ├── priority3.png │ │ │ ├── priority4.png │ │ │ ├── priority5.png │ │ │ └── readme.txt │ │ │ └── rss_icon.png │ ├── templates │ │ └── helpdesk │ │ │ ├── attribution.html │ │ │ ├── base.html │ │ │ ├── confirm_delete_saved_query.html │ │ │ ├── create_ticket.html │ │ │ ├── dashboard.html │ │ │ ├── de │ │ │ ├── email_html_base.html │ │ │ └── email_text_footer.txt │ │ │ ├── debug.html │ │ │ ├── delete_ticket.html │ │ │ ├── edit_ticket.html │ │ │ ├── email_ignore_add.html │ │ │ ├── email_ignore_del.html │ │ │ ├── email_ignore_list.html │ │ │ ├── en │ │ │ ├── email_html_base.html │ │ │ └── email_text_footer.txt │ │ │ ├── followup_edit.html │ │ │ ├── fr │ │ │ ├── email_html_base.html │ │ │ └── email_text_footer.txt │ │ │ ├── help_api.html │ │ │ ├── help_base.html │ │ │ ├── help_context.html │ │ │ ├── include │ │ │ ├── stats.html │ │ │ ├── summary.html │ │ │ ├── tickets.html │ │ │ └── unassigned.html │ │ │ ├── it │ │ │ ├── email_html_base.html │ │ │ └── email_text_footer.txt │ │ │ ├── kb_category.html │ │ │ ├── kb_index.html │ │ │ ├── kb_item.html │ │ │ ├── navigation.html │ │ │ ├── public_base.html │ │ │ ├── public_change_language.html │ │ │ ├── public_homepage.html │ │ │ ├── public_spam.html │ │ │ ├── public_view_form.html │ │ │ ├── public_view_ticket.html │ │ │ ├── registration │ │ │ ├── logged_out.html │ │ │ └── login.html │ │ │ ├── report_index.html │ │ │ ├── report_output.html │ │ │ ├── rss │ │ │ ├── recent_activity_description.html │ │ │ ├── recent_activity_title.html │ │ │ ├── ticket_description.html │ │ │ └── ticket_title.html │ │ │ ├── rss_list.html │ │ │ ├── ru │ │ │ ├── email_html_base.html │ │ │ └── email_text_footer.txt │ │ │ ├── system_settings.html │ │ │ ├── ticket.html │ │ │ ├── ticket_cc_add.html │ │ │ ├── ticket_cc_del.html │ │ │ ├── ticket_cc_list.html │ │ │ ├── ticket_dependency_add.html │ │ │ ├── ticket_dependency_del.html │ │ │ ├── ticket_desc_table.html │ │ │ ├── ticket_list.html │ │ │ └── user_settings.html │ ├── templatetags │ │ ├── __init__.py │ │ ├── in_list.py │ │ ├── load_helpdesk_settings.py │ │ ├── saved_queries.py │ │ ├── ticket_to_link.py │ │ └── user_admin_url.py │ ├── tests │ │ ├── __init__.py │ │ ├── helpers.py │ │ ├── public_actions.py │ │ ├── test_lore_commands.py │ │ ├── test_navigation.py │ │ ├── test_public_actions.py │ │ ├── test_ticket_submission.py │ │ └── ticket_submission.py │ ├── urls.py │ └── views │ │ ├── __init__.py │ │ ├── api.py │ │ ├── feeds.py │ │ ├── kb.py │ │ ├── public.py │ │ └── staff.py ├── middleware │ └── auth.py ├── news │ ├── __init__.py │ ├── admin.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── news │ │ │ ├── newsentry_list.html │ │ │ ├── search_form.html │ │ │ └── show_entry.html │ ├── urls.py │ └── views.py ├── static_overrides │ ├── README.md │ ├── webclient │ │ ├── css │ │ │ └── README.md │ │ └── js │ │ │ └── README.md │ └── website │ │ ├── css │ │ ├── README.md │ │ ├── custom.css │ │ ├── prosimii-print.css │ │ ├── prosimii-screen-alt.css │ │ ├── prosimii-screen.css │ │ ├── style.css │ │ └── webclient.css │ │ ├── images │ │ ├── README.md │ │ ├── ailith_map.jpg │ │ ├── ailith_map2.jpg │ │ ├── ailith_map_inner.jpg │ │ ├── ailith_map_outer.jpg │ │ ├── ailith_mapbackup.jpg │ │ ├── ailith_mapbackup2.jpg │ │ ├── arx_badge.png │ │ ├── arxmap.jpg │ │ ├── banner.jpg │ │ ├── evennia_logo.png │ │ ├── evennia_logo_small.png │ │ ├── favicon.ico │ │ ├── lovebunny.jpg │ │ ├── modes_of_address.jpg │ │ ├── ornate_small1.png │ │ ├── valardin_sigil.jpg │ │ └── xterm_chart.jpg │ │ └── js │ │ ├── canvas-to-blob.min.js │ │ ├── evennia_webclient.js │ │ ├── favico.js │ │ ├── jquery-2.1.1.min.js │ │ ├── jquery.cloudinary.js │ │ ├── jquery.fileupload-image.js │ │ ├── jquery.fileupload-process.js │ │ ├── jquery.fileupload-validate.js │ │ ├── jquery.fileupload.js │ │ ├── jquery.iframe-transport.js │ │ ├── jquery.ui.widget.js │ │ └── load-image.min.js ├── template_overrides │ ├── README.md │ ├── webclient │ │ ├── README.md │ │ └── evennia │ │ │ └── web │ │ │ └── webclient │ │ │ └── templates │ │ │ ├── client_base.html │ │ │ └── webclient.html │ └── website │ │ ├── README.md │ │ ├── base.html │ │ ├── flatpages │ │ └── README.md │ │ ├── index.html │ │ ├── login.html │ │ └── registration │ │ └── README.md ├── urls.py └── website │ ├── __init__.py │ ├── templates │ ├── admin │ │ ├── base_site.html │ │ ├── index.html │ │ └── players │ │ │ ├── add_form.html │ │ │ ├── change_form.html │ │ │ ├── change_list.html │ │ │ └── stacked.html │ └── prosimii │ │ ├── 404.html │ │ ├── 500.html │ │ ├── base.html │ │ ├── flatpages │ │ └── default.html │ │ ├── index.html │ │ ├── news │ │ ├── newsentry_list.html │ │ ├── search_form.html │ │ └── show_entry.html │ │ ├── registration │ │ ├── logged_out.html │ │ └── login.html │ │ ├── tbi.html │ │ └── webclient.html │ ├── urls.py │ ├── views.py │ └── webclient_urls.py └── world ├── README.md ├── __init__.py ├── batch_cmds.ev ├── conditions ├── __init__.py ├── admin.py ├── apps.py ├── condition_commands.py ├── constants.py ├── exceptions.py ├── managers.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20190503_1914.py │ ├── 0003_wound.py │ ├── 0004_characterhealthstatus.py │ ├── 0005_wound_healing.py │ └── __init__.py ├── models.py ├── modifiers_handlers.py ├── tests.py ├── triggerhandler.py └── views.py ├── crafting ├── __init__.py ├── admin.py ├── apps.py ├── craft_data_handlers.py ├── junk_handlers.py ├── migration_helpers.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_migrate_attributes_to_crafting.py │ └── __init__.py ├── models.py ├── querysets.py ├── storage_wrappers.py ├── tests.py ├── validators.py └── views.py ├── dominion ├── __init__.py ├── admin.py ├── agent_commands.py ├── agenthandler.py ├── battle.py ├── combat_grid.py ├── crisis_commands.py ├── domain │ ├── __init__.py │ └── models.py ├── dominion_typeclasses.py ├── explore.py ├── forms.py ├── general_dominion_commands.py ├── managers.py ├── map │ ├── Amaranth-Regular.otf │ └── arxmap_resized.jpg ├── migrations │ ├── 0001_squashed_dominion.py │ ├── 0002_fix_dominion_dependencies.py │ ├── 0003_auto_20210401_0026.py │ ├── 0004_auto_20211030_1419.py │ ├── 0005_auto_20211115_0144.py │ ├── 0006_plotaction_episode.py │ └── __init__.py ├── models.py ├── plots │ ├── __init__.py │ ├── constants.py │ ├── models.py │ └── plot_commands.py ├── reports.py ├── setup_utils.py ├── templates │ └── dominion │ │ ├── _action_display.html │ │ ├── cal_list.html │ │ ├── cal_view.html │ │ ├── calendar.html │ │ ├── crisis_view.html │ │ ├── map_pregen.html │ │ ├── map_wrapper.html │ │ ├── rpevent_form.html │ │ └── task_list.html ├── tests.py ├── unit_constants.py ├── unit_types.py ├── urls.py ├── view_utils.py └── views.py ├── exploration ├── __init__.py ├── admin.py ├── builder.py ├── exploration_commands.py ├── loot.py ├── migrations │ ├── 0001_squashed_exploration.py │ ├── 0002_fix_exploration_dependencies.py │ ├── 0003_auto_20210401_0022.py │ └── __init__.py ├── models.py ├── npcs.py ├── rooms.py ├── scripts.py ├── static │ └── exploration │ │ ├── explore.css │ │ └── explore.js ├── templates │ └── exploration │ │ └── shardhaven_editor.html ├── urls.py └── views.py ├── fashion ├── __init__.py ├── admin.py ├── apps.py ├── exceptions.py ├── fashion_commands.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20180826_0309.py │ ├── 0003_auto_20180827_1613.py │ ├── 0004_auto_20181112_2036.py │ ├── 0005_auto_20181212_2122.py │ └── __init__.py ├── mixins.py ├── models.py ├── tests.py └── views.py ├── game_constants ├── __init__.py ├── admin.py ├── apps.py ├── managers.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── magic ├── __init__.py ├── admin.py ├── advancement.py ├── apps.py ├── conditional_parser.py ├── conditionals.py ├── consequences.py ├── effects.py ├── formfields.py ├── forms.py ├── magic_commands.py ├── materials.py ├── migrations │ ├── 0001_squashed_magic.py │ ├── 0002_fix_magic_dependencies.py │ └── __init__.py ├── mixins.py ├── models.py ├── test_utils.py └── tests.py ├── msgs ├── __init__.py ├── admin.py ├── forms.py ├── handler_mixins │ ├── __init__.py │ ├── handler_base.py │ ├── journalhandler.py │ ├── messengerhandler.py │ └── msg_utils.py ├── languagehandler.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── fix_broken_schema.py │ │ ├── fix_permissions.py │ │ └── wipe_stale_attributes.py ├── managers.py ├── messagehandler.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20160831_0248.py │ ├── 0003_convert_header_to_tags.py │ ├── 0004_comment_journal_messenger_post_rumor_vision.py │ ├── 0005_auto_20170920_0148.py │ ├── 0006_remove_inform_read_by.py │ ├── 0007_inform_read_by.py │ ├── 0008_auto_20181207_1843.py │ ├── 0009_auto_20191228_1417.py │ └── __init__.py ├── models.py ├── templates │ └── msgs │ │ ├── _board_list_settings.html │ │ ├── _board_post_search.html │ │ ├── _journal_display.html │ │ ├── _journal_search.html │ │ ├── _search_paginator.html │ │ ├── board_list.html │ │ ├── journal_list.html │ │ ├── journal_list_read.html │ │ ├── post_list.html │ │ ├── post_list_search.html │ │ ├── post_view.html │ │ ├── post_view_all.html │ │ └── post_view_unread.html ├── urls.py └── views.py ├── petitions ├── __init__.py ├── admin.py ├── apps.py ├── exceptions.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20180722_0217.py │ ├── 0003_brokeredsale_broker_type.py │ ├── 0004_auto_20190723_1746.py │ ├── 0005_auto_20190908_0924.py │ ├── 0006_auto_20210401_0022.py │ └── __init__.py ├── models.py ├── petitions_commands.py ├── tests.py └── views.py ├── prayer ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_religion.py │ └── __init__.py ├── models.py ├── prayer_commands.py ├── tests.py └── views.py ├── prototypes.py ├── quests ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── roll.py ├── stat_checks ├── __init__.py ├── admin.py ├── apps.py ├── check_commands.py ├── check_maker.py ├── constants.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20201025_1127.py │ ├── 0003_auto_20201227_1710.py │ ├── 0004_auto_20210906_1457.py │ ├── 0005_statcombination_dynamic_system.py │ ├── 0006_statcheck_category.py │ └── __init__.py ├── models.py ├── tests.py ├── utils.py └── views.py ├── stats_and_skills.py ├── templates ├── __init__.py ├── admin.py ├── apps.py ├── exceptions.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20181031_1455.py │ ├── 0003_auto_20191228_1417.py │ ├── 0004_auto_20210418_1715.py │ └── __init__.py ├── mixins.py ├── models.py ├── template_commands.py ├── template_manager.py └── tests │ ├── __init__.py │ └── test_template_creation.py ├── traits ├── __init__.py ├── admin.py ├── apps.py ├── exceptions.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20201108_1757.py │ ├── 0003_convert_bonus_max_hp.py │ └── __init__.py ├── models.py ├── tests.py ├── traitshandler.py └── views.py └── weather ├── __init__.py ├── admin.py ├── migrations ├── 0001_initial.py ├── 0002_auto_20181027_1823.py ├── 0003_weathertype_automated.py ├── 0004_auto_20181101_2019.py ├── 0005_auto_20191228_1417.py └── __init__.py ├── models.py ├── tests.py ├── utils.py ├── weather_commands.py └── weather_script.py /.dockerignore: -------------------------------------------------------------------------------- 1 | server/evennia.db3 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/black.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/.github/workflows/black.yml -------------------------------------------------------------------------------- /.github/workflows/github_action_test_suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/.github/workflows/github_action_test_suite.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/__init__.py -------------------------------------------------------------------------------- /bin/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/bin/start -------------------------------------------------------------------------------- /commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/README.md -------------------------------------------------------------------------------- /commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commands/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/base.py -------------------------------------------------------------------------------- /commands/base_commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/base_commands/__init__.py -------------------------------------------------------------------------------- /commands/base_commands/bboards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/base_commands/bboards.py -------------------------------------------------------------------------------- /commands/base_commands/channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/base_commands/channels.py -------------------------------------------------------------------------------- /commands/base_commands/crafting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/base_commands/crafting.py -------------------------------------------------------------------------------- /commands/base_commands/exchanges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/base_commands/exchanges.py -------------------------------------------------------------------------------- /commands/base_commands/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/base_commands/general.py -------------------------------------------------------------------------------- /commands/base_commands/guest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/base_commands/guest.py -------------------------------------------------------------------------------- /commands/base_commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/base_commands/help.py -------------------------------------------------------------------------------- /commands/base_commands/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/base_commands/jobs.py -------------------------------------------------------------------------------- /commands/base_commands/maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/base_commands/maps.py -------------------------------------------------------------------------------- /commands/base_commands/overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/base_commands/overrides.py -------------------------------------------------------------------------------- /commands/base_commands/rolling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/base_commands/rolling.py -------------------------------------------------------------------------------- /commands/base_commands/roster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/base_commands/roster.py -------------------------------------------------------------------------------- /commands/base_commands/social.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/base_commands/social.py -------------------------------------------------------------------------------- /commands/base_commands/staff_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/base_commands/staff_commands.py -------------------------------------------------------------------------------- /commands/base_commands/story_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/base_commands/story_actions.py -------------------------------------------------------------------------------- /commands/base_commands/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/base_commands/tests.py -------------------------------------------------------------------------------- /commands/base_commands/unloggedin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/base_commands/unloggedin.py -------------------------------------------------------------------------------- /commands/base_commands/xp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/base_commands/xp.py -------------------------------------------------------------------------------- /commands/cmdsets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/cmdsets/__init__.py -------------------------------------------------------------------------------- /commands/cmdsets/bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/cmdsets/bank.py -------------------------------------------------------------------------------- /commands/cmdsets/cmdset_guest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/cmdsets/cmdset_guest.py -------------------------------------------------------------------------------- /commands/cmdsets/combat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/cmdsets/combat.py -------------------------------------------------------------------------------- /commands/cmdsets/death.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/cmdsets/death.py -------------------------------------------------------------------------------- /commands/cmdsets/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/cmdsets/home.py -------------------------------------------------------------------------------- /commands/cmdsets/market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/cmdsets/market.py -------------------------------------------------------------------------------- /commands/cmdsets/rumor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/cmdsets/rumor.py -------------------------------------------------------------------------------- /commands/cmdsets/situational.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/cmdsets/situational.py -------------------------------------------------------------------------------- /commands/cmdsets/sleep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/cmdsets/sleep.py -------------------------------------------------------------------------------- /commands/cmdsets/standard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/cmdsets/standard.py -------------------------------------------------------------------------------- /commands/cmdsets/starting_gear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/cmdsets/starting_gear.py -------------------------------------------------------------------------------- /commands/cmdsets/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/cmdsets/tests.py -------------------------------------------------------------------------------- /commands/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/command.py -------------------------------------------------------------------------------- /commands/default_cmdsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/default_cmdsets.py -------------------------------------------------------------------------------- /commands/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/commands/mixins.py -------------------------------------------------------------------------------- /contributors.txt: -------------------------------------------------------------------------------- 1 | Dave Brannigan 2 | -------------------------------------------------------------------------------- /docker-compose-live.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/docker-compose-live.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /evennia_extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evennia_extensions/character_extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evennia_extensions/character_extensions/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/character_extensions/admin.py -------------------------------------------------------------------------------- /evennia_extensions/character_extensions/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/character_extensions/apps.py -------------------------------------------------------------------------------- /evennia_extensions/character_extensions/character_data_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/character_extensions/character_data_handler.py -------------------------------------------------------------------------------- /evennia_extensions/character_extensions/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/character_extensions/constants.py -------------------------------------------------------------------------------- /evennia_extensions/character_extensions/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/character_extensions/migrations/0001_initial.py -------------------------------------------------------------------------------- /evennia_extensions/character_extensions/migrations/0002_charactersheet_religion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/character_extensions/migrations/0002_charactersheet_religion.py -------------------------------------------------------------------------------- /evennia_extensions/character_extensions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evennia_extensions/character_extensions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/character_extensions/models.py -------------------------------------------------------------------------------- /evennia_extensions/character_extensions/storage_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/character_extensions/storage_wrappers.py -------------------------------------------------------------------------------- /evennia_extensions/character_extensions/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/character_extensions/tests.py -------------------------------------------------------------------------------- /evennia_extensions/character_extensions/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/character_extensions/validators.py -------------------------------------------------------------------------------- /evennia_extensions/character_extensions/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /evennia_extensions/object_extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evennia_extensions/object_extensions/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/object_extensions/admin.py -------------------------------------------------------------------------------- /evennia_extensions/object_extensions/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/object_extensions/apps.py -------------------------------------------------------------------------------- /evennia_extensions/object_extensions/item_data_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/object_extensions/item_data_handler.py -------------------------------------------------------------------------------- /evennia_extensions/object_extensions/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/object_extensions/migrations/0001_initial.py -------------------------------------------------------------------------------- /evennia_extensions/object_extensions/migrations/0002_displaynames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/object_extensions/migrations/0002_displaynames.py -------------------------------------------------------------------------------- /evennia_extensions/object_extensions/migrations/0003_dimensions_is_locked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/object_extensions/migrations/0003_dimensions_is_locked.py -------------------------------------------------------------------------------- /evennia_extensions/object_extensions/migrations/0004_permanence_pre_offgrid_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/object_extensions/migrations/0004_permanence_pre_offgrid_location.py -------------------------------------------------------------------------------- /evennia_extensions/object_extensions/migrations/0005_descriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/object_extensions/migrations/0005_descriptions.py -------------------------------------------------------------------------------- /evennia_extensions/object_extensions/migrations/0006_dimensions_currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/object_extensions/migrations/0006_dimensions_currency.py -------------------------------------------------------------------------------- /evennia_extensions/object_extensions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evennia_extensions/object_extensions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/object_extensions/models.py -------------------------------------------------------------------------------- /evennia_extensions/object_extensions/storage_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/object_extensions/storage_wrappers.py -------------------------------------------------------------------------------- /evennia_extensions/object_extensions/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/object_extensions/tests.py -------------------------------------------------------------------------------- /evennia_extensions/object_extensions/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/object_extensions/validators.py -------------------------------------------------------------------------------- /evennia_extensions/object_extensions/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /evennia_extensions/room_extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evennia_extensions/room_extensions/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/room_extensions/admin.py -------------------------------------------------------------------------------- /evennia_extensions/room_extensions/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/room_extensions/apps.py -------------------------------------------------------------------------------- /evennia_extensions/room_extensions/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/room_extensions/migrations/0001_initial.py -------------------------------------------------------------------------------- /evennia_extensions/room_extensions/migrations/0002_roomdetail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/room_extensions/migrations/0002_roomdetail.py -------------------------------------------------------------------------------- /evennia_extensions/room_extensions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evennia_extensions/room_extensions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/room_extensions/models.py -------------------------------------------------------------------------------- /evennia_extensions/room_extensions/room_data_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/room_extensions/room_data_handler.py -------------------------------------------------------------------------------- /evennia_extensions/room_extensions/storage_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/evennia_extensions/room_extensions/storage_wrappers.py -------------------------------------------------------------------------------- /evennia_extensions/room_extensions/tests.py: -------------------------------------------------------------------------------- 1 | # Create your tests here. 2 | -------------------------------------------------------------------------------- /evennia_extensions/room_extensions/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/init.sh -------------------------------------------------------------------------------- /paxforms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paxforms/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/paxforms/fields.py -------------------------------------------------------------------------------- /paxforms/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/paxforms/forms.py -------------------------------------------------------------------------------- /paxforms/paxform_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/paxforms/paxform_commands.py -------------------------------------------------------------------------------- /paxforms/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/paxforms/tests.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample-development.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/sample-development.env -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/README.md -------------------------------------------------------------------------------- /server/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /server/conf/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /server/conf/at_initial_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/conf/at_initial_setup.py -------------------------------------------------------------------------------- /server/conf/at_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/conf/at_search.py -------------------------------------------------------------------------------- /server/conf/at_server_startstop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/conf/at_server_startstop.py -------------------------------------------------------------------------------- /server/conf/base_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/conf/base_settings.py -------------------------------------------------------------------------------- /server/conf/cmdparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/conf/cmdparser.py -------------------------------------------------------------------------------- /server/conf/connection_screens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/conf/connection_screens.py -------------------------------------------------------------------------------- /server/conf/inlinefuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/conf/inlinefuncs.py -------------------------------------------------------------------------------- /server/conf/inputfuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/conf/inputfuncs.py -------------------------------------------------------------------------------- /server/conf/lockfuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/conf/lockfuncs.py -------------------------------------------------------------------------------- /server/conf/mssp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/conf/mssp.py -------------------------------------------------------------------------------- /server/conf/portal_services_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/conf/portal_services_plugins.py -------------------------------------------------------------------------------- /server/conf/production_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/conf/production_settings.py -------------------------------------------------------------------------------- /server/conf/server_services_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/conf/server_services_plugins.py -------------------------------------------------------------------------------- /server/conf/serversession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/conf/serversession.py -------------------------------------------------------------------------------- /server/conf/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/conf/settings.py -------------------------------------------------------------------------------- /server/conf/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/conf/test_settings.py -------------------------------------------------------------------------------- /server/conf/travis_settings.py: -------------------------------------------------------------------------------- 1 | from server.conf.test_settings import * 2 | 3 | DATABASES["default"]["TEST"] = {"NAME": "myapp_test"} 4 | -------------------------------------------------------------------------------- /server/conf/web_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/conf/web_plugins.py -------------------------------------------------------------------------------- /server/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /server/utils/abstract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/utils/abstract_models.py -------------------------------------------------------------------------------- /server/utils/arx_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/utils/arx_more.py -------------------------------------------------------------------------------- /server/utils/arx_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/utils/arx_utils.py -------------------------------------------------------------------------------- /server/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/utils/exceptions.py -------------------------------------------------------------------------------- /server/utils/helpdesk_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/utils/helpdesk_api.py -------------------------------------------------------------------------------- /server/utils/name_paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/utils/name_paginator.py -------------------------------------------------------------------------------- /server/utils/notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/utils/notifier.py -------------------------------------------------------------------------------- /server/utils/one_use_scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/utils/one_use_scripts/__init__.py -------------------------------------------------------------------------------- /server/utils/picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/utils/picker.py -------------------------------------------------------------------------------- /server/utils/prettytable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/utils/prettytable.py -------------------------------------------------------------------------------- /server/utils/progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/utils/progress_bar.py -------------------------------------------------------------------------------- /server/utils/test_timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/utils/test_timing.py -------------------------------------------------------------------------------- /server/utils/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/utils/test_utils.py -------------------------------------------------------------------------------- /server/utils/view_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/server/utils/view_mixins.py -------------------------------------------------------------------------------- /typeclasses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/README.md -------------------------------------------------------------------------------- /typeclasses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typeclasses/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/accounts.py -------------------------------------------------------------------------------- /typeclasses/bauble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/bauble.py -------------------------------------------------------------------------------- /typeclasses/bulletin_board/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /typeclasses/bulletin_board/bboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/bulletin_board/bboard.py -------------------------------------------------------------------------------- /typeclasses/channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/channels.py -------------------------------------------------------------------------------- /typeclasses/characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/characters.py -------------------------------------------------------------------------------- /typeclasses/consumable/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /typeclasses/consumable/appearance_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/consumable/appearance_script.py -------------------------------------------------------------------------------- /typeclasses/consumable/consumable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/consumable/consumable.py -------------------------------------------------------------------------------- /typeclasses/consumable/perfume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/consumable/perfume.py -------------------------------------------------------------------------------- /typeclasses/consumable/use_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/consumable/use_commands.py -------------------------------------------------------------------------------- /typeclasses/containers/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /typeclasses/containers/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/containers/container.py -------------------------------------------------------------------------------- /typeclasses/disguises/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typeclasses/disguises/disguises.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/disguises/disguises.py -------------------------------------------------------------------------------- /typeclasses/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/exceptions.py -------------------------------------------------------------------------------- /typeclasses/exits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/exits.py -------------------------------------------------------------------------------- /typeclasses/gambling/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /typeclasses/gambling/cmdset_gambling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/gambling/cmdset_gambling.py -------------------------------------------------------------------------------- /typeclasses/gambling/gambling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/gambling/gambling.py -------------------------------------------------------------------------------- /typeclasses/guest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/guest.py -------------------------------------------------------------------------------- /typeclasses/managers/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /typeclasses/managers/apps_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/managers/apps_manager.py -------------------------------------------------------------------------------- /typeclasses/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/map.py -------------------------------------------------------------------------------- /typeclasses/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/mixins.py -------------------------------------------------------------------------------- /typeclasses/npcs/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /typeclasses/npcs/cmdsets_for_npcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/npcs/cmdsets_for_npcs.py -------------------------------------------------------------------------------- /typeclasses/npcs/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/npcs/constants.py -------------------------------------------------------------------------------- /typeclasses/npcs/npc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/npcs/npc.py -------------------------------------------------------------------------------- /typeclasses/npcs/npc_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/npcs/npc_types.py -------------------------------------------------------------------------------- /typeclasses/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/objects.py -------------------------------------------------------------------------------- /typeclasses/places/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /typeclasses/places/cmdset_places.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/places/cmdset_places.py -------------------------------------------------------------------------------- /typeclasses/places/places.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/places/places.py -------------------------------------------------------------------------------- /typeclasses/readable/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /typeclasses/readable/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/readable/exceptions.py -------------------------------------------------------------------------------- /typeclasses/readable/readable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/readable/readable.py -------------------------------------------------------------------------------- /typeclasses/readable/readable_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/readable/readable_commands.py -------------------------------------------------------------------------------- /typeclasses/rooms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/rooms.py -------------------------------------------------------------------------------- /typeclasses/rooms_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/rooms_base.py -------------------------------------------------------------------------------- /typeclasses/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typeclasses/scripts/combat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typeclasses/scripts/combat/attacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/scripts/combat/attacks.py -------------------------------------------------------------------------------- /typeclasses/scripts/combat/combat_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/scripts/combat/combat_script.py -------------------------------------------------------------------------------- /typeclasses/scripts/combat/combat_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/scripts/combat/combat_settings.py -------------------------------------------------------------------------------- /typeclasses/scripts/combat/combatant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/scripts/combat/combatant.py -------------------------------------------------------------------------------- /typeclasses/scripts/combat/special_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/scripts/combat/special_actions.py -------------------------------------------------------------------------------- /typeclasses/scripts/combat/state_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/scripts/combat/state_handler.py -------------------------------------------------------------------------------- /typeclasses/scripts/combat/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/scripts/combat/utils.py -------------------------------------------------------------------------------- /typeclasses/scripts/database_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/scripts/database_cleanup.py -------------------------------------------------------------------------------- /typeclasses/scripts/event_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/scripts/event_manager.py -------------------------------------------------------------------------------- /typeclasses/scripts/gametime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/scripts/gametime.py -------------------------------------------------------------------------------- /typeclasses/scripts/recovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/scripts/recovery.py -------------------------------------------------------------------------------- /typeclasses/scripts/script_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/scripts/script_mixins.py -------------------------------------------------------------------------------- /typeclasses/scripts/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/scripts/scripts.py -------------------------------------------------------------------------------- /typeclasses/scripts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/scripts/tests.py -------------------------------------------------------------------------------- /typeclasses/scripts/weekly_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/scripts/weekly_events.py -------------------------------------------------------------------------------- /typeclasses/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/tests.py -------------------------------------------------------------------------------- /typeclasses/wearable/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /typeclasses/wearable/cmdset_wearable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/wearable/cmdset_wearable.py -------------------------------------------------------------------------------- /typeclasses/wearable/cmdset_wieldable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/wearable/cmdset_wieldable.py -------------------------------------------------------------------------------- /typeclasses/wearable/decorative_weapon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/wearable/decorative_weapon.py -------------------------------------------------------------------------------- /typeclasses/wearable/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/wearable/mixins.py -------------------------------------------------------------------------------- /typeclasses/wearable/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/wearable/tests.py -------------------------------------------------------------------------------- /typeclasses/wearable/wearable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/wearable/wearable.py -------------------------------------------------------------------------------- /typeclasses/wearable/wieldable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/typeclasses/wearable/wieldable.py -------------------------------------------------------------------------------- /web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/admintools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/admintools/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/admintools/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/admintools/management/commands/backup_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/admintools/management/commands/backup_db.py -------------------------------------------------------------------------------- /web/admintools/templates/admintools/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/admintools/templates/admintools/search.html -------------------------------------------------------------------------------- /web/admintools/templates/admintools/search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/admintools/templates/admintools/search_results.html -------------------------------------------------------------------------------- /web/admintools/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/admintools/urls.py -------------------------------------------------------------------------------- /web/admintools/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/admintools/views.py -------------------------------------------------------------------------------- /web/character/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/character/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/admin.py -------------------------------------------------------------------------------- /web/character/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/context_processors.py -------------------------------------------------------------------------------- /web/character/file_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/file_commands.py -------------------------------------------------------------------------------- /web/character/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/forms.py -------------------------------------------------------------------------------- /web/character/goal_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/goal_commands.py -------------------------------------------------------------------------------- /web/character/investigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/investigation.py -------------------------------------------------------------------------------- /web/character/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/managers.py -------------------------------------------------------------------------------- /web/character/migrations/0001_squashed_character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/migrations/0001_squashed_character.py -------------------------------------------------------------------------------- /web/character/migrations/0002_fix_character_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/migrations/0002_fix_character_dependencies.py -------------------------------------------------------------------------------- /web/character/migrations/0003_auto_20210704_1214.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/migrations/0003_auto_20210704_1214.py -------------------------------------------------------------------------------- /web/character/migrations/0004_playeraccount_episodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/migrations/0004_playeraccount_episodes.py -------------------------------------------------------------------------------- /web/character/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/character/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/models.py -------------------------------------------------------------------------------- /web/character/scene_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/scene_commands.py -------------------------------------------------------------------------------- /web/character/templates/character/_action_paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/templates/character/_action_paginator.html -------------------------------------------------------------------------------- /web/character/templates/character/_action_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/templates/character/_action_search.html -------------------------------------------------------------------------------- /web/character/templates/character/_clue_paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/templates/character/_clue_paginator.html -------------------------------------------------------------------------------- /web/character/templates/character/_clue_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/templates/character/_clue_search.html -------------------------------------------------------------------------------- /web/character/templates/character/action_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/templates/character/action_edit.html -------------------------------------------------------------------------------- /web/character/templates/character/action_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/templates/character/action_list.html -------------------------------------------------------------------------------- /web/character/templates/character/action_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/templates/character/action_view.html -------------------------------------------------------------------------------- /web/character/templates/character/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/templates/character/actions.html -------------------------------------------------------------------------------- /web/character/templates/character/clue_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/templates/character/clue_list.html -------------------------------------------------------------------------------- /web/character/templates/character/episode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/templates/character/episode.html -------------------------------------------------------------------------------- /web/character/templates/character/flashback_create_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/templates/character/flashback_create_form.html -------------------------------------------------------------------------------- /web/character/templates/character/flashback_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/templates/character/flashback_list.html -------------------------------------------------------------------------------- /web/character/templates/character/flashbackpost_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/templates/character/flashbackpost_form.html -------------------------------------------------------------------------------- /web/character/templates/character/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/templates/character/gallery.html -------------------------------------------------------------------------------- /web/character/templates/character/journals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/templates/character/journals.html -------------------------------------------------------------------------------- /web/character/templates/character/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/templates/character/list.html -------------------------------------------------------------------------------- /web/character/templates/character/sheet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/templates/character/sheet.html -------------------------------------------------------------------------------- /web/character/templates/character/story.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/templates/character/story.html -------------------------------------------------------------------------------- /web/character/templates/character/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/templates/character/upload.html -------------------------------------------------------------------------------- /web/character/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/tests.py -------------------------------------------------------------------------------- /web/character/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/urls.py -------------------------------------------------------------------------------- /web/character/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/character/views.py -------------------------------------------------------------------------------- /web/help_topics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/help_topics/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/help_topics/admin.py -------------------------------------------------------------------------------- /web/help_topics/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/help_topics/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/help_topics/models.py -------------------------------------------------------------------------------- /web/help_topics/templates/help_topics/command_help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/help_topics/templates/help_topics/command_help.html -------------------------------------------------------------------------------- /web/help_topics/templates/help_topics/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/help_topics/templates/help_topics/list.html -------------------------------------------------------------------------------- /web/help_topics/templates/help_topics/list_commands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/help_topics/templates/help_topics/list_commands.html -------------------------------------------------------------------------------- /web/help_topics/templates/help_topics/lore_category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/help_topics/templates/help_topics/lore_category.html -------------------------------------------------------------------------------- /web/help_topics/templates/help_topics/org.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/help_topics/templates/help_topics/org.html -------------------------------------------------------------------------------- /web/help_topics/templates/help_topics/recipes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/help_topics/templates/help_topics/recipes.html -------------------------------------------------------------------------------- /web/help_topics/templates/help_topics/topic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/help_topics/templates/help_topics/topic.html -------------------------------------------------------------------------------- /web/help_topics/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/help_topics/templatetags/app_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/help_topics/templatetags/app_filters.py -------------------------------------------------------------------------------- /web/help_topics/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/help_topics/tests.py -------------------------------------------------------------------------------- /web/help_topics/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/help_topics/urls.py -------------------------------------------------------------------------------- /web/help_topics/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/help_topics/views.py -------------------------------------------------------------------------------- /web/helpdesk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/helpdesk/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/admin.py -------------------------------------------------------------------------------- /web/helpdesk/akismet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/akismet.py -------------------------------------------------------------------------------- /web/helpdesk/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/apps.py -------------------------------------------------------------------------------- /web/helpdesk/fixtures/emailtemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/fixtures/emailtemplate.json -------------------------------------------------------------------------------- /web/helpdesk/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/forms.py -------------------------------------------------------------------------------- /web/helpdesk/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/lib.py -------------------------------------------------------------------------------- /web/helpdesk/locale/ar/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/locale/ar/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /web/helpdesk/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /web/helpdesk/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /web/helpdesk/locale/el/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/locale/el/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /web/helpdesk/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /web/helpdesk/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /web/helpdesk/locale/es_CO/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/locale/es_CO/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /web/helpdesk/locale/es_MX/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/locale/es_MX/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /web/helpdesk/locale/fa_IR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/locale/fa_IR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /web/helpdesk/locale/fi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/locale/fi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /web/helpdesk/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /web/helpdesk/locale/hr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/locale/hr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /web/helpdesk/locale/hu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/locale/hu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /web/helpdesk/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /web/helpdesk/locale/nb_NO/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/locale/nb_NO/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /web/helpdesk/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /web/helpdesk/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /web/helpdesk/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /web/helpdesk/locale/sv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/locale/sv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /web/helpdesk/locale/zh_CN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/locale/zh_CN/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /web/helpdesk/lore_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/lore_commands.py -------------------------------------------------------------------------------- /web/helpdesk/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/helpdesk/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/helpdesk/management/commands/create_escalation_exclusions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/management/commands/create_escalation_exclusions.py -------------------------------------------------------------------------------- /web/helpdesk/management/commands/create_usersettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/management/commands/create_usersettings.py -------------------------------------------------------------------------------- /web/helpdesk/management/commands/escalate_tickets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/management/commands/escalate_tickets.py -------------------------------------------------------------------------------- /web/helpdesk/management/commands/get_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/management/commands/get_email.py -------------------------------------------------------------------------------- /web/helpdesk/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/migrations/0001_initial.py -------------------------------------------------------------------------------- /web/helpdesk/migrations/0002_socks_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/migrations/0002_socks_proxy.py -------------------------------------------------------------------------------- /web/helpdesk/migrations/0003_populate_usersettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/migrations/0003_populate_usersettings.py -------------------------------------------------------------------------------- /web/helpdesk/migrations/0004_initial_data_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/migrations/0004_initial_data_import.py -------------------------------------------------------------------------------- /web/helpdesk/migrations/0005_auto_20151214_0208.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/migrations/0005_auto_20151214_0208.py -------------------------------------------------------------------------------- /web/helpdesk/migrations/0006_ticket_submitting_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/migrations/0006_ticket_submitting_player.py -------------------------------------------------------------------------------- /web/helpdesk/migrations/0007_ticket_submitting_room.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/migrations/0007_ticket_submitting_room.py -------------------------------------------------------------------------------- /web/helpdesk/migrations/0008_auto_20170116_1712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/migrations/0008_auto_20170116_1712.py -------------------------------------------------------------------------------- /web/helpdesk/migrations/0009_auto_20170521_1705.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/migrations/0009_auto_20170521_1705.py -------------------------------------------------------------------------------- /web/helpdesk/migrations/0010_auto_20171109_0942.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/migrations/0010_auto_20171109_0942.py -------------------------------------------------------------------------------- /web/helpdesk/migrations/0011_auto_20171109_2244.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/migrations/0011_auto_20171109_2244.py -------------------------------------------------------------------------------- /web/helpdesk/migrations/0012_auto_20181116_0459.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/migrations/0012_auto_20181116_0459.py -------------------------------------------------------------------------------- /web/helpdesk/migrations/0013_ticket_goal_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/migrations/0013_ticket_goal_update.py -------------------------------------------------------------------------------- /web/helpdesk/migrations/0014_auto_20181223_0216.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/migrations/0014_auto_20181223_0216.py -------------------------------------------------------------------------------- /web/helpdesk/migrations/0015_auto_20191228_1417.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/migrations/0015_auto_20191228_1417.py -------------------------------------------------------------------------------- /web/helpdesk/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/helpdesk/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/models.py -------------------------------------------------------------------------------- /web/helpdesk/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/settings.py -------------------------------------------------------------------------------- /web/helpdesk/south_migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/south_migrations/0001_initial.py -------------------------------------------------------------------------------- /web/helpdesk/south_migrations/0003_auto__add_field_customfield_ordering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/south_migrations/0003_auto__add_field_customfield_ordering.py -------------------------------------------------------------------------------- /web/helpdesk/south_migrations/0004_auto__add_field_ticket_due_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/south_migrations/0004_auto__add_field_ticket_due_date.py -------------------------------------------------------------------------------- /web/helpdesk/south_migrations/0005_auto__add_field_customfield_empty_selection_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/south_migrations/0005_auto__add_field_customfield_empty_selection_list.py -------------------------------------------------------------------------------- /web/helpdesk/south_migrations/0006_auto__add_field_ticket_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/south_migrations/0006_auto__add_field_ticket_tags.py -------------------------------------------------------------------------------- /web/helpdesk/south_migrations/0007_auto__chg_field_attachment_mime_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/south_migrations/0007_auto__chg_field_attachment_mime_type.py -------------------------------------------------------------------------------- /web/helpdesk/south_migrations/0009_auto__chg_field_attachment_filename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/south_migrations/0009_auto__chg_field_attachment_filename.py -------------------------------------------------------------------------------- /web/helpdesk/south_migrations/0011_populate_usersettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/south_migrations/0011_populate_usersettings.py -------------------------------------------------------------------------------- /web/helpdesk/south_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/buttons/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/buttons/accept.png -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/buttons/button_template.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/buttons/button_template.psd -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/buttons/button_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/buttons/button_template.txt -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/buttons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/buttons/delete.png -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/buttons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/buttons/edit.png -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/buttons/take.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/buttons/take.png -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/filter.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/helpdesk-extend.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/helpdesk-extend.css -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/helpdesk-print.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/helpdesk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/helpdesk.css -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery-1.5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery-1.5.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery-smoothness-theme/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery-smoothness-theme/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery-smoothness-theme/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery-smoothness-theme/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery-smoothness-theme/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery-smoothness-theme/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery-smoothness-theme/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery-smoothness-theme/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery-smoothness-theme/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery-smoothness-theme/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery-smoothness-theme/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery-smoothness-theme/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery-smoothness-theme/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery-smoothness-theme/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery-smoothness-theme/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery-smoothness-theme/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery-smoothness-theme/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery-smoothness-theme/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery-smoothness-theme/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery-smoothness-theme/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery-smoothness-theme/jquery-ui-1.8.9.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery-smoothness-theme/jquery-ui-1.8.9.custom.css -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery-ui-1.8.9.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery-ui-1.8.9.custom.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/excanvas.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/jquery.jqplot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/jquery.jqplot.min.css -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/jquery.jqplot.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/jquery.jqplot.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.BezierCurveRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.BezierCurveRenderer.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.barRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.barRenderer.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.blockRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.blockRenderer.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.bubbleRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.bubbleRenderer.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.canvasAxisLabelRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.canvasAxisLabelRenderer.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.canvasAxisTickRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.canvasAxisTickRenderer.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.canvasOverlay.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.canvasOverlay.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.canvasTextRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.canvasTextRenderer.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.categoryAxisRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.categoryAxisRenderer.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.ciParser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.ciParser.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.cursor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.cursor.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.dateAxisRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.dateAxisRenderer.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.donutRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.donutRenderer.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.dragable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.dragable.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.enhancedLegendRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.enhancedLegendRenderer.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.funnelRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.funnelRenderer.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.highlighter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.highlighter.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.json2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.json2.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.logAxisRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.logAxisRenderer.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.mekkoAxisRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.mekkoAxisRenderer.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.mekkoRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.mekkoRenderer.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.meterGaugeRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.meterGaugeRenderer.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.mobile.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.mobile.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.ohlcRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.ohlcRenderer.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.pieRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.pieRenderer.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.pointLabels.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.pointLabels.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.pyramidAxisRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.pyramidAxisRenderer.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.pyramidGridRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.pyramidGridRenderer.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.pyramidRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.pyramidRenderer.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.trendline.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.jqplot/plugins/jqplot.trendline.min.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/jquery.translate-debug-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/jquery.translate-debug-all.js -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/priorities/priority1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/priorities/priority1.png -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/priorities/priority2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/priorities/priority2.png -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/priorities/priority3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/priorities/priority3.png -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/priorities/priority4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/priorities/priority4.png -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/priorities/priority5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/priorities/priority5.png -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/priorities/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/priorities/readme.txt -------------------------------------------------------------------------------- /web/helpdesk/static/helpdesk/rss_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/static/helpdesk/rss_icon.png -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/attribution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/attribution.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/base.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/confirm_delete_saved_query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/confirm_delete_saved_query.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/create_ticket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/create_ticket.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/dashboard.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/de/email_html_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/de/email_html_base.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/de/email_text_footer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/de/email_text_footer.txt -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/debug.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/delete_ticket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/delete_ticket.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/edit_ticket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/edit_ticket.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/email_ignore_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/email_ignore_add.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/email_ignore_del.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/email_ignore_del.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/email_ignore_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/email_ignore_list.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/en/email_html_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/en/email_html_base.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/en/email_text_footer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/en/email_text_footer.txt -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/followup_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/followup_edit.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/fr/email_html_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/fr/email_html_base.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/fr/email_text_footer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/fr/email_text_footer.txt -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/help_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/help_api.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/help_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/help_base.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/help_context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/help_context.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/include/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/include/stats.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/include/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/include/summary.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/include/tickets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/include/tickets.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/include/unassigned.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/include/unassigned.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/it/email_html_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/it/email_html_base.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/it/email_text_footer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/it/email_text_footer.txt -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/kb_category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/kb_category.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/kb_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/kb_index.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/kb_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/kb_item.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/navigation.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/public_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/public_base.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/public_change_language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/public_change_language.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/public_homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/public_homepage.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/public_spam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/public_spam.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/public_view_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/public_view_form.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/public_view_ticket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/public_view_ticket.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/registration/logged_out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/registration/logged_out.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/registration/login.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/report_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/report_index.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/report_output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/report_output.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/rss/recent_activity_description.html: -------------------------------------------------------------------------------- 1 | {{ obj.comment }} 2 | -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/rss/recent_activity_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/rss/recent_activity_title.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/rss/ticket_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/rss/ticket_description.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/rss/ticket_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/rss/ticket_title.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/rss_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/rss_list.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/ru/email_html_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/ru/email_html_base.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/ru/email_text_footer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/ru/email_text_footer.txt -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/system_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/system_settings.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/ticket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/ticket.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/ticket_cc_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/ticket_cc_add.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/ticket_cc_del.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/ticket_cc_del.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/ticket_cc_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/ticket_cc_list.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/ticket_dependency_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/ticket_dependency_add.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/ticket_dependency_del.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/ticket_dependency_del.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/ticket_desc_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/ticket_desc_table.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/ticket_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/ticket_list.html -------------------------------------------------------------------------------- /web/helpdesk/templates/helpdesk/user_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templates/helpdesk/user_settings.html -------------------------------------------------------------------------------- /web/helpdesk/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/helpdesk/templatetags/in_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templatetags/in_list.py -------------------------------------------------------------------------------- /web/helpdesk/templatetags/load_helpdesk_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templatetags/load_helpdesk_settings.py -------------------------------------------------------------------------------- /web/helpdesk/templatetags/saved_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templatetags/saved_queries.py -------------------------------------------------------------------------------- /web/helpdesk/templatetags/ticket_to_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templatetags/ticket_to_link.py -------------------------------------------------------------------------------- /web/helpdesk/templatetags/user_admin_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/templatetags/user_admin_url.py -------------------------------------------------------------------------------- /web/helpdesk/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/helpdesk/tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/tests/helpers.py -------------------------------------------------------------------------------- /web/helpdesk/tests/public_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/tests/public_actions.py -------------------------------------------------------------------------------- /web/helpdesk/tests/test_lore_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/tests/test_lore_commands.py -------------------------------------------------------------------------------- /web/helpdesk/tests/test_navigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/tests/test_navigation.py -------------------------------------------------------------------------------- /web/helpdesk/tests/test_public_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/tests/test_public_actions.py -------------------------------------------------------------------------------- /web/helpdesk/tests/test_ticket_submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/tests/test_ticket_submission.py -------------------------------------------------------------------------------- /web/helpdesk/tests/ticket_submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/tests/ticket_submission.py -------------------------------------------------------------------------------- /web/helpdesk/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/urls.py -------------------------------------------------------------------------------- /web/helpdesk/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/helpdesk/views/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/views/api.py -------------------------------------------------------------------------------- /web/helpdesk/views/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/views/feeds.py -------------------------------------------------------------------------------- /web/helpdesk/views/kb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/views/kb.py -------------------------------------------------------------------------------- /web/helpdesk/views/public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/views/public.py -------------------------------------------------------------------------------- /web/helpdesk/views/staff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/helpdesk/views/staff.py -------------------------------------------------------------------------------- /web/middleware/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/middleware/auth.py -------------------------------------------------------------------------------- /web/news/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/news/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/news/admin.py -------------------------------------------------------------------------------- /web/news/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/news/migrations/0001_initial.py -------------------------------------------------------------------------------- /web/news/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/news/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/news/models.py -------------------------------------------------------------------------------- /web/news/templates/news/newsentry_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/news/templates/news/newsentry_list.html -------------------------------------------------------------------------------- /web/news/templates/news/search_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/news/templates/news/search_form.html -------------------------------------------------------------------------------- /web/news/templates/news/show_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/news/templates/news/show_entry.html -------------------------------------------------------------------------------- /web/news/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/news/urls.py -------------------------------------------------------------------------------- /web/news/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/news/views.py -------------------------------------------------------------------------------- /web/static_overrides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/README.md -------------------------------------------------------------------------------- /web/static_overrides/webclient/css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/webclient/css/README.md -------------------------------------------------------------------------------- /web/static_overrides/webclient/js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/webclient/js/README.md -------------------------------------------------------------------------------- /web/static_overrides/website/css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/css/README.md -------------------------------------------------------------------------------- /web/static_overrides/website/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/css/custom.css -------------------------------------------------------------------------------- /web/static_overrides/website/css/prosimii-print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/css/prosimii-print.css -------------------------------------------------------------------------------- /web/static_overrides/website/css/prosimii-screen-alt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/css/prosimii-screen-alt.css -------------------------------------------------------------------------------- /web/static_overrides/website/css/prosimii-screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/css/prosimii-screen.css -------------------------------------------------------------------------------- /web/static_overrides/website/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/css/style.css -------------------------------------------------------------------------------- /web/static_overrides/website/css/webclient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/css/webclient.css -------------------------------------------------------------------------------- /web/static_overrides/website/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/images/README.md -------------------------------------------------------------------------------- /web/static_overrides/website/images/ailith_map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/images/ailith_map.jpg -------------------------------------------------------------------------------- /web/static_overrides/website/images/ailith_map2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/images/ailith_map2.jpg -------------------------------------------------------------------------------- /web/static_overrides/website/images/ailith_map_inner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/images/ailith_map_inner.jpg -------------------------------------------------------------------------------- /web/static_overrides/website/images/ailith_map_outer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/images/ailith_map_outer.jpg -------------------------------------------------------------------------------- /web/static_overrides/website/images/ailith_mapbackup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/images/ailith_mapbackup.jpg -------------------------------------------------------------------------------- /web/static_overrides/website/images/ailith_mapbackup2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/images/ailith_mapbackup2.jpg -------------------------------------------------------------------------------- /web/static_overrides/website/images/arx_badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/images/arx_badge.png -------------------------------------------------------------------------------- /web/static_overrides/website/images/arxmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/images/arxmap.jpg -------------------------------------------------------------------------------- /web/static_overrides/website/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/images/banner.jpg -------------------------------------------------------------------------------- /web/static_overrides/website/images/evennia_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/images/evennia_logo.png -------------------------------------------------------------------------------- /web/static_overrides/website/images/evennia_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/images/evennia_logo_small.png -------------------------------------------------------------------------------- /web/static_overrides/website/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/images/favicon.ico -------------------------------------------------------------------------------- /web/static_overrides/website/images/lovebunny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/images/lovebunny.jpg -------------------------------------------------------------------------------- /web/static_overrides/website/images/modes_of_address.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/images/modes_of_address.jpg -------------------------------------------------------------------------------- /web/static_overrides/website/images/ornate_small1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/images/ornate_small1.png -------------------------------------------------------------------------------- /web/static_overrides/website/images/valardin_sigil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/images/valardin_sigil.jpg -------------------------------------------------------------------------------- /web/static_overrides/website/images/xterm_chart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/images/xterm_chart.jpg -------------------------------------------------------------------------------- /web/static_overrides/website/js/canvas-to-blob.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/js/canvas-to-blob.min.js -------------------------------------------------------------------------------- /web/static_overrides/website/js/evennia_webclient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/js/evennia_webclient.js -------------------------------------------------------------------------------- /web/static_overrides/website/js/favico.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/js/favico.js -------------------------------------------------------------------------------- /web/static_overrides/website/js/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/js/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /web/static_overrides/website/js/jquery.cloudinary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/js/jquery.cloudinary.js -------------------------------------------------------------------------------- /web/static_overrides/website/js/jquery.fileupload-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/js/jquery.fileupload-image.js -------------------------------------------------------------------------------- /web/static_overrides/website/js/jquery.fileupload-process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/js/jquery.fileupload-process.js -------------------------------------------------------------------------------- /web/static_overrides/website/js/jquery.fileupload-validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/js/jquery.fileupload-validate.js -------------------------------------------------------------------------------- /web/static_overrides/website/js/jquery.fileupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/js/jquery.fileupload.js -------------------------------------------------------------------------------- /web/static_overrides/website/js/jquery.iframe-transport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/js/jquery.iframe-transport.js -------------------------------------------------------------------------------- /web/static_overrides/website/js/jquery.ui.widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/js/jquery.ui.widget.js -------------------------------------------------------------------------------- /web/static_overrides/website/js/load-image.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/static_overrides/website/js/load-image.min.js -------------------------------------------------------------------------------- /web/template_overrides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/template_overrides/README.md -------------------------------------------------------------------------------- /web/template_overrides/webclient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/template_overrides/webclient/README.md -------------------------------------------------------------------------------- /web/template_overrides/webclient/evennia/web/webclient/templates/client_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/template_overrides/webclient/evennia/web/webclient/templates/client_base.html -------------------------------------------------------------------------------- /web/template_overrides/webclient/evennia/web/webclient/templates/webclient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/template_overrides/webclient/evennia/web/webclient/templates/webclient.html -------------------------------------------------------------------------------- /web/template_overrides/website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/template_overrides/website/README.md -------------------------------------------------------------------------------- /web/template_overrides/website/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/template_overrides/website/base.html -------------------------------------------------------------------------------- /web/template_overrides/website/flatpages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/template_overrides/website/flatpages/README.md -------------------------------------------------------------------------------- /web/template_overrides/website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/template_overrides/website/index.html -------------------------------------------------------------------------------- /web/template_overrides/website/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/template_overrides/website/login.html -------------------------------------------------------------------------------- /web/template_overrides/website/registration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/template_overrides/website/registration/README.md -------------------------------------------------------------------------------- /web/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/urls.py -------------------------------------------------------------------------------- /web/website/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/website/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/website/templates/admin/base_site.html -------------------------------------------------------------------------------- /web/website/templates/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/website/templates/admin/index.html -------------------------------------------------------------------------------- /web/website/templates/admin/players/add_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/website/templates/admin/players/add_form.html -------------------------------------------------------------------------------- /web/website/templates/admin/players/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/website/templates/admin/players/change_form.html -------------------------------------------------------------------------------- /web/website/templates/admin/players/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/website/templates/admin/players/change_list.html -------------------------------------------------------------------------------- /web/website/templates/admin/players/stacked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/website/templates/admin/players/stacked.html -------------------------------------------------------------------------------- /web/website/templates/prosimii/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/website/templates/prosimii/404.html -------------------------------------------------------------------------------- /web/website/templates/prosimii/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/website/templates/prosimii/500.html -------------------------------------------------------------------------------- /web/website/templates/prosimii/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/website/templates/prosimii/base.html -------------------------------------------------------------------------------- /web/website/templates/prosimii/flatpages/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/website/templates/prosimii/flatpages/default.html -------------------------------------------------------------------------------- /web/website/templates/prosimii/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/website/templates/prosimii/index.html -------------------------------------------------------------------------------- /web/website/templates/prosimii/news/newsentry_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/website/templates/prosimii/news/newsentry_list.html -------------------------------------------------------------------------------- /web/website/templates/prosimii/news/search_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/website/templates/prosimii/news/search_form.html -------------------------------------------------------------------------------- /web/website/templates/prosimii/news/show_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/website/templates/prosimii/news/show_entry.html -------------------------------------------------------------------------------- /web/website/templates/prosimii/registration/logged_out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/website/templates/prosimii/registration/logged_out.html -------------------------------------------------------------------------------- /web/website/templates/prosimii/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/website/templates/prosimii/registration/login.html -------------------------------------------------------------------------------- /web/website/templates/prosimii/tbi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/website/templates/prosimii/tbi.html -------------------------------------------------------------------------------- /web/website/templates/prosimii/webclient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/website/templates/prosimii/webclient.html -------------------------------------------------------------------------------- /web/website/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/website/urls.py -------------------------------------------------------------------------------- /web/website/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/website/views.py -------------------------------------------------------------------------------- /web/website/webclient_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/web/website/webclient_urls.py -------------------------------------------------------------------------------- /world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/README.md -------------------------------------------------------------------------------- /world/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/batch_cmds.ev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/batch_cmds.ev -------------------------------------------------------------------------------- /world/conditions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/conditions/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/conditions/admin.py -------------------------------------------------------------------------------- /world/conditions/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/conditions/apps.py -------------------------------------------------------------------------------- /world/conditions/condition_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/conditions/condition_commands.py -------------------------------------------------------------------------------- /world/conditions/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/conditions/constants.py -------------------------------------------------------------------------------- /world/conditions/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/conditions/exceptions.py -------------------------------------------------------------------------------- /world/conditions/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/conditions/managers.py -------------------------------------------------------------------------------- /world/conditions/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/conditions/migrations/0001_initial.py -------------------------------------------------------------------------------- /world/conditions/migrations/0002_auto_20190503_1914.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/conditions/migrations/0002_auto_20190503_1914.py -------------------------------------------------------------------------------- /world/conditions/migrations/0003_wound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/conditions/migrations/0003_wound.py -------------------------------------------------------------------------------- /world/conditions/migrations/0004_characterhealthstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/conditions/migrations/0004_characterhealthstatus.py -------------------------------------------------------------------------------- /world/conditions/migrations/0005_wound_healing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/conditions/migrations/0005_wound_healing.py -------------------------------------------------------------------------------- /world/conditions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/conditions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/conditions/models.py -------------------------------------------------------------------------------- /world/conditions/modifiers_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/conditions/modifiers_handlers.py -------------------------------------------------------------------------------- /world/conditions/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/conditions/tests.py -------------------------------------------------------------------------------- /world/conditions/triggerhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/conditions/triggerhandler.py -------------------------------------------------------------------------------- /world/conditions/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/conditions/views.py -------------------------------------------------------------------------------- /world/crafting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/crafting/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/crafting/admin.py -------------------------------------------------------------------------------- /world/crafting/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/crafting/apps.py -------------------------------------------------------------------------------- /world/crafting/craft_data_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/crafting/craft_data_handlers.py -------------------------------------------------------------------------------- /world/crafting/junk_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/crafting/junk_handlers.py -------------------------------------------------------------------------------- /world/crafting/migration_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/crafting/migration_helpers.py -------------------------------------------------------------------------------- /world/crafting/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/crafting/migrations/0001_initial.py -------------------------------------------------------------------------------- /world/crafting/migrations/0002_migrate_attributes_to_crafting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/crafting/migrations/0002_migrate_attributes_to_crafting.py -------------------------------------------------------------------------------- /world/crafting/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/crafting/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/crafting/models.py -------------------------------------------------------------------------------- /world/crafting/querysets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/crafting/querysets.py -------------------------------------------------------------------------------- /world/crafting/storage_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/crafting/storage_wrappers.py -------------------------------------------------------------------------------- /world/crafting/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/crafting/tests.py -------------------------------------------------------------------------------- /world/crafting/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/crafting/validators.py -------------------------------------------------------------------------------- /world/crafting/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /world/dominion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/dominion/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/admin.py -------------------------------------------------------------------------------- /world/dominion/agent_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/agent_commands.py -------------------------------------------------------------------------------- /world/dominion/agenthandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/agenthandler.py -------------------------------------------------------------------------------- /world/dominion/battle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/battle.py -------------------------------------------------------------------------------- /world/dominion/combat_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/combat_grid.py -------------------------------------------------------------------------------- /world/dominion/crisis_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/crisis_commands.py -------------------------------------------------------------------------------- /world/dominion/domain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/dominion/domain/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/domain/models.py -------------------------------------------------------------------------------- /world/dominion/dominion_typeclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/dominion_typeclasses.py -------------------------------------------------------------------------------- /world/dominion/explore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/explore.py -------------------------------------------------------------------------------- /world/dominion/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/forms.py -------------------------------------------------------------------------------- /world/dominion/general_dominion_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/general_dominion_commands.py -------------------------------------------------------------------------------- /world/dominion/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/managers.py -------------------------------------------------------------------------------- /world/dominion/map/Amaranth-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/map/Amaranth-Regular.otf -------------------------------------------------------------------------------- /world/dominion/map/arxmap_resized.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/map/arxmap_resized.jpg -------------------------------------------------------------------------------- /world/dominion/migrations/0001_squashed_dominion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/migrations/0001_squashed_dominion.py -------------------------------------------------------------------------------- /world/dominion/migrations/0002_fix_dominion_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/migrations/0002_fix_dominion_dependencies.py -------------------------------------------------------------------------------- /world/dominion/migrations/0003_auto_20210401_0026.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/migrations/0003_auto_20210401_0026.py -------------------------------------------------------------------------------- /world/dominion/migrations/0004_auto_20211030_1419.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/migrations/0004_auto_20211030_1419.py -------------------------------------------------------------------------------- /world/dominion/migrations/0005_auto_20211115_0144.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/migrations/0005_auto_20211115_0144.py -------------------------------------------------------------------------------- /world/dominion/migrations/0006_plotaction_episode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/migrations/0006_plotaction_episode.py -------------------------------------------------------------------------------- /world/dominion/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/dominion/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/models.py -------------------------------------------------------------------------------- /world/dominion/plots/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/dominion/plots/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/plots/constants.py -------------------------------------------------------------------------------- /world/dominion/plots/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/plots/models.py -------------------------------------------------------------------------------- /world/dominion/plots/plot_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/plots/plot_commands.py -------------------------------------------------------------------------------- /world/dominion/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/reports.py -------------------------------------------------------------------------------- /world/dominion/setup_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/setup_utils.py -------------------------------------------------------------------------------- /world/dominion/templates/dominion/_action_display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/templates/dominion/_action_display.html -------------------------------------------------------------------------------- /world/dominion/templates/dominion/cal_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/templates/dominion/cal_list.html -------------------------------------------------------------------------------- /world/dominion/templates/dominion/cal_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/templates/dominion/cal_view.html -------------------------------------------------------------------------------- /world/dominion/templates/dominion/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/templates/dominion/calendar.html -------------------------------------------------------------------------------- /world/dominion/templates/dominion/crisis_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/templates/dominion/crisis_view.html -------------------------------------------------------------------------------- /world/dominion/templates/dominion/map_pregen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/templates/dominion/map_pregen.html -------------------------------------------------------------------------------- /world/dominion/templates/dominion/map_wrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/templates/dominion/map_wrapper.html -------------------------------------------------------------------------------- /world/dominion/templates/dominion/rpevent_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/templates/dominion/rpevent_form.html -------------------------------------------------------------------------------- /world/dominion/templates/dominion/task_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/templates/dominion/task_list.html -------------------------------------------------------------------------------- /world/dominion/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/tests.py -------------------------------------------------------------------------------- /world/dominion/unit_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/unit_constants.py -------------------------------------------------------------------------------- /world/dominion/unit_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/unit_types.py -------------------------------------------------------------------------------- /world/dominion/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/urls.py -------------------------------------------------------------------------------- /world/dominion/view_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/view_utils.py -------------------------------------------------------------------------------- /world/dominion/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/dominion/views.py -------------------------------------------------------------------------------- /world/exploration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/exploration/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/exploration/admin.py -------------------------------------------------------------------------------- /world/exploration/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/exploration/builder.py -------------------------------------------------------------------------------- /world/exploration/exploration_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/exploration/exploration_commands.py -------------------------------------------------------------------------------- /world/exploration/loot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/exploration/loot.py -------------------------------------------------------------------------------- /world/exploration/migrations/0001_squashed_exploration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/exploration/migrations/0001_squashed_exploration.py -------------------------------------------------------------------------------- /world/exploration/migrations/0002_fix_exploration_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/exploration/migrations/0002_fix_exploration_dependencies.py -------------------------------------------------------------------------------- /world/exploration/migrations/0003_auto_20210401_0022.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/exploration/migrations/0003_auto_20210401_0022.py -------------------------------------------------------------------------------- /world/exploration/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/exploration/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/exploration/models.py -------------------------------------------------------------------------------- /world/exploration/npcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/exploration/npcs.py -------------------------------------------------------------------------------- /world/exploration/rooms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/exploration/rooms.py -------------------------------------------------------------------------------- /world/exploration/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/exploration/scripts.py -------------------------------------------------------------------------------- /world/exploration/static/exploration/explore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/exploration/static/exploration/explore.css -------------------------------------------------------------------------------- /world/exploration/static/exploration/explore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/exploration/static/exploration/explore.js -------------------------------------------------------------------------------- /world/exploration/templates/exploration/shardhaven_editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/exploration/templates/exploration/shardhaven_editor.html -------------------------------------------------------------------------------- /world/exploration/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/exploration/urls.py -------------------------------------------------------------------------------- /world/exploration/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/exploration/views.py -------------------------------------------------------------------------------- /world/fashion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/fashion/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/fashion/admin.py -------------------------------------------------------------------------------- /world/fashion/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/fashion/apps.py -------------------------------------------------------------------------------- /world/fashion/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/fashion/exceptions.py -------------------------------------------------------------------------------- /world/fashion/fashion_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/fashion/fashion_commands.py -------------------------------------------------------------------------------- /world/fashion/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/fashion/migrations/0001_initial.py -------------------------------------------------------------------------------- /world/fashion/migrations/0002_auto_20180826_0309.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/fashion/migrations/0002_auto_20180826_0309.py -------------------------------------------------------------------------------- /world/fashion/migrations/0003_auto_20180827_1613.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/fashion/migrations/0003_auto_20180827_1613.py -------------------------------------------------------------------------------- /world/fashion/migrations/0004_auto_20181112_2036.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/fashion/migrations/0004_auto_20181112_2036.py -------------------------------------------------------------------------------- /world/fashion/migrations/0005_auto_20181212_2122.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/fashion/migrations/0005_auto_20181212_2122.py -------------------------------------------------------------------------------- /world/fashion/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/fashion/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/fashion/mixins.py -------------------------------------------------------------------------------- /world/fashion/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/fashion/models.py -------------------------------------------------------------------------------- /world/fashion/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/fashion/tests.py -------------------------------------------------------------------------------- /world/fashion/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/fashion/views.py -------------------------------------------------------------------------------- /world/game_constants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/game_constants/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/game_constants/admin.py -------------------------------------------------------------------------------- /world/game_constants/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/game_constants/apps.py -------------------------------------------------------------------------------- /world/game_constants/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/game_constants/managers.py -------------------------------------------------------------------------------- /world/game_constants/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/game_constants/migrations/0001_initial.py -------------------------------------------------------------------------------- /world/game_constants/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/game_constants/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/game_constants/models.py -------------------------------------------------------------------------------- /world/game_constants/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/game_constants/tests.py -------------------------------------------------------------------------------- /world/game_constants/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /world/magic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/magic/__init__.py -------------------------------------------------------------------------------- /world/magic/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/magic/admin.py -------------------------------------------------------------------------------- /world/magic/advancement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/magic/advancement.py -------------------------------------------------------------------------------- /world/magic/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/magic/apps.py -------------------------------------------------------------------------------- /world/magic/conditional_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/magic/conditional_parser.py -------------------------------------------------------------------------------- /world/magic/conditionals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/magic/conditionals.py -------------------------------------------------------------------------------- /world/magic/consequences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/magic/consequences.py -------------------------------------------------------------------------------- /world/magic/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/magic/effects.py -------------------------------------------------------------------------------- /world/magic/formfields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/magic/formfields.py -------------------------------------------------------------------------------- /world/magic/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/magic/forms.py -------------------------------------------------------------------------------- /world/magic/magic_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/magic/magic_commands.py -------------------------------------------------------------------------------- /world/magic/materials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/magic/materials.py -------------------------------------------------------------------------------- /world/magic/migrations/0001_squashed_magic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/magic/migrations/0001_squashed_magic.py -------------------------------------------------------------------------------- /world/magic/migrations/0002_fix_magic_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/magic/migrations/0002_fix_magic_dependencies.py -------------------------------------------------------------------------------- /world/magic/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/magic/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/magic/mixins.py -------------------------------------------------------------------------------- /world/magic/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/magic/models.py -------------------------------------------------------------------------------- /world/magic/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/magic/test_utils.py -------------------------------------------------------------------------------- /world/magic/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/magic/tests.py -------------------------------------------------------------------------------- /world/msgs/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /world/msgs/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/admin.py -------------------------------------------------------------------------------- /world/msgs/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/forms.py -------------------------------------------------------------------------------- /world/msgs/handler_mixins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/msgs/handler_mixins/handler_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/handler_mixins/handler_base.py -------------------------------------------------------------------------------- /world/msgs/handler_mixins/journalhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/handler_mixins/journalhandler.py -------------------------------------------------------------------------------- /world/msgs/handler_mixins/messengerhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/handler_mixins/messengerhandler.py -------------------------------------------------------------------------------- /world/msgs/handler_mixins/msg_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/handler_mixins/msg_utils.py -------------------------------------------------------------------------------- /world/msgs/languagehandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/languagehandler.py -------------------------------------------------------------------------------- /world/msgs/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/msgs/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/msgs/management/commands/fix_broken_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/management/commands/fix_broken_schema.py -------------------------------------------------------------------------------- /world/msgs/management/commands/fix_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/management/commands/fix_permissions.py -------------------------------------------------------------------------------- /world/msgs/management/commands/wipe_stale_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/management/commands/wipe_stale_attributes.py -------------------------------------------------------------------------------- /world/msgs/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/managers.py -------------------------------------------------------------------------------- /world/msgs/messagehandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/messagehandler.py -------------------------------------------------------------------------------- /world/msgs/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/migrations/0001_initial.py -------------------------------------------------------------------------------- /world/msgs/migrations/0002_auto_20160831_0248.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/migrations/0002_auto_20160831_0248.py -------------------------------------------------------------------------------- /world/msgs/migrations/0003_convert_header_to_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/migrations/0003_convert_header_to_tags.py -------------------------------------------------------------------------------- /world/msgs/migrations/0004_comment_journal_messenger_post_rumor_vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/migrations/0004_comment_journal_messenger_post_rumor_vision.py -------------------------------------------------------------------------------- /world/msgs/migrations/0005_auto_20170920_0148.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/migrations/0005_auto_20170920_0148.py -------------------------------------------------------------------------------- /world/msgs/migrations/0006_remove_inform_read_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/migrations/0006_remove_inform_read_by.py -------------------------------------------------------------------------------- /world/msgs/migrations/0007_inform_read_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/migrations/0007_inform_read_by.py -------------------------------------------------------------------------------- /world/msgs/migrations/0008_auto_20181207_1843.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/migrations/0008_auto_20181207_1843.py -------------------------------------------------------------------------------- /world/msgs/migrations/0009_auto_20191228_1417.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/migrations/0009_auto_20191228_1417.py -------------------------------------------------------------------------------- /world/msgs/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/msgs/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/models.py -------------------------------------------------------------------------------- /world/msgs/templates/msgs/_board_list_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/templates/msgs/_board_list_settings.html -------------------------------------------------------------------------------- /world/msgs/templates/msgs/_board_post_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/templates/msgs/_board_post_search.html -------------------------------------------------------------------------------- /world/msgs/templates/msgs/_journal_display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/templates/msgs/_journal_display.html -------------------------------------------------------------------------------- /world/msgs/templates/msgs/_journal_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/templates/msgs/_journal_search.html -------------------------------------------------------------------------------- /world/msgs/templates/msgs/_search_paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/templates/msgs/_search_paginator.html -------------------------------------------------------------------------------- /world/msgs/templates/msgs/board_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/templates/msgs/board_list.html -------------------------------------------------------------------------------- /world/msgs/templates/msgs/journal_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/templates/msgs/journal_list.html -------------------------------------------------------------------------------- /world/msgs/templates/msgs/journal_list_read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/templates/msgs/journal_list_read.html -------------------------------------------------------------------------------- /world/msgs/templates/msgs/post_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/templates/msgs/post_list.html -------------------------------------------------------------------------------- /world/msgs/templates/msgs/post_list_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/templates/msgs/post_list_search.html -------------------------------------------------------------------------------- /world/msgs/templates/msgs/post_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/templates/msgs/post_view.html -------------------------------------------------------------------------------- /world/msgs/templates/msgs/post_view_all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/templates/msgs/post_view_all.html -------------------------------------------------------------------------------- /world/msgs/templates/msgs/post_view_unread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/templates/msgs/post_view_unread.html -------------------------------------------------------------------------------- /world/msgs/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/urls.py -------------------------------------------------------------------------------- /world/msgs/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/msgs/views.py -------------------------------------------------------------------------------- /world/petitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/petitions/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/petitions/admin.py -------------------------------------------------------------------------------- /world/petitions/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/petitions/apps.py -------------------------------------------------------------------------------- /world/petitions/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/petitions/exceptions.py -------------------------------------------------------------------------------- /world/petitions/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/petitions/forms.py -------------------------------------------------------------------------------- /world/petitions/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/petitions/migrations/0001_initial.py -------------------------------------------------------------------------------- /world/petitions/migrations/0002_auto_20180722_0217.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/petitions/migrations/0002_auto_20180722_0217.py -------------------------------------------------------------------------------- /world/petitions/migrations/0003_brokeredsale_broker_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/petitions/migrations/0003_brokeredsale_broker_type.py -------------------------------------------------------------------------------- /world/petitions/migrations/0004_auto_20190723_1746.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/petitions/migrations/0004_auto_20190723_1746.py -------------------------------------------------------------------------------- /world/petitions/migrations/0005_auto_20190908_0924.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/petitions/migrations/0005_auto_20190908_0924.py -------------------------------------------------------------------------------- /world/petitions/migrations/0006_auto_20210401_0022.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/petitions/migrations/0006_auto_20210401_0022.py -------------------------------------------------------------------------------- /world/petitions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/petitions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/petitions/models.py -------------------------------------------------------------------------------- /world/petitions/petitions_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/petitions/petitions_commands.py -------------------------------------------------------------------------------- /world/petitions/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/petitions/tests.py -------------------------------------------------------------------------------- /world/petitions/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/petitions/views.py -------------------------------------------------------------------------------- /world/prayer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/prayer/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/prayer/admin.py -------------------------------------------------------------------------------- /world/prayer/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/prayer/apps.py -------------------------------------------------------------------------------- /world/prayer/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/prayer/migrations/0001_initial.py -------------------------------------------------------------------------------- /world/prayer/migrations/0002_religion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/prayer/migrations/0002_religion.py -------------------------------------------------------------------------------- /world/prayer/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/prayer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/prayer/models.py -------------------------------------------------------------------------------- /world/prayer/prayer_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/prayer/prayer_commands.py -------------------------------------------------------------------------------- /world/prayer/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/prayer/tests.py -------------------------------------------------------------------------------- /world/prayer/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /world/prototypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/prototypes.py -------------------------------------------------------------------------------- /world/quests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/quests/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/quests/admin.py -------------------------------------------------------------------------------- /world/quests/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/quests/apps.py -------------------------------------------------------------------------------- /world/quests/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/quests/migrations/0001_initial.py -------------------------------------------------------------------------------- /world/quests/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/quests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/quests/models.py -------------------------------------------------------------------------------- /world/quests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/quests/tests.py -------------------------------------------------------------------------------- /world/quests/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /world/roll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/roll.py -------------------------------------------------------------------------------- /world/stat_checks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/stat_checks/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/stat_checks/admin.py -------------------------------------------------------------------------------- /world/stat_checks/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/stat_checks/apps.py -------------------------------------------------------------------------------- /world/stat_checks/check_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/stat_checks/check_commands.py -------------------------------------------------------------------------------- /world/stat_checks/check_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/stat_checks/check_maker.py -------------------------------------------------------------------------------- /world/stat_checks/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/stat_checks/constants.py -------------------------------------------------------------------------------- /world/stat_checks/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/stat_checks/migrations/0001_initial.py -------------------------------------------------------------------------------- /world/stat_checks/migrations/0002_auto_20201025_1127.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/stat_checks/migrations/0002_auto_20201025_1127.py -------------------------------------------------------------------------------- /world/stat_checks/migrations/0003_auto_20201227_1710.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/stat_checks/migrations/0003_auto_20201227_1710.py -------------------------------------------------------------------------------- /world/stat_checks/migrations/0004_auto_20210906_1457.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/stat_checks/migrations/0004_auto_20210906_1457.py -------------------------------------------------------------------------------- /world/stat_checks/migrations/0005_statcombination_dynamic_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/stat_checks/migrations/0005_statcombination_dynamic_system.py -------------------------------------------------------------------------------- /world/stat_checks/migrations/0006_statcheck_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/stat_checks/migrations/0006_statcheck_category.py -------------------------------------------------------------------------------- /world/stat_checks/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/stat_checks/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/stat_checks/models.py -------------------------------------------------------------------------------- /world/stat_checks/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/stat_checks/tests.py -------------------------------------------------------------------------------- /world/stat_checks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/stat_checks/utils.py -------------------------------------------------------------------------------- /world/stat_checks/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /world/stats_and_skills.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/stats_and_skills.py -------------------------------------------------------------------------------- /world/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/templates/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/templates/admin.py -------------------------------------------------------------------------------- /world/templates/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/templates/apps.py -------------------------------------------------------------------------------- /world/templates/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/templates/exceptions.py -------------------------------------------------------------------------------- /world/templates/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/templates/migrations/0001_initial.py -------------------------------------------------------------------------------- /world/templates/migrations/0002_auto_20181031_1455.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/templates/migrations/0002_auto_20181031_1455.py -------------------------------------------------------------------------------- /world/templates/migrations/0003_auto_20191228_1417.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/templates/migrations/0003_auto_20191228_1417.py -------------------------------------------------------------------------------- /world/templates/migrations/0004_auto_20210418_1715.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/templates/migrations/0004_auto_20210418_1715.py -------------------------------------------------------------------------------- /world/templates/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/templates/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/templates/mixins.py -------------------------------------------------------------------------------- /world/templates/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/templates/models.py -------------------------------------------------------------------------------- /world/templates/template_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/templates/template_commands.py -------------------------------------------------------------------------------- /world/templates/template_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/templates/template_manager.py -------------------------------------------------------------------------------- /world/templates/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/templates/tests/test_template_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/templates/tests/test_template_creation.py -------------------------------------------------------------------------------- /world/traits/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/traits/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/traits/admin.py -------------------------------------------------------------------------------- /world/traits/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/traits/apps.py -------------------------------------------------------------------------------- /world/traits/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/traits/exceptions.py -------------------------------------------------------------------------------- /world/traits/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/traits/migrations/0001_initial.py -------------------------------------------------------------------------------- /world/traits/migrations/0002_auto_20201108_1757.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/traits/migrations/0002_auto_20201108_1757.py -------------------------------------------------------------------------------- /world/traits/migrations/0003_convert_bonus_max_hp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/traits/migrations/0003_convert_bonus_max_hp.py -------------------------------------------------------------------------------- /world/traits/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/traits/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/traits/models.py -------------------------------------------------------------------------------- /world/traits/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/traits/tests.py -------------------------------------------------------------------------------- /world/traits/traitshandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/traits/traitshandler.py -------------------------------------------------------------------------------- /world/traits/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /world/weather/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/weather/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/weather/admin.py -------------------------------------------------------------------------------- /world/weather/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/weather/migrations/0001_initial.py -------------------------------------------------------------------------------- /world/weather/migrations/0002_auto_20181027_1823.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/weather/migrations/0002_auto_20181027_1823.py -------------------------------------------------------------------------------- /world/weather/migrations/0003_weathertype_automated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/weather/migrations/0003_weathertype_automated.py -------------------------------------------------------------------------------- /world/weather/migrations/0004_auto_20181101_2019.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/weather/migrations/0004_auto_20181101_2019.py -------------------------------------------------------------------------------- /world/weather/migrations/0005_auto_20191228_1417.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/weather/migrations/0005_auto_20191228_1417.py -------------------------------------------------------------------------------- /world/weather/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/weather/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/weather/models.py -------------------------------------------------------------------------------- /world/weather/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/weather/tests.py -------------------------------------------------------------------------------- /world/weather/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/weather/utils.py -------------------------------------------------------------------------------- /world/weather/weather_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/weather/weather_commands.py -------------------------------------------------------------------------------- /world/weather/weather_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arx-Game/arxcode/HEAD/world/weather/weather_script.py --------------------------------------------------------------------------------