Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Nostale
You last visited: Today at 15:39

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Family Rank bug? I don't know...

Discussion on Family Rank bug? I don't know... within the Nostale forum part of the MMORPGs category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Mar 2013
Posts: 39
Received Thanks: 0
Family Rank bug? I don't know...

Hey Guys, it's me again. I have this little problem ...


HOW can i fix this ... i tried like everything ... The last thing i need to get fixed ... Btw i'm talking about this "Time's Up!" thingy
oBook is offline  
Old 09/16/2020, 22:28   #2
 
~Teiko~'s Avatar
 
elite*gold: 2640
Join Date: Apr 2015
Posts: 479
Received Thanks: 154
gidx
~Teiko~ is offline  
Old 09/16/2020, 23:02   #3
 
elite*gold: 0
Join Date: Mar 2013
Posts: 39
Received Thanks: 0
Quote:
Originally Posted by ~Teiko~ View Post
gidx
Well, yeah? Next? Like i said, i changed literally everything and tryed everything but nothing works.
oBook is offline  
Old 09/16/2020, 23:25   #4
 
0Lucifer0's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 1,005
Received Thanks: 1,019
That’s what happen when you try random thing you don’t understand.
It’s easy to fix : go on official, packet log the family packets (in/gidx...) check the difference with your 3 years old packet structure. Fix it
0Lucifer0 is offline  
Old 09/16/2020, 23:50   #5
 
elite*gold: 0
Join Date: Jul 2017
Posts: 397
Received Thanks: 60
Code:
public string GenerateGidx()
        {
            if (Family != null && FamilyCharacter != null)
            {               
                if (Family.TopFamily != 0)
                {
                    if (Family.FamilyFaction == 1)
                    {
                        if (Family.TopFamily == 1)
                        {
                            return $"gidx 1 {CharacterId} {Family.FamilyId} {Family.Name}({Language.Instance.GetMessageFromKey(FamilyCharacter.Authority.ToString().ToUpper())}) {Family.FamilyLevel} 1|0|1"; // 1-0-2 == demon | 1-0-1 == angel
                        }
                        else if (Family.TopFamily == 2)
                        {
                            return $"gidx 1 {CharacterId} {Family.FamilyId} {Family.Name}({Language.Instance.GetMessageFromKey(FamilyCharacter.Authority.ToString().ToUpper())}) {Family.FamilyLevel} 0|0|1"; // 1-0-2 == demon | 1-0-1 == angel
                        }
                        else
                        {
                            return $"gidx 1 {CharacterId} {Family.FamilyId} {Family.Name}({Language.Instance.GetMessageFromKey(FamilyCharacter.Authority.ToString().ToUpper())}) {Family.FamilyLevel} 0|0|0"; // 1-0-2 == demon | 1-0-1 == angel
                        }
                    }
                    else
                    {
                        if (Family.TopFamily == 1)
                        {
                            return $"gidx 1 {CharacterId} {Family.FamilyId} {Family.Name}({Language.Instance.GetMessageFromKey(FamilyCharacter.Authority.ToString().ToUpper())}) {Family.FamilyLevel} 1|0|2"; // 1-0-2 == demon | 1-0-1 == angel
                        }
                        else if (Family.TopFamily == 2)
                        {
                            return $"gidx 1 {CharacterId} {Family.FamilyId} {Family.Name}({Language.Instance.GetMessageFromKey(FamilyCharacter.Authority.ToString().ToUpper())}) {Family.FamilyLevel} 0|0|2"; // 1-0-2 == demon | 1-0-1 == angel
                        }
                        else
                        {
                            return $"gidx 1 {CharacterId} {Family.FamilyId} {Family.Name}({Language.Instance.GetMessageFromKey(FamilyCharacter.Authority.ToString().ToUpper())}) {Family.FamilyLevel} 0|0|0"; // 1-0-2 == demon | 1-0-1 == angel
                        }

                    }
                }
                else
                {
                    return $"gidx 1 {CharacterId} {Family.FamilyId} {Family.Name}({Language.Instance.GetMessageFromKey(FamilyCharacter.Authority.ToString().ToUpper())}) {Family.FamilyLevel} 0|0|0"; // 1-0-2 == demon | 1-0-1 == angel
                }


            }
            else
            {
                return $"gidx 1 {CharacterId} -1 - 0 0|0|0";
            }
        }
redbull2905 is offline  
Old 09/17/2020, 08:33   #6

 
FI0w's Avatar
 
elite*gold: 50
Join Date: Jul 2014
Posts: 1,699
Received Thanks: 1,165
Quote:
Originally Posted by redbull2905 View Post
Code:
public string GenerateGidx()
        {
            if (Family != null && FamilyCharacter != null)
            {               
                if (Family.TopFamily != 0)
                {
                    if (Family.FamilyFaction == 1)
                    {
                        if (Family.TopFamily == 1)
                        {
                            return $"gidx 1 {CharacterId} {Family.FamilyId} {Family.Name}({Language.Instance.GetMessageFromKey(FamilyCharacter.Authority.ToString().ToUpper())}) {Family.FamilyLevel} 1|0|1"; // 1-0-2 == demon | 1-0-1 == angel
                        }
                        else if (Family.TopFamily == 2)
                        {
                            return $"gidx 1 {CharacterId} {Family.FamilyId} {Family.Name}({Language.Instance.GetMessageFromKey(FamilyCharacter.Authority.ToString().ToUpper())}) {Family.FamilyLevel} 0|0|1"; // 1-0-2 == demon | 1-0-1 == angel
                        }
                        else
                        {
                            return $"gidx 1 {CharacterId} {Family.FamilyId} {Family.Name}({Language.Instance.GetMessageFromKey(FamilyCharacter.Authority.ToString().ToUpper())}) {Family.FamilyLevel} 0|0|0"; // 1-0-2 == demon | 1-0-1 == angel
                        }
                    }
                    else
                    {
                        if (Family.TopFamily == 1)
                        {
                            return $"gidx 1 {CharacterId} {Family.FamilyId} {Family.Name}({Language.Instance.GetMessageFromKey(FamilyCharacter.Authority.ToString().ToUpper())}) {Family.FamilyLevel} 1|0|2"; // 1-0-2 == demon | 1-0-1 == angel
                        }
                        else if (Family.TopFamily == 2)
                        {
                            return $"gidx 1 {CharacterId} {Family.FamilyId} {Family.Name}({Language.Instance.GetMessageFromKey(FamilyCharacter.Authority.ToString().ToUpper())}) {Family.FamilyLevel} 0|0|2"; // 1-0-2 == demon | 1-0-1 == angel
                        }
                        else
                        {
                            return $"gidx 1 {CharacterId} {Family.FamilyId} {Family.Name}({Language.Instance.GetMessageFromKey(FamilyCharacter.Authority.ToString().ToUpper())}) {Family.FamilyLevel} 0|0|0"; // 1-0-2 == demon | 1-0-1 == angel
                        }

                    }
                }
                else
                {
                    return $"gidx 1 {CharacterId} {Family.FamilyId} {Family.Name}({Language.Instance.GetMessageFromKey(FamilyCharacter.Authority.ToString().ToUpper())}) {Family.FamilyLevel} 0|0|0"; // 1-0-2 == demon | 1-0-1 == angel
                }


            }
            else
            {
                return $"gidx 1 {CharacterId} -1 - 0 0|0|0";
            }
        }
This bullshit don't even fix it but OK.
FI0w is offline  
Old 09/17/2020, 09:30   #7
 
PenguinXD's Avatar
 
elite*gold: 0
Join Date: Oct 2018
Posts: 297
Received Thanks: 215
Quote:
Originally Posted by FI0w View Post
This bullshit don't even fix it but OK.
Exactly, since i haven't any official account i can't get those packets.

"Had no clue really" so i thought about gidx and c_info. But yea.

Can anyone send the new packet in here?

(Im in Books project
PenguinXD is offline  
Old 09/17/2020, 11:20   #8
 
elite*gold: 0
Join Date: Jul 2017
Posts: 397
Received Thanks: 60
Ask Flow. Apparently this fake knows everything

Quote:
Originally Posted by FI0w View Post
This bullshit don't even fix it but OK.
Say I send ****. Show your **** to you? Oh no it's true you have nothing at all

alalala the teens.....
redbull2905 is offline  
Old 09/17/2020, 15:41   #9

 
FI0w's Avatar
 
elite*gold: 50
Join Date: Jul 2014
Posts: 1,699
Received Thanks: 1,165
Quote:
Originally Posted by PenguinXD View Post
Exactly, since i haven't any official account i can't get those packets.

"Had no clue really" so i thought about gidx and c_info. But yea.

Can anyone send the new packet in here?

(Im in Books project
FamilyName.RankLangId instead of familyName(blabla)

Quote:
Originally Posted by redbull2905 View Post
bullshit
Shut up if you have no idea who you're talking about. Not everyone is as stupid as you are. But you are right I know everything
FI0w is offline  
Old 09/17/2020, 16:34   #10
 
elite*gold: 0
Join Date: Jul 2017
Posts: 397
Received Thanks: 60
Quote:
Originally Posted by FI0w View Post
FamilyName.RankLangId instead of familyName(blabla)


Shut up if you have no idea who you're talking about. Not everyone is as stupid as you are. But you are right I know everything
All you've shown us is your moldy project on opennos-dev. So shut up a little, you're the first to be a fake developer. You don't know what you're talking about. Even I, who learn on the job without taking a course, I know better than you. big cancer. You just criticize everyone. We are waiting to see your release (if there is a day)
redbull2905 is offline  
Old 09/18/2020, 03:43   #11
 
InnoTx's Avatar
 
elite*gold: 100
Join Date: Dec 2016
Posts: 342
Received Thanks: 82
Quote:
Originally Posted by redbull2905 View Post
All you've shown us is your moldy project on opennos-dev. So shut up a little, you're the first to be a fake developer. You don't know what you're talking about. Even I, who learn on the job without taking a course, I know better than you. big cancer. You just criticize everyone. We are waiting to see your release (if there is a day)
ahh.... yes, it was a long time ago that I didn't write to you ... thought you had seen it and would finally admit that you really don't know anything ... but you are becoming insulting again. you should finally stop insulting other people or getting rid of them or making yourself big ...
what you have posted so far were only written codes that were either already in the source or bought from someone.
what FI0w has so far ("in your opinion: his" MOLDY "project on opennos-dev") is greater than your intelligence. you should better stop reddie, i mean it is ok to ask for help but then it isn’t cool to talk too much.



@ sorry its the last time that i write to him...
InnoTx is offline  
Reply


Similar Threads Similar Threads
[SEARCH]Gold bug , castel bug ans speed repair bug for key bug or crystal bug
04/23/2020 - Browsergames - 3 Replies
Hi I search key or crystal bug :) I will give gold , castel and speed repair bug Please send me skype : ciechomek111
I want to run bot but I don't know based engine client. How to know ?
08/02/2012 - SRO Private Server - 8 Replies
I want to run bot. but I don't know based engine client(vsro, black rogue, or etc.) I try to use edxSilkroadLoader5, It's can not add and show error. The PK2Reader could not load xxxx/media.pk2 due to an error; and I try to user Pk2ExtractorSE, It's show blank result after I open Pk2. I try to use mBot_vSRO110_1.12b (Crack),It's show error too.



All times are GMT +1. The time now is 15:42.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.