Custom Gamemode Section

Post Reply
Darkblizzard960
New to forums
New to forums
Posts: 4
https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
Joined: Thu Jun 18, 2015 6:20 pm

Custom Gamemode Section

Post by Darkblizzard960 »

Hello,
I was wondering how I'm able to change a darkrp gamemode to a slaverp gamemode that is custom so that it is under the SlaveRP section?
Thank you.
theRadAleks
This is my homepage
This is my homepage
Posts: 200
Joined: Wed Feb 19, 2014 6:07 pm
Location: Dallas, TX

Re: Custom Gamemode Section

Post by theRadAleks »

Navigate to your DarkRP file in gamemodes and open a text file called darkrp.txt in the DarkRP main directory and it should look something like this

Code: Select all

"darkrp"
{
	"base"		"sandbox"
    "title"  "DarkRP"
    "version"   "2.6.1"
    "menusystem"	"1"

    "author_name"   "FPtje Falco et al."
    "author_email"  ""
    "author_url"    "https://github.com/FPtje/DarkRP"

    "icon"  ""
    "info"  ""
    "hide"  "0"
}
Now change the title to "SlaveRP" so it should look something like this when done.

Code: Select all

"darkrp"
{
	"base"		"sandbox"
    "title"  "SlaveRP"
    "version"   "2.6.1"
    "menusystem"	"1"

    "author_name"   "FPtje Falco et al."
    "author_email"  ""
    "author_url"    "https://github.com/FPtje/DarkRP"

    "icon"  ""
    "info"  ""
    "hide"  "0"
}
Post Reply