|
| 1 | +--- |
| 2 | +import StarlightPage from '@astrojs/starlight/components/StarlightPage.astro'; |
| 3 | +// import { getSeeAlsoLinksFromList } from '@src/utils/general'; |
| 4 | +// import SeeAlsoSection from '@src/components/SeeAlsoSection.astro'; |
| 5 | +import { MTA_CURRENT_VERSION } from '@src/content.constants'; |
| 6 | +--- |
| 7 | + |
| 8 | +<StarlightPage frontmatter={{ |
| 9 | + template: 'doc', |
| 10 | + title: 'How you can help', |
| 11 | + tableOfContents: false, |
| 12 | +}}> |
| 13 | + <p><strong>Multi Theft Auto</strong> has loads of areas in which you can help. In turn, we'll be more than happy to help you get started with any ideas you have, help test them and - if they're good enough - release them to the whole community. This page outlines the key areas you could do something in, of course, there are many things we've not thought of, so think outside the box!</p> |
| 14 | + |
| 15 | + <h3>Programming</h3> |
| 16 | + <ul> |
| 17 | + <li>Become a patch contributor by sending <a href="https://github.com/multitheftauto/mtasa-blue/pulls">pull requests</a> to MTA, containing requested features or bugfixes: <a href="/Coding_guidelines">Coding guidelines</a></li> |
| 18 | + </ul> |
| 19 | + |
| 20 | + <h3>Translating</h3> |
| 21 | + <ul> |
| 22 | + <li>Translate MTA to your native language on Crowdin at <a href="https://multitheftauto.crowdin.com/">https://multitheftauto.crowdin.com/</a></li> |
| 23 | + </ul> |
| 24 | + |
| 25 | + <h3>Scripting</h3> |
| 26 | + <ul> |
| 27 | + <li>Become a contributor to MTA's official resources, read more about them here: <a href="/Default_resources">Default resources</a></li> |
| 28 | + <li>Create and <a href="https://community.multitheftauto.com/">publish</a> a gamemode or useful script |
| 29 | + <ul> |
| 30 | + <li><a href="/Scripting_Introduction">Scripting Introduction</a></li> |
| 31 | + <li><a href="https://www.lua.org/pil/index.html">"Programming in Lua" Manual</a></li> |
| 32 | + </ul> |
| 33 | + </li> |
| 34 | + <li>Make a general purpose resource that provides useful functions to other resources.</li> |
| 35 | + </ul> |
| 36 | + |
| 37 | + <h3>Mapping</h3> |
| 38 | + <ul> |
| 39 | + <li>Create and <a href="https://community.multitheftauto.com/">publish</a> a map for an existing gamemode, with the map editor. |
| 40 | + <ul> |
| 41 | + <li><a href="/Resource:Editor">Map Editor Manual</a></li> |
| 42 | + </ul> |
| 43 | + </li> |
| 44 | + </ul> |
| 45 | + |
| 46 | + <h3>Web development</h3> |
| 47 | + <ul> |
| 48 | + <li>Create your own system for statistics - using the <a href="/PHP_SDK">PHP SDK</a> as a basis. Join the |
| 49 | + <a href="https://discord.com/invite/mtasa">MTA Discord</a> (or |
| 50 | + <a href="https://discord.gg/GNN6PRtTnu">development Discord</a>) for help. |
| 51 | + </li> |
| 52 | + </ul> |
| 53 | + |
| 54 | + <h3>Documentation</h3> |
| 55 | + <p>Before you make changes check out: <a href="/Help:Editing_Guidelines">Editing Guidelines</a> and |
| 56 | + <a href="/Help:MTA_Wiki_Specific_Templates">Specific Templates</a></p> |
| 57 | + <ul> |
| 58 | + <li>Finish documentation for <a href="/Category:Incomplete">Incomplete functions</a> - ask in #mta.scripting if you're not sure of something.</li> |
| 59 | + <li>Add examples to <a href="/Category:Needs_Example">functions & events missing examples</a> - please <strong>test</strong> them, and again, ask if you need help.</li> |
| 60 | + <li>Review and verify <a href="/Category:Needs_Checking">pages that need checking</a> - make sure highlighted issues are solved before removing pages from the category.</li> |
| 61 | + <li>Expand the pages that explain <a href="/Category:Scripting_Concepts">MTA core concepts</a>.</li> |
| 62 | + <li>Write <a href="https://forum.multitheftauto.com/forum/123-tutorials/">tutorials</a> to help new people.</li> |
| 63 | + <li>Translate the wiki pages so people from other countries can get started in MTA too.</li> |
| 64 | + <li>Create documentation for undocumented functions and events <a href="/Undocumented_Items">Undocumented Items</a></li> |
| 65 | + <li>Keep 'changes in' <a href={"/Changes_in_"+MTA_CURRENT_VERSION.full}>current work-in-progress</a> for future releases updated.</li> |
| 66 | + </ul> |
| 67 | + |
| 68 | + <h3>Quality Assurance</h3> |
| 69 | + <ul> |
| 70 | + <li><a href="https://github.com/multitheftauto/mtasa-blue/issues">Report issues</a> with the mod, make sure to do a search on the already reported issues first.</li> |
| 71 | + <li>Test and confirm existing reported issues.</li> |
| 72 | + <li>Use the newest build of MTA to detect and report new bugs, by going to 'Settings', 'Advanced', 'Update build type' and choosing 'Nightly' or get it regularly |
| 73 | + <a href="https://nightly.multitheftauto.com/">from here</a>. |
| 74 | + </li> |
| 75 | + <li>Any bugs which are related to a scripting function/event and present in the main release (rather than nightlies), document that bug by adding a |
| 76 | + <a href="/Help:MTA_Wiki_Specific_Templates">warning</a> to the wiki page to save other scripters a lot of time. |
| 77 | + </li> |
| 78 | + </ul> |
| 79 | + |
| 80 | + <h3>Specific tasks</h3> |
| 81 | + <ul> |
| 82 | + <li>Create a fuzzer to check for crashes in our scripting functions.</li> |
| 83 | + </ul> |
| 84 | + |
| 85 | + <h3>Grant</h3> |
| 86 | + <ul> |
| 87 | + <li>You can donate to MTA <a href="https://multitheftauto.com/donate/manage.php">here</a></li> |
| 88 | + </ul> |
| 89 | + |
| 90 | +</StarlightPage> |
0 commit comments