OpenNos Error System.OverflowException

03/25/2023 07:04 Feuerdrachenzauber#1
If i try to parsing, the Error show up and the Console close

Anyone a idea?
03/25/2023 12:23 Fizo55#2
Don't use opennos
03/25/2023 12:57 redbull2905#3
Quote:
Originally Posted by Feuerdrachenzauber View Post
If i try to parsing, the Error show up and the Console close

Anyone a idea?
Send screenshot
03/25/2023 15:18 Fizo55#4
Quote:
Originally Posted by redbull2905 View Post
Send screenshot
You don't need a screenshot. I can tell you why without screenshot, he's trying to parse with new game-datas (containing all act 8 informations) on the 2017 version on opennos, so, ofc, you'll have an overflow on something like MapId
03/25/2023 18:25 Feuerdrachenzauber#5
So i need a older Parser? Where can i find one?
03/25/2023 20:05 redbull2905#6
In this case, you need to change a few things in your import factory

Go to ImportNpcMonster()

and change:
int[] basicHp = new int[100];
int[] basicMp = new int[100];
int[] basicXp = new int[100];
int[] basicJXp = new int[100];

this:

int[] basicHp = new int[101];
int[] basicMp = new int[101];
int[] basicXp = new int[101];
int[] basicJXp = new int[101];

and skill.TargetRange = byte.Parse(currentLine[5]);
skill.TargetRange = short.Parse(currentLine[5]);

Errors will settle at the level of the elements of the targetrange you just have to replace the value byte by short
03/25/2023 21:59 Feuerdrachenzauber#7
Quote:
Originally Posted by redbull2905 View Post
In this case, you need to change a few things in your import factory

Go to ImportNpcMonster()

and change:
int[] basicHp = new int[100];
int[] basicMp = new int[100];
int[] basicXp = new int[100];
int[] basicJXp = new int[100];

this:

int[] basicHp = new int[101];
int[] basicMp = new int[101];
int[] basicXp = new int[101];
int[] basicJXp = new int[101];

and skill.TargetRange = byte.Parse(currentLine[5]);
skill.TargetRange = short.Parse(currentLine[5]);

Errors will settle at the level of the elements of the targetrange you just have to replace the value byte by short
Same Error on Next: factory.ImportNpcMonsters();
03/25/2023 23:09 redbull2905#8
use opennos + update^^"
03/25/2023 23:45 Feuerdrachenzauber#9
Quote:
Originally Posted by redbull2905 View Post
use opennos + update^^"
Download Link?
03/26/2023 01:32 redbull2905#10
:
03/29/2023 19:31 Feuerdrachenzauber#11
Quote:
Originally Posted by redbull2905 View Post
[Only registered and activated users can see links. Click Here To Register...]

It's my old source but packet official is not updated. only the NsTest packet is updated
There is no Master Server? Only Act4, World, Login and Switch. Parser Server crash on start