├── .astylerc ├── .editorconfig ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── bw-assets ├── bw-logo.png ├── console.png ├── disable_pb.png ├── editor-addwp.png ├── editor-addwp2.png ├── editor-link.png ├── editor.png ├── saved.png └── wpedit.md ├── maps └── mp │ └── bots │ ├── _bot.gsc │ ├── _bot_chat.gsc │ ├── _bot_internal.gsc │ ├── _bot_script.gsc │ ├── _bot_utility.gsc │ ├── _menu.gsc │ ├── _wp_editor.gsc │ └── waypoints │ └── _custom_map.gsc ├── scriptdata └── waypoints │ ├── mp_aa_vosges_fr_wp.csv │ ├── mp_africorp_rmk_wp.csv │ ├── mp_airfield_wp.csv │ ├── mp_asylum_wp.csv │ ├── mp_ax_brecourt_wp.csv │ ├── mp_bgate_wp.csv │ ├── mp_bloc_wp.csv │ ├── mp_borisovka_wp.csv │ ├── mp_broadcast_wp.csv │ ├── mp_carentan_storm_wp.csv │ ├── mp_castle_wp.csv │ ├── mp_convoy_wp.csv │ ├── mp_courtyard_wp.csv │ ├── mp_crash_day_wp.csv │ ├── mp_cw_breakout_wp.csv │ ├── mp_cw_brecourt_storm_wp.csv │ ├── mp_cw_burgundy_wp.csv │ ├── mp_cw_dawnville_wp.csv │ ├── mp_cw_hurtgen_wp.csv │ ├── mp_cw_neuville_wp.csv │ ├── mp_cw_strasbourg_wp.csv │ ├── mp_docks_wp.csv │ ├── mp_dome_wp.csv │ ├── mp_downfall_wp.csv │ ├── mp_dropzone_wp.csv │ ├── mp_drum_wp.csv │ ├── mp_egn_wp.csv │ ├── mp_fatherland_wp.csv │ ├── mp_fight_wp.csv │ ├── mp_frenchvillage_wp.csv │ ├── mp_gb_atami_wp.csv │ ├── mp_hangar_wp.csv │ ├── mp_hospital_wp.csv │ ├── mp_kilian_wp.csv │ ├── mp_kneedeep_wp.csv │ ├── mp_konigsberg_wp.csv │ ├── mp_kwai_wp.csv │ ├── mp_lapatrouille_wp.csv │ ├── mp_louret_wp.csv │ ├── mp_makin_day_wp.csv │ ├── mp_makin_wp.csv │ ├── mp_maquina_viet_wp.csv │ ├── mp_maquina_wp.csv │ ├── mp_mohdm3_wp.csv │ ├── mp_murmansk_wp.csv │ ├── mp_myths_farm_wp.csv │ ├── mp_nachtfeuer_wp.csv │ ├── mp_nightmare_wp.csv │ ├── mp_outskirts_wp.csv │ ├── mp_pavlov_h_wp.csv │ ├── mp_powcamp_n_wp.csv │ ├── mp_ripac_wp.csv │ ├── mp_rostov_wp.csv │ ├── mp_roundhouse_wp.csv │ ├── mp_seelow_wp.csv │ ├── mp_shipments_wp.csv │ ├── mp_showdown_wp.csv │ ├── mp_shrine_wp.csv │ ├── mp_snr_carentan_wp.csv │ ├── mp_southfrance_wp.csv │ ├── mp_sps_xian_wp.csv │ ├── mp_stalingrad5_wp.csv │ ├── mp_stalingrad_wp.csv │ ├── mp_strike_wp.csv │ ├── mp_suburban_wp.csv │ ├── mp_subway_wp.csv │ ├── mp_tge_wp.csv │ ├── mp_trainstation_wp.csv │ ├── mp_vodka_wp.csv │ ├── mp_waw_chateau_wp.csv │ ├── mp_winter_crash_wp.csv │ ├── mp_wolftown_wp.csv │ ├── mp_yomi_wp.csv │ └── readme.md └── scripts └── mp ├── bots.gsc ├── bots_adapter_pt4.gsc ├── bots_chat.gsc ├── bots_menu.gsc └── bots_wp_editor.gsc /.astylerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/.astylerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/README.md -------------------------------------------------------------------------------- /bw-assets/bw-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/bw-assets/bw-logo.png -------------------------------------------------------------------------------- /bw-assets/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/bw-assets/console.png -------------------------------------------------------------------------------- /bw-assets/disable_pb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/bw-assets/disable_pb.png -------------------------------------------------------------------------------- /bw-assets/editor-addwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/bw-assets/editor-addwp.png -------------------------------------------------------------------------------- /bw-assets/editor-addwp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/bw-assets/editor-addwp2.png -------------------------------------------------------------------------------- /bw-assets/editor-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/bw-assets/editor-link.png -------------------------------------------------------------------------------- /bw-assets/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/bw-assets/editor.png -------------------------------------------------------------------------------- /bw-assets/saved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/bw-assets/saved.png -------------------------------------------------------------------------------- /bw-assets/wpedit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/bw-assets/wpedit.md -------------------------------------------------------------------------------- /maps/mp/bots/_bot.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/maps/mp/bots/_bot.gsc -------------------------------------------------------------------------------- /maps/mp/bots/_bot_chat.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/maps/mp/bots/_bot_chat.gsc -------------------------------------------------------------------------------- /maps/mp/bots/_bot_internal.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/maps/mp/bots/_bot_internal.gsc -------------------------------------------------------------------------------- /maps/mp/bots/_bot_script.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/maps/mp/bots/_bot_script.gsc -------------------------------------------------------------------------------- /maps/mp/bots/_bot_utility.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/maps/mp/bots/_bot_utility.gsc -------------------------------------------------------------------------------- /maps/mp/bots/_menu.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/maps/mp/bots/_menu.gsc -------------------------------------------------------------------------------- /maps/mp/bots/_wp_editor.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/maps/mp/bots/_wp_editor.gsc -------------------------------------------------------------------------------- /maps/mp/bots/waypoints/_custom_map.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/maps/mp/bots/waypoints/_custom_map.gsc -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_aa_vosges_fr_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_aa_vosges_fr_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_africorp_rmk_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_africorp_rmk_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_airfield_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_airfield_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_asylum_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_asylum_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_ax_brecourt_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_ax_brecourt_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_bgate_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_bgate_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_bloc_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_bloc_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_borisovka_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_borisovka_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_broadcast_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_broadcast_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_carentan_storm_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_carentan_storm_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_castle_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_castle_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_convoy_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_convoy_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_courtyard_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_courtyard_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_crash_day_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_crash_day_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_cw_breakout_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_cw_breakout_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_cw_brecourt_storm_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_cw_brecourt_storm_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_cw_burgundy_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_cw_burgundy_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_cw_dawnville_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_cw_dawnville_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_cw_hurtgen_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_cw_hurtgen_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_cw_neuville_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_cw_neuville_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_cw_strasbourg_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_cw_strasbourg_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_docks_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_docks_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_dome_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_dome_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_downfall_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_downfall_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_dropzone_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_dropzone_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_drum_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_drum_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_egn_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_egn_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_fatherland_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_fatherland_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_fight_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_fight_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_frenchvillage_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_frenchvillage_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_gb_atami_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_gb_atami_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_hangar_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_hangar_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_hospital_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_hospital_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_kilian_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_kilian_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_kneedeep_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_kneedeep_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_konigsberg_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_konigsberg_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_kwai_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_kwai_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_lapatrouille_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_lapatrouille_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_louret_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_louret_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_makin_day_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_makin_day_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_makin_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_makin_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_maquina_viet_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_maquina_viet_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_maquina_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_maquina_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_mohdm3_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_mohdm3_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_murmansk_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_murmansk_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_myths_farm_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_myths_farm_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_nachtfeuer_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_nachtfeuer_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_nightmare_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_nightmare_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_outskirts_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_outskirts_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_pavlov_h_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_pavlov_h_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_powcamp_n_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_powcamp_n_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_ripac_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_ripac_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_rostov_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_rostov_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_roundhouse_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_roundhouse_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_seelow_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_seelow_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_shipments_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_shipments_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_showdown_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_showdown_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_shrine_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_shrine_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_snr_carentan_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_snr_carentan_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_southfrance_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_southfrance_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_sps_xian_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_sps_xian_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_stalingrad5_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_stalingrad5_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_stalingrad_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_stalingrad_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_strike_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_strike_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_suburban_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_suburban_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_subway_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_subway_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_tge_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_tge_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_trainstation_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_trainstation_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_vodka_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_vodka_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_waw_chateau_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_waw_chateau_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_winter_crash_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_winter_crash_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_wolftown_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_wolftown_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/mp_yomi_wp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/mp_yomi_wp.csv -------------------------------------------------------------------------------- /scriptdata/waypoints/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scriptdata/waypoints/readme.md -------------------------------------------------------------------------------- /scripts/mp/bots.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scripts/mp/bots.gsc -------------------------------------------------------------------------------- /scripts/mp/bots_adapter_pt4.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scripts/mp/bots_adapter_pt4.gsc -------------------------------------------------------------------------------- /scripts/mp/bots_chat.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scripts/mp/bots_chat.gsc -------------------------------------------------------------------------------- /scripts/mp/bots_menu.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scripts/mp/bots_menu.gsc -------------------------------------------------------------------------------- /scripts/mp/bots_wp_editor.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ineedbots/t4_bot_warfare/HEAD/scripts/mp/bots_wp_editor.gsc --------------------------------------------------------------------------------