19 lines
633 B
Plaintext
19 lines
633 B
Plaintext
|
// NEWBIE FRIENDLY
|
||
|
//------------------------------------------------------------------------------
|
||
|
void main()
|
||
|
{
|
||
|
object oMod=GetModule();
|
||
|
SetLocalInt(oMod,"nGameType",1);
|
||
|
SetLocalInt(oMod,"nMaxSouls",50);
|
||
|
SetLocalInt(oMod,"nAIDelay",6);
|
||
|
SetLocalInt(oMod,"nMaxUnits",40);
|
||
|
SetLocalFloat(oMod,"fXPMultiplier",75.0);
|
||
|
SetLocalInt(oMod,"nMaxPlayers",8);
|
||
|
SetLocalInt(oMod,"nManaGoldMultiplier",3);
|
||
|
SetLocalInt(oMod,"nGSAdvEnabled",TRUE);
|
||
|
SetLocalInt(oMod,"nAISetting",0);
|
||
|
SetLocalInt(oMod,"nAILevelSpeed",25);
|
||
|
SetLocalInt(oMod,"bNOLEVELUP",FALSE);
|
||
|
SetLocalInt(oMod,"nTOMEREBIRTH",50);
|
||
|
}
|