Nostale Client Modding Tool

09/23/2018 19:07 LolyPopI1232#1
Hallo ich suche ein clientmodding Tool wo Mann z.b Das level Umändern kann Da ich mit NosSuite nicht richtig Klar komme..^^
09/23/2018 19:30 IceTrailer#2
Quote:
Originally Posted by LolyPopI1232 View Post
Hallo ich suche ein clientmodding Tool wo Mann z.b Das level Umändern kann Da ich mit NosSuite nicht richtig Klar komme..^^
Wie Level ändern?
Du meinst die Level Requirements?
09/23/2018 19:35 LolyPopI1232#3
Ja glaube Also Die Level Grenze z.b von 255 auf 350
09/23/2018 20:58 Irelia<3#4
Soweit ich weiß geht es in der Source :) wenn du Opennos hast wäre es

Opennos.World Also Der World Emulator
09/23/2018 21:07 PepBDev#5
You don't have to edit the client for doing that
09/24/2018 01:56 MANUEL PERES#6
[Only registered and activated users can see links. Click Here To Register...] you only changes CharacterHelper Level is done :kappa:
09/24/2018 11:31 LolyPopI1232#7
Thanks Can closed

how can man limit the level Change to 512 at CharacterHelper.cs?
09/24/2018 14:18 MANUEL PERES#8
Quote:
Originally Posted by LolyPopI1232 View Post
Thanks Can closed

how can man limit the level Change to 512 at CharacterHelper.cs?
You have to put 513 remember one more is the same if you put 2048 is 2049 :kappa:

[Only registered and activated users can see links. Click Here To Register...]
09/24/2018 14:45 LolyPopI1232#9
private static void loadHeroXpData()
{
// Load SpData
_heroXpData = new double[512];
_heroXpData[0] = 949560;
for (int i = 1; i < _heroXpData.Length; i++)
{
_heroXpData[i] = Convert.ToInt64(_heroXpData[i - 1] * 1.08);
}
}

This in

private static void loadHeroXpData()
{
// Load SpData
_heroXpData = new double[2048];
_heroXpData[0] = 949560;
for (int i = 1; i < _heroXpData.Length; i++)
{
_heroXpData[i] = Convert.ToInt64(_heroXpData[i - 1] * 1.08);
}
}

?
09/24/2018 16:53 MANUEL PERES#10
is 513 or 2049
09/24/2018 18:26 LolyPopI1232#11
I do not understand you what you mean with this
09/28/2018 01:10 PepBDev#12
Just change your 512 for a 513 and a 2048 for a 2049