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