Forums Index >> Modding >> Game Types
Page : <1> :
Well all you need is one code line. Put it above Object Write Begin in your mission file you want to use. It will change the gametype name on the server list.
$Server::MissionType = "NameOfYourNewCoolGameType";
You don't have to let go of one rope before grabbing the other. But you'll have to let go of one if you want to swing forward.
$Game::MissionType = "NewGameType";
That actually doesnt just change the name but changes the gametype alltogether so if u score in scrum u dont get a point and so on, it maybe useful for you.
$Game::MissionType = "NewGameType";
That actually doesnt just change the name but changes the gametype alltogether so if u score in scrum u dont get a point and so on, it maybe useful for you.
Lol, no it doesn't.
Hmm it does, it doesnt change the part in the Server list, but the goals etc use that preference to check if the game is that type they want :P
Page : <1> :
Yeah, I was curious as to how you make new "gameTypes". I noticed for ArtCrazies CTF script, you had to make a whole new folder located in your gamefolder.
So, doing so. The Script for your new game-type would start out something like this?:
if ($Game::TeamGame)//So when I host my game, for either TS or TBM it will perform my game-type?
{
$Server::MissionType != "My mission here";
}
(rest of script here)
I've tried that, and it doesnt seem to work. Any suggestions?
Last edited: Thursday, March 10, 2005 at 5:50:28 PM