Unbreakable TurretJenko63 User Offline 10.05.18 05:49:05 pm Hello i just want to know how to make an unbreakable turret, for example: when the turret gets explodes, he will rebuild itself after 1 sec or something like that Any help in this?
Re: Unbreakable TurretCure Pikachu User Offline 10.05.18 06:31:11 pm You have objectdamage, so: 1234567addhook("objectdamage","objdmg") function objdmg(oid) local t = object(oid,"type") if t == 8 or t == 11 or t == 12 then return 1 end end