Ok so I launched garrysmod today after about a year and a gamemode that used to work now comes up with this error and crashes as soon as I try to start it.
[IMG]http://puu.sh/k5oyk/757fc1d510.jpg[/IMG]
I quickly went to the wiki and made a test gamemode but it still comes up with the same error.
[url]http://wiki.garrysmod.com/page/Gamemode_Creation[/url]
This is my gamemode txt file named test.txt
[CODE]"test"
{
"base" "base"
"title" "Test Gamemode"
"maps" "^gm_|^gmod_"
"menusystem" "1"
}[/CODE]
File is called test as well.
[IMG]http://puu.sh/k5qa9/1ff7fc07fc.png[/IMG]
My init.lua, cl_init.lua and shared.lua are just copy paste from the wiki.
I'm sure it's a real simple fix I just can't work out whats wrong, maybe something has changed since I last coded.
This occurs when the game couldn't locate the cl_init.lua or init.lua files of your gamemode.
Try changing "test" to "Gamemode" in test.txt:
[CODE]"Gamemode"
{
"base" "base"
"title" "Test Gamemode"
"maps" "^gm_|^gmod_"
"menusystem" "1"
}[/CODE]
Sorry, you need to Log In to post a reply to this thread.