respawnVehicle – Talk

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:


Are objects that are marked as respawnable treated any differently than normal objects that aren't set to respawn?? (Besides the respawning part) Meaning for the net code do they transmit more information about themselves? If I script spawned all my vehicles as respawnable 1 time, would the respawn code take care of cleaning up vehicles for me so I don't have to worry about a littered battlefield in a CTI game? --[[User:Doolittle|Doolittle]] 19:10, 21 June 2007 (CEST)
Are objects that are marked as respawnable treated any differently than normal objects that aren't set to respawn?? (Besides the respawning part) Meaning for the net code do they transmit more information about themselves? If I script spawned all my vehicles as respawnable 1 time, would the respawn code take care of cleaning up vehicles for me so I don't have to worry about a littered battlefield in a CTI game? --[[User:Doolittle|Doolittle]] 19:10, 21 June 2007 (CEST)
It should be mentioned you need ''respawnvehicle'':
<code>respawn=3;
respawndelay=2;
respawnvehicle=3;
respawnVehicleDelay=10;
</code> --[[User:Doolittle|Doolittle]] 05:16, 13 July 2007 (CEST)

Revision as of 05:16, 13 July 2007

There numerous ways this command could be implemented. Here in the BIS forums is just an example. --Sy 12:06, 21 June 2007 (CEST)

Are objects that are marked as respawnable treated any differently than normal objects that aren't set to respawn?? (Besides the respawning part) Meaning for the net code do they transmit more information about themselves? If I script spawned all my vehicles as respawnable 1 time, would the respawn code take care of cleaning up vehicles for me so I don't have to worry about a littered battlefield in a CTI game? --Doolittle 19:10, 21 June 2007 (CEST)

It should be mentioned you need respawnvehicle: respawn=3; respawndelay=2; respawnvehicle=3; respawnVehicleDelay=10; --Doolittle 05:16, 13 July 2007 (CEST)