‪Black Ops 3 Source Code Explorer  0.1
‪An script explorer for Black Ops 3 by ZeRoY
_siegebot.csc
Go to the documentation of this file.
1 #insert scripts\shared\shared.gsh;
2 #insert scripts\shared\version.gsh;
3 #using scripts\codescripts\struct;
4 
5 #using scripts\shared\clientfield_shared;
6 #using scripts\shared\system_shared;
7 #using scripts\shared\vehicle_shared;
8 #using scripts\shared\callbacks_shared;
9 
10 #using scripts\shared\weapons\spike_charge_siegebot;
11 
12 #namespace siegebot;
13 
14 function autoexec ‪main()
15 {
17 }
18 
19 function ‪_setup_( localClientNum )
20 {
21  if( isdefined( self.scriptbundlesettings ) )
22  {
23  settings = ‪struct::get_script_bundle( "vehiclecustomsettings", self.scriptbundlesettings );
24  }
25 
26  if ( !isdefined( settings ) )
27  {
28  return;
29  }
30 }
‪_setup_
‪function _setup_(localClientNum)
Definition: _siegebot.csc:27
‪main
‪function autoexec main()
Definition: _siegebot.csc:14
‪add_vehicletype_callback
‪function add_vehicletype_callback(vehicletype, callback)
Definition: vehicle_shared.csc:77
‪get_script_bundle
‪function get_script_bundle(str_type, str_name)
Definition: struct.csc:45