Obsidian Plague

Obsidian Plague

@obsidian-plague

The dude with the food, or something.

175360015912140803
Joined 14 May 2023
South Town
Badges
One Year
One Year
Time flies when you're browsing Half-Life memes
Follow

If you're a fan of gmod tower and yearn to play it again like its 2014, well then youre in luck cause i found a fan hosted recreation of the server, gamemodes and all. #Notsponsored server: connect 5.161.202.45:27015

happymelon5
gmod1
SourceBox is a free and open source Source Engine based sandbox game that focuses on integrating other Source games into itself, allowing you to play your favorite games in any combination and configuration you want.
SourceBox's goal is to provide the ultimate Source Engine sandbox experience without being strictly based on hl2 (cough cough gmod), along with giving mod developers something that's much closer to the engine they are working with. Not only that, we are planning to make a hub world something along the lines of PSHome/GMTower, where you could join servers, play minigames, and interact with other players.

SourceBox also aims to be cross-platform, running on the nillerusr fork of the engine, allowing it to be compiled for Android!

If you are a developer, modeler, mapper, or just generally interested in the project, I highly suggest looking at our ModDB page: https://www.moddb.com/mods/sourcebox
SourceBox is a free and open source Source Engine based sandbox game that focuses on integrating other Source games into itself, allowing you to play your favorite games in any combination and configuration you want.
SourceBox's goal is to provide the ultimate Source Engine sandbox experience without being strictly based on hl2 (cough cough gmod), along with giving mod developers something that's much closer to the engine they are working with. Not only that, we are planning to make a hub world something along the lines of PSHome/GMTower, where you could join servers, play minigames, and interact with other players.

SourceBox also aims to be cross-platform, running on the nillerusr fork of the engine, allowing it to be compiled for Android!

If you are a developer, modeler, mapper, or just generally interested in the project, I highly suggest looking at our ModDB page: https://www.moddb.com/mods/sourcebox
SourceBox is a free and open source Source Engine based sandbox game that focuses on integrating other Source games into itself, allowing you to play your favorite games in any combination and configuration you want.
SourceBox's goal is to provide the ultimate Source Engine sandbox experience without being strictly based on hl2 (cough cough gmod), along with giving mod developers something that's much closer to the engine they are working with. Not only that, we are planning to make a hub world something along the lines of PSHome/GMTower, where you could join servers, play minigames, and interact with other players.

SourceBox also aims to be cross-platform, running on the nillerusr fork of the engine, allowing it to be compiled for Android!

If you are a developer, modeler, mapper, or just generally interested in the project, I highly suggest looking at our ModDB page: https://www.moddb.com/mods/sourcebox
SourceBox is a free and open source Source Engine based sandbox game that focuses on integrating other Source games into itself, allowing you to play your favorite games in any combination and configuration you want.
SourceBox's goal is to provide the ultimate Source Engine sandbox experience without being strictly based on hl2 (cough cough gmod), along with giving mod developers something that's much closer to the engine they are working with. Not only that, we are planning to make a hub world something along the lines of PSHome/GMTower, where you could join servers, play minigames, and interact with other players.

SourceBox also aims to be cross-platform, running on the nillerusr fork of the engine, allowing it to be compiled for Android!

If you are a developer, modeler, mapper, or just generally interested in the project, I highly suggest looking at our ModDB page: https://www.moddb.com/mods/sourcebox

SourceBox is a free and open source Source Engine based sandbox game that focuses on integrating other Source games into itself, allowing you to play your favorite games in any combination and configuration you want. SourceBox's goal is to provide the ultimate Source Engine sandbox experience without being strictly based on hl2 (cough cough gmod), along with giving mod developers something that's much closer to the engine they are working with. Not only that, we are planning to make a hub world …

(Edited)
barneysmile16
alyxpog9
smart8
smugotis5
Tired of manually preaparing the list of enabled addons?
"""
function CallEnabledAddons()
	local Addons = engine.GetAddons()
	for _, Addon in pairs(Addons) do
		if Addon["mounted"] == true then
			local AddonTitle = Addon["title"]
			local AddonID = Addon["wsid"]
			
			local AddonMessage = "Addon: " .. AddonTitle .. ", workshop link: https://steamcommunity.com/sharedfiles/filedetails/?id=" .. AddonID
			print(AddonMessage)
		end
	end
end

if CLIENT then
	concommand.Add("call_enabled_addons", function()
		CallEnabledAddons()
	end)
end
"""
Use that code above, lunch it on the lua_openscript_cl and then you can use command: call_enabled_addons. This command will print for you list of the enabled addons with workshop links!

Tired of manually preaparing the list of enabled addons? """ function CallEnabledAddons() local Addons = engine.GetAddons() for _, Addon in pairs(Addons) do if Addon["mounted"] == true then local AddonTitle = Addon["title"] local AddonID = Addon["wsid"] local AddonMessage = "Addon: " .. AddonTitle .. ", workshop link: steamcommunity.com/sharedfiles/f…" .. AddonID print(AddonMessage) end end end if CLIENT then concommand.Add("call_enabled_addons", fu…

ttthmm1