0 of 0

File information

Last updated

Original upload

Created by

fcterryb

Uploaded by

fcterryb

Virus scan

Safe to use

Tags for this mod

Documentation

Readme

View as plain text

Desinged so you could repair the bots made from buildablebots mod back to the state they had been before being killed.
Since you should be able to repair the bots if you can make them and if you spent the time hunting up parts to build and upgrade them you should be able to repair them back to thier condition before they were damaged unless they are turned into ashes.

uses one fission battery and five scrap metal to do the repair WARNING any bot that was hostile to you may still be upon being repaired

one bug ive noticed is if the bot was dismembered it may do strange things untill you fast travel to another place this is do to the command used in the script to "resurrect 1" the bots

it can be used by itself to repair any dead robot in the game but as mentioned above if its a hostile bot it may still be hostile.

it also moves the bot to another cell and back to its original possition to clear up some of the bugs that happen using the resurrect 1 command. Below is listed the script commands that I used for this for any one else wanting to use in thier mod



int xt ;variable to store x pos in
int yt ;variable to store y pos in
int zt ;variable to store z pos in

BEGIN

set xt to getpos x ;stores bots x pos
set yt to getpos y ;stores bots y pos
set zt to getpos z ;stores bots z pos
resurrect 1 ;revives the bot
disable ;clears its graphics
moveto 95b6a ;moves the bot to the megaton player house
enable ;restores its graphics
moveto player 20 ;moves it back to the cell it was in
setpos x xt ;restores its x pos
setpos y yt ;restores its y pos
setpos z zt ;restores its z pos

end


the number 95b6a is a persistant reference in the megaton player house any persistant reference should be able to be used for this

I have updated it so you can also turn the bot into scrap metal if you want instead of just repairing it also added a banned bot list for the ones that can not be deleted from the game to prevent creating an unlimited supply of scrap metal by continuously scraping them.