Garry's Mod

Garry's Mod

Morbus Gamemode
Arthur_ 7 Aug, 2013 @ 10:25am
probleme weapon on the map
i havent got wepon on my map Why pls help me
< >
Showing 1-10 of 10 comments
Half-Master 2 Sep, 2013 @ 4:35am 
descrition.
Remscar  [developer] 13 Sep, 2013 @ 1:01pm 
Please read the mod description, and learn english.
Ninja Noize 26 Sep, 2013 @ 9:17am 
Same BUT! we got 3 players on server and 1 player playing as alien, but weapons dont spawn anyway
Kaede 27 Sep, 2013 @ 4:36pm 
Same here
safe haven 11 Oct, 2013 @ 7:36pm 
Please include how to fix the problem in the description, and stop being an ass.
Last edited by safe haven; 11 Oct, 2013 @ 7:37pm
ivan 11 Oct, 2013 @ 7:37pm 
there's nothing in the mod description help
LaCha_Derp 21 Dec, 2013 @ 1:04pm 
Nothing is working.
Vertex 29 Jan, 2014 @ 12:32pm 
this is likely becuase a setting on the server is set incorrectly. theres a setting to enable/disable weapons on this gamemode.
Desember 22 Mar, 2014 @ 5:51pm 
Originally posted by Ninja Noize:
Same BUT! we got 3 players on server and 1 player playing as alien, but weapons dont spawn anyway
I figured out what's causing this. There's an arming file the game uses to load in weapons on the different maps. The game mode seems to come with it's own arming file, but there's also a setting for using the online arming file located at http://www.remscar.com/morbus/hotfix/arming/. This variable is by default set to true. The problem with this, is that for some reason the servers can't find the arming files online, and at the same time, there isn't a fallback code, to fall back on the arming files that come with the game mode by default. Thus you end up with a map without any weapons or items on it, except for the crowbar you spawn with (+ alien form if you're the brood alien). Just follow this and you should be able to fix it:

1. Browse to the "garrysmod\gamemodes\morbusgame\gamemode\server" folder and open up "sv_ent_replace.lua" in a text editing program (I recommend Notepad++, as it provides proper indentation etc. to the file). Be careful which program you use, as the indentations (number of spaces tabs etc. might be important for a piece of code to work and removing something might crash the entire game mode) may or may not show up properly or cleanly in the program.
2. Find the
ents.MORBUS.useWebArmFirst = true
line (variable lies near the top) and set it to false so it looks like so
ents.MORBUS.useWebArmFirst = false
3. Save changes and exit. If you had your server running, restart it.

That's more or less how I fixed it on my end. Haven't tested with my friends on, as I managed to figure out how to make the game start or rather be in the mode where weapons spawn with 1 player on. It's good for debugging and making sure it actually is working, and can be done by following these few steps:

1. Browse to the "garrysmod\gamemodes\morbusgame\gamemode\server\round" folder and open up "sv_roundengine.lua" in a text editing program. Same warning as step 1 in the above guide.
2. Find the
local needed = 2 -- 2 normally
variable ("-- 2 normally" is merely a comment in the code and will never be run, so that part doesn't matter to the game mode functioning properly), and change it to 0 so it looks like so
local needed = 0 -- 2 normally
This can be changed to make the game start at set amount of players, but remember you always need 1 more player in-game than the set amount in this variable.
3. Save changes and exit. If you had your server running, restart it.
Last edited by Desember; 22 Mar, 2014 @ 5:56pm
sword 7 Sep, 2020 @ 12:02pm 
yes
< >
Showing 1-10 of 10 comments
Per page: 1530 50