Jump to content

Edit History

Vertex

Vertex

On 3/15/2019 at 10:22 PM, Darrth said:

Custom playermodels, not too many but just some to use to look cool ? also no hatsune mikus

There is a ton of custom player models on the xG Morbus server. You can quickly open the pointshop menu, to find ones you like.

Any server operator can mount this workshop file and contact myself on steam for the lua files to the pointshop menu. 

Vertex

Vertex

On 3/15/2019 at 10:22 PM, Darrth said:

Custom playermodels, not too many but just some to use to look cool ? also no hatsune mikus

There is a ton of custom player models on the xG Morbus server. You can quickly open the pointshop menu, to find ones you like.

Any server operator can mount this workshop file and contact myself on steam for the lua files to the pointshop menu. 

function DownloadPointshopPack()	
	timer.Simple(1, function()		
		if foundPS == false then
			PrintWorkshopMessage("Downloading pointshop pack..." )
		end end)

	steamworks.FileInfo( 678646979, function( result )
		if result.installed == false then
			steamworks.Download( result.fileid, true, function( name )
				game.MountGMA( name )
				PrintWorkshopMessage("Mounted pointshop pack." )
				foundPS = true
			end )
		else
			foundPS = true
		end
	end )
end

The above function will download the pack after the client connects to the server, so they don't have to wait for it. It just needs to be called in a hook.