Ramix Dom Mar 21, 2010 11:25 am
isso e facil
vais a database.cs
procura isto
public static void LoadLevelExp()
e alteras la
este e o que eu tenho
public static void LoadLevelExp()
{
LevelExp = new ulong
[142];
LevelExp[0] = 0;
FileStream FS = new FileStream(@"C:\OldCODB\ExpNeed.dat", FileMode.Open);
BinaryReader BR = new BinaryReader(FS);
for (byte i = 1; i < 130; i++)
LevelExp[i] = BR.ReadUInt32();
LevelExp[130] = 8589148160;
LevelExp[131] = 25767444480;
LevelExp[132] = 77302333440;
LevelExp[133] = 231907000320;
LevelExp[134] = 347860500480;
LevelExp[135] = 521790750720;
LevelExp[136] = 782686126080;
LevelExp[137] = 782686126080;
LevelExp[138] = 782686126080;
LevelExp[139] = 782686126080;
LevelExp[140] = 782686126080;
LevelExp[141] = 782686126080; BR.Close();
FS.Close();
}
o que esta a vermelho e o que tens que alterar no teu se quisers aumetar o level...