diff options
-rw-r--r-- | docs/hosting-a-server-with-northstar/dedicated-server/README.md | 35 | ||||
-rw-r--r-- | docs/modding/README.md | 16 |
2 files changed, 43 insertions, 8 deletions
diff --git a/docs/hosting-a-server-with-northstar/dedicated-server/README.md b/docs/hosting-a-server-with-northstar/dedicated-server/README.md index b07f2e5..5f890ec 100644 --- a/docs/hosting-a-server-with-northstar/dedicated-server/README.md +++ b/docs/hosting-a-server-with-northstar/dedicated-server/README.md @@ -151,6 +151,41 @@ If ran on a server with the [`ns_should_return_to_lobby 0`](./#Convars-returntol | `rocket_lf` | Rocket Arena | | `mfd` | Marked for Death | +## Weapons + +Weapon Code|Weapon name +-|- +mp_weapon_car|CAR +mp_weapon_alternator_smg|Alternator +mp_weapon_hemlok_smg|Volt +mp_weapon_r97|R-97 +mp_weapon_hemlok|Hemlock rifle +mp_weapon_vinson|Flatline +mp_weapon_g2|G2 +mp_weapon_rspn101|R-201 +mp_weapon_rspn101_og|R-101 +mp_weapon_esaw|Devotion +mp_weapon_lstar|L-STAR +mp_weapon_lmg|Spitfire +mp_weapon_shotgun|EVA-8 Auto +mp_weapon_mastiff|Mastiff +mp_weapon_dmr|DMR +mp_weapon_sniper|Kraber +mp_weapon_doubletake|Double Take +mp_weapon_pulse_lmg|Cold War +mp_weapon_smr|Sidewinder SMR +mp_weapon_softball|Softball +mp_weapon_epg|EPG-1 +mp_weapon_shotgun_pistol|Mozambique +mp_weapon_wingman_n|Wingman Elite +mp_weapon_autopistol|RE-45 Auto +mp_weapon_semipistol|P2016 +mp_weapon_wingman|Wingman +mp_weapon_mgl|MGL +mp_weapon_arc_launcher|Thunderbolt +mp_weapon_rocket_launcher|Archer +mp_weapon_defender|Charge Rifle + ## Maps Maps can be set on autorotation using [`ns_should_return_to_lobby 0`](./#Convars-returntolobby) diff --git a/docs/modding/README.md b/docs/modding/README.md index f776a32..5b9a9a2 100644 --- a/docs/modding/README.md +++ b/docs/modding/README.md @@ -2,13 +2,13 @@ Usefull resources created by the community to help you start modding: -* First Time Modding? - [https://gist.github.com/VITALISED/b585b882af91370caf4f2137d9fb927a](https://gist.github.com/VITALISED/b585b882af91370caf4f2137d9fb927a) -* All the Squirrel Constants: - [https://gist.github.com/laundmo/825c4708663a179b23e144402b09244f](https://gist.github.com/laundmo/825c4708663a179b23e144402b09244f) -* Modding Documentation: - [https://github.com/ScureX/Titanfall2-ModdingDocumentation#readme](https://github.com/ScureX/Titanfall2-ModdingDocumentation#readme) -* Squirrel Highlighting for Npad++ and VSCode: - [https://gist.github.com/samisalreadytaken/5bcf322332074f31545ccb6651b88f2d](https://gist.github.com/samisalreadytaken/5bcf322332074f31545ccb6651b88f2d) -* List of Console Commands: - [https://pastebin.com/raw/3DSCK09f](https://pastebin.com/raw/3DSCK09f) -* Useful Squirrel: - [https://faithful-piper-52c.notion.site/Useful-Squirrel-2300bc55141e4bee85b8c7dc8afffbc9](https://faithful-piper-52c.notion.site/Useful-Squirrel-2300bc55141e4bee85b8c7dc8afffbc9) -* List of squirrel funcs available to dedicated server with their signatures: - [https://gist.github.com/laundmo/a6ee0692ae137876b7514c0f4a57df4b](https://gist.github.com/laundmo/a6ee0692ae137876b7514c0f4a57df4b) -* Native registered script functions, they are from Season 3 Apex but most also exist on Titanfall 2, especially the Titan functions. Also includes description for each function if the developers have given it one. - [https://github.com/kawainekome/ApexLegends_S3_Squirrel_Registered_API_SimpleDoc](https://github.com/kawainekome/ApexLegends_S3_Squirrel_Registered_API_SimpleDoc) +* NoSkill modding guide - [https://noskill.gitbook.io/titanfall2/](https://noskill.gitbook.io/titanfall2/) +* All the Squirrel Constants - [https://gist.github.com/laundmo/825c4708663a179b23e144402b09244f](https://gist.github.com/laundmo/825c4708663a179b23e144402b09244f) +* Modding Documentation - [https://github.com/ScureX/Titanfall2-ModdingDocumentation#readme](https://github.com/ScureX/Titanfall2-ModdingDocumentation#readme) +* Squirrel Highlighting for Npad++ and VSCode - [https://gist.github.com/samisalreadytaken/5bcf322332074f31545ccb6651b88f2d](https://gist.github.com/samisalreadytaken/5bcf322332074f31545ccb6651b88f2d) +* List of Console Commands - [https://pastebin.com/raw/3DSCK09f](https://pastebin.com/raw/3DSCK09f) +* Useful Squirrel - [https://faithful-piper-52c.notion.site/Useful-Squirrel-2300bc55141e4bee85b8c7dc8afffbc9](https://faithful-piper-52c.notion.site/Useful-Squirrel-2300bc55141e4bee85b8c7dc8afffbc9) +* List of squirrel funcs available to dedicated server with their signatures - [https://gist.github.com/laundmo/a6ee0692ae137876b7514c0f4a57df4b](https://gist.github.com/laundmo/a6ee0692ae137876b7514c0f4a57df4b) +* Native registered script functions, they are from Season 3 Apex but most also exist on Titanfall 2, especially the Titan functions. Also includes description for each function if the developers have given it one - [https://github.com/kawainekome/ApexLegends_S3_Squirrel_Registered_API_SimpleDoc](https://github.com/kawainekome/ApexLegends_S3_Squirrel_Registered_API_SimpleDoc) Check [the next page](getting-started.md) to get started. |