You are not connected. Please login or register

Leader's Guild Name Color

iRed

iRed

Sr. Member
Leader's Guild Name Color EmptyPosts : 206
Points : 160
Likes Received : 23
Join date : 2014-09-03
Star 
iRed
  
Change that lame yellow-ish color of the leader's guild name, it's been like that for YEARS, and I am sure that every guild leader is sick of that XD (I think).

MoverRender.cpp
Code:

if( pGuild->IsMaster(m_idPlayer))
 dwColor = 0xFF474747;

I already changed that yellow-ish color to some kind of gray (47,47,47), but feel free to suggest another one.

+1/-1?

EDIT:

Made this quick snippet to also change the leader's Guild Name color based on the guild level.

I would recomend to base it in the same guild level colors, but maybe only change the alpha (opacity).. or make it progressing from white until black (that wouldn't be bad) xD

MoverRender.cpp

Find:
Code:

if( pGuild->IsMaster(m_idPlayer))
 dwColor = 0xFF474747;

Replace with:
Code:

if( pGuild->IsMaster(m_idPlayer) && pGuild->m_nLevel >= 50)
         dwColor = 0xFF010101;
      else if ( pGuild->IsMaster(m_idPlayer) && pGuild->m_nLevel >= 40)
         dwColor = 0xFF303030;
      else if ( pGuild->IsMaster(m_idPlayer) && pGuild->m_nLevel >= 30)
         dwColor = 0xFF646464;
      else if ( pGuild->IsMaster(m_idPlayer) && pGuild->m_nLevel >= 20)
         dwColor = 0xFF969696;
      else if ( pGuild->IsMaster(m_idPlayer) && pGuild->m_nLevel >= 10)
         dwColor = 0xFFFAFAFA;


##1 - Posted Sun Feb 28, 2016 4:20 am
Diamond

Diamond

Newbie
Leader's Guild Name Color EmptyPosts : 9
Points : 21
Likes Received : 2
Join date : 2014-04-13
Diamond
  
+1

##2 - Posted Sun Feb 28, 2016 8:29 am
iRed

iRed

Sr. Member
Leader's Guild Name Color EmptyPosts : 206
Points : 160
Likes Received : 23
Join date : 2014-09-03
Star 
iRed
  
EXAMPLES SHOWING THE PROGRESS ACCORDING TO LEVEL, FROM WHITE TO BLACK:

Leader's Guild Name Color 0SM7TaK
Leader's Guild Name Color H87dQAP
Leader's Guild Name Color GlrO7Am
Leader's Guild Name Color LzvKmWI
Leader's Guild Name Color Xp7sOxd

##3 - Posted Sun Feb 28, 2016 8:39 am
WeedLove

WeedLove

Sr. Member
Leader's Guild Name Color EmptyPosts : 294
Points : 334
Likes Received : 18
Join date : 2014-05-16
WeedLove
  
+1

##4 - Posted Sun Mar 06, 2016 2:34 pm

Sponsored content

Leader's Guild Name Color Empty
Sponsored content
  


##5 - Posted

Permissions in this forum:
You cannot reply to topics in this forum