19 lines
648 B
Plaintext
19 lines
648 B
Plaintext
// LOW END SERVER - Elimination
|
|
//------------------------------------------------------------------------------
|
|
void main()
|
|
{
|
|
object oMod=GetModule();
|
|
SetLocalInt(oMod,"nGameType",0);
|
|
SetLocalInt(oMod,"nElimLives",40);
|
|
SetLocalInt(oMod,"nAIDelay",8);
|
|
SetLocalInt(oMod,"nMaxUnits",20);
|
|
SetLocalFloat(oMod,"fXPMultiplier",75.0);
|
|
SetLocalInt(oMod,"nMaxPlayers",8);
|
|
SetLocalInt(oMod,"nManaGoldMultiplier",1);
|
|
SetLocalInt(oMod,"nGSAdvEnabled",TRUE);
|
|
SetLocalInt(oMod,"nAISetting",0);
|
|
SetLocalInt(oMod,"nAILevelSpeed",15);
|
|
SetLocalInt(oMod,"bNOLEVELUP",FALSE);
|
|
SetLocalInt(oMod,"nTOMEREBIRTH",500);
|
|
}
|