Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Nostale
You last visited: Today at 12:52

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

Advertisement



Gm in rank of reputation?

Discussion on Gm in rank of reputation? within the Nostale forum part of the MMORPGs category.

Reply
 
Old   #1
 
pauvm1618's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 135
Received Thanks: 28
Gm in rank of reputation?

Hi, does anyone know how to make that gm's appear in the top of the reputation in the game?
pauvm1618 is offline  
Old 01/17/2018, 19:23   #2
 
elite*gold: 12
Join Date: Dec 2017
Posts: 153
Received Thanks: 8
Opennos.GameObject -> Networking -> ServerManager.cs

find function "public void RefreshRanking()"
then add another Authority (like GM)

example:
account.Authority == AuthorityType.User & AuthorityType.GM etc
*Kyosha* is offline  
Old 01/17/2018, 22:55   #3
 
unknownforces's Avatar
 
elite*gold: 0
Join Date: Jun 2010
Posts: 181
Received Thanks: 81
Quote:
Originally Posted by *Kyosha* View Post
Opennos.GameObject -> Networking -> ServerManager.cs

find function "public void RefreshRanking()"
then add another Authority (like GM)

example:
account.Authority == AuthorityType.User & AuthorityType.GM etc
Is this real life? Someone who gave actual answers instead of "if you cant do this then just quit" ????
unknownforces is offline  
Old 01/18/2018, 15:08   #4
 
pauvm1618's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 135
Received Thanks: 28
Okey thanks, i’ll try it later and I tell you.

actually it's not working, what shall i do?

here it is what i put on the "refreshranking"
pauvm1618 is offline  
Old 01/19/2018, 02:34   #5
 
Hokaros's Avatar
 
elite*gold: 0
Join Date: Feb 2015
Posts: 289
Received Thanks: 131
Quote:
Originally Posted by pauvm1618 View Post
Okey thanks, i’ll try it later and I tell you.

actually it's not working, what shall i do?

here it is what i put on the "refreshranking"
&& not &

Code:
TopComplimented = DAOFactory.CharacterDAO.Where(c => c.Account.Authority == AuthorityType.User && c.Account.Authority == AuthorityType.GameMaster).OrderByDescending(c => c.Compliment).Take(30).ToList();
TopPoints = DAOFactory.CharacterDAO.Where(c => c.Account.Authority == AuthorityType.User && c.Account.Authority == AuthorityType.GameMaster).OrderByDescending(c => c.Act4Points).Take(30).ToList();
TopReputation = DAOFactory.CharacterDAO.Where(c => c.Account.Authority == AuthorityType.User && c.Account.Authority == AuthorityType.GameMaster).OrderByDescending(c => c.Reput).Take(30).ToList();
Hokaros is offline  
Old 01/19/2018, 17:55   #6
 
pauvm1618's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 135
Received Thanks: 28
I put what you told me but it's still not working, mi pj (GM) has the red star of reputation.
Also i've another problem: when i open noswolrd, it says #CARDS_LOADED#, is it related somehow to the fact that some of my skills (invisibility of sp6 arch, the "combos", etc) don't work? If so, how can i solve it?
pauvm1618 is offline  
Old 01/19/2018, 21:12   #7
 
Hokaros's Avatar
 
elite*gold: 0
Join Date: Feb 2015
Posts: 289
Received Thanks: 131
Quote:
Originally Posted by pauvm1618 View Post
Also i've another problem: when i open noswolrd, it says #CARDS_LOADED#, is it related somehow to the fact that some of my skills (invisibility of sp6 arch, the "combos", etc) don't work? If so, how can i solve it?
No, it doesnt relate. Check out your Resources
Hokaros is offline  
Old 01/19/2018, 21:16   #8
 
0Lucifer0's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 1,005
Received Thanks: 1,019
Quote:
Originally Posted by Hokaros View Post
&& not &

Code:
TopComplimented = DAOFactory.CharacterDAO.Where(c => c.Account.Authority == AuthorityType.User && c.Account.Authority == AuthorityType.GameMaster).OrderByDescending(c => c.Compliment).Take(30).ToList();
TopPoints = DAOFactory.CharacterDAO.Where(c => c.Account.Authority == AuthorityType.User && c.Account.Authority == AuthorityType.GameMaster).OrderByDescending(c => c.Act4Points).Take(30).ToList();
TopReputation = DAOFactory.CharacterDAO.Where(c => c.Account.Authority == AuthorityType.User && c.Account.Authority == AuthorityType.GameMaster).OrderByDescending(c => c.Reput).Take(30).ToList();
No in fact it’s || and he need to copy the left part... but the best solution is just to use >= instead of ==
0Lucifer0 is offline  
Thanks
1 User
Old 01/19/2018, 21:21   #9
 
pauvm1618's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 135
Received Thanks: 28
So 0Lucifer0 how would it be? Can you copy the code please?
pauvm1618 is offline  
Old 01/20/2018, 00:07   #10
 
Hokaros's Avatar
 
elite*gold: 0
Join Date: Feb 2015
Posts: 289
Received Thanks: 131
Quote:
Originally Posted by 0Lucifer0 View Post
No in fact it’s || and he need to copy the left part... but the best solution is just to use >= instead of ==
mb
Hokaros is offline  
Old 01/20/2018, 00:16   #11
 
0Lucifer0's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 1,005
Received Thanks: 1,019
Quote:
Originally Posted by pauvm1618 View Post
So 0Lucifer0 how would it be? Can you copy the code please?
Seriously... just read my message it’s explained... replace == by >= in the original code
0Lucifer0 is offline  
Old 01/20/2018, 16:01   #12
 
pauvm1618's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 135
Received Thanks: 28
i did it but not working yet... if it's impossible then, how can i make my reputation symbol looks like if I were the first of the ranking? because I can't add me in the ranking
pauvm1618 is offline  
Old 01/20/2018, 19:39   #13
 
elite*gold: 12
Join Date: Dec 2017
Posts: 153
Received Thanks: 8
Quote:
Originally Posted by pauvm1618 View Post
i did it but not working yet... if it's impossible then, how can i make my reputation symbol looks like if I were the first of the ranking? because I can't add me in the ranking
Code:
public void RefreshRanking()
        {
            TopComplimented = DAOFactory.CharacterDAO.Where(c => c.Account.Authority >= AuthorityType.User).OrderByDescending(c => c.Compliment).Take(30).ToList();
            TopPoints = DAOFactory.CharacterDAO.Where(c => c.Account.Authority >= AuthorityType.User).OrderByDescending(c => c.Act4Points).Take(30).ToList();
            TopReputation = DAOFactory.CharacterDAO.Where(c => c.Account.Authority >= AuthorityType.User).OrderByDescending(c => c.Reput).Take(30).ToList();
}
It will show players with Authority 0 or Higher (User, Support <moderator> and GameMaster)

leave your project...please.



and yeah...it's much better than using || (fail with & xd)
*Kyosha* is offline  
Old 01/20/2018, 21:58   #14
 
pauvm1618's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 135
Received Thanks: 28
Not working neither....
pauvm1618 is offline  
Old 01/21/2018, 17:43   #15
 
-Nokis's Avatar
 
elite*gold: 0
Join Date: Oct 2017
Posts: 11
Received Thanks: 16
Quote:
Originally Posted by pauvm1618 View Post
Not working neither....
Do you compile the code afterwards? Or do you only execute the '.exe' you already have?
-Nokis is offline  
Reply


Similar Threads Similar Threads
[Buying] Boost Rank 13 - Rank 5 (maybe Rank 1, depending on price)
06/16/2016 - Heroes of the Storm Trading - 2 Replies
Hello! As the title says I'm interested in a HL boost from Rank 14 to Rank 5, might consider a boost to Rank 1 depending on price and how long it'll take. Please leave a comment with your skype and I'll add you. Will buy the boost tomorrow evening (friday) or early saturday. Thanks!
Fast Argent Dawn Reputation
05/16/2006 - WoW Exploits, Hacks, Tools & Macros - 12 Replies
We all know Naxxramas is coming out soon, and you may need Argent Dawn for it. Perhaps quests, shoulder resistance, whatever. You'll need only 4 people. A warrior with Thorium Shield Spike(Must have) and you'll need Challenging Shout up. A healer with decent mana regen. A mage or druid to decurse. And any other class you pick. First of all, hope you have some patience. Do a Scholo run as normal, your goal is to get to Jandice's room so you can fight Jandice. Pull her out of the room...
Zul'Gurrub Reputation
04/19/2006 - WoW Exploits, Hacks, Tools & Macros - 9 Replies
English: Ok, this it what you have to do: You need a hunterfriend with a tamed ZG pet. Now, duel your hunterfriend and kill his pet, your ZG reputation should be raised by 1 each kill! Enjoy! Deutsch: Ok, das musst du machen:



All times are GMT +1. The time now is 12:52.


Powered by vBulletin®
Copyright ©2000 - 2024, 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 ©2024 elitepvpers All Rights Reserved.