Hi there,
I've been trying to change the gamemodes name to a custom one that I have, but it doesn't seem to work.
I change the gamemode.txt to "custom.txt" and I have renamed the folder too. What I am supposed to do? Please help.
[CODE]"Gamemode"
{
"base" "sandbox"
"title" "Custom Name"
"maps" "^gm_"
"menusystem" "1"
}[/CODE]
If that doesn't work the name will be defined elsewhere. Search the whole game mode folder for the name
The shown name in the server console depends on the gamemode folder name and <gamemode>.txt file as far as I know. Could be different in the legacy browser.
It is in your gamemode txt file[CODE]title "gmnamehere"[/CODE]
[B][I][U]My 300th post[/U][/I][/B] :dance::dance:
[QUOTE=Cyberuben;45110073]The shown name in the server console depends on the gamemode folder name and <gamemode>.txt file as far as I know. Could be different in the legacy browser.[/QUOTE] title overwrite s the folders name
Wtf double post....
[lua]GM.Name = "Hustle";
GM.LastUpdate = "06/17/14";[/lua]
First one is what you need to post in your shared.lua.
Second one is what I use to just keep up to when I last worked on it (or if someone else uses it)
[QUOTE=Nookyava;45128676][lua]GM.Name = "Hustle";
GM.LastUpdate = "06/17/14";[/lua]
First one is what you need to post in your shared.lua.
Second one is what I use to just keep up to when I last worked on it (or if someone else uses it)[/QUOTE] GM.Name does nothing except from providing information about the gamemode.
You rate me dumb because you're expecting me to know what you posted before when you obviously removed it). I gave feedback that actually works, not my fault if you don't how to create a gamemode.
As to your problem, I noticed one big flaw that you apparently missed (no shock there). I suggest doing this.
[lua]"custom" -- Change this to whatever the name needs to be, don't forget the .txt and folder name as well
{
"base" "sandbox"
"title" "Custom Name"
"maps" "^gm_"
"menusystem" "1"
}[/lua]
[b]Garry's Warehouse Example:[/b]
My gamemode.
The folder name
[t]http://puu.sh/9xbHh/2b19175576.png[/t]
.txt
[t]http://puu.sh/9xbIY/79aea98da3.png[/t]
Inside the .txt
[lua]"gware"
{
"base" "base"
"title" "Garry's Warehouse"
"version" "1.0.0"
"menusystem" "1"
"author_name" "Nookyava"
"maps" "^gware_"
"icon" ""
"info" ""
"hide" "0"
}
[/lua]
[QUOTE=Nookyava;45128757]You rate me dumb because you're expecting me to know what you posted before when you obviously removed it). I
[/lua][/QUOTE]No I rated you dumb because you thought that [CODE]GM.Name [/CODE] would fix it.
Heaven forgive me for trying to help a non-grateful person. Good luck with whatever shit you try to do then.
[b]Edit:[/b]
Also, GM.Name works with the Legacy Browser list and renames the game portion that the server is under, so it does work. Perhaps if you were a little clearer with where exactly the issue was lying, such as the new browser.
Sorry, you need to Log In to post a reply to this thread.