Garry's Mod

Garry's Mod

HIM
"lost" update
My friend again found something new about the update, new sounds, and he can steal our stuff (props maybe), thats all he found
< >
Showing 1-6 of 6 comments
Spy Feb 15 @ 9:17am 
got it
if anyone knows scripting
thats the HIM props stealing script
function homeless_DoStealing (dedication)
if terminator_Extras.homeless.DoingStealing then return end
terminator_Extras.homeless_DoingStealing = true
desire = dedication
timer.Create( "homeless_find_to_steal", 1, 0, function() -- was think
stealThink()
kvtsane Feb 15 @ 6:39pm 
already documented but keep posting more if you find anything new
bobick Feb 15 @ 8:56pm 
there are now "opening" sounds in the mod which are just tree creaks
local spawnOffs = Vector( 0, 0, 55 )

function ENT:Initialize()

self:SetModel( "models/hunter/misc/sphere025x025.mdl" )
self:DrawShadow( false )
self:SetNoDraw( true )
self.Speed = 0
This in the homeless_lost folder
function ENT:Initialize()

local soul = ClientsideRagdoll( "models/player/corpse1.mdl", RENDERGROUP_OPAQUE )
if not IsValid( soul ) then return end -- :(
self.mySoul = soul

self:CallOnRemove( "homeless_cleanuprag", function()
if not IsValid( self.mySoul ) then return end
SafeRemoveEntity( self.mySoul )

end )
soulSetPosSimple( soul, self:WorldSpaceCenter() )
soul:SetNoDraw( false )

for bone = 0, boneCountFixed( soul ) do
local soulsObj = soul:GetPhysicsObjectNum( bone )
if IsValid( soulsObj ) then
soulsObj:SetMass( 1 )
soulsObj:SetDragCoefficient( 15 )
soulsObj:EnableCollisions( false )

end
end
seems to be HIM's buddy i guess?
< >
Showing 1-6 of 6 comments
Per page: 1530 50