SphereCommunity
Guild members can not see each other with green color name - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: Guild members can not see each other with green color name (/Thread-Guild-members-can-not-see-each-other-with-green-color-name)



Guild members can not see each other with green color name - Rizz - 05-10-2013 06:23 AM

I don't know why, i never changed anything about guild option but after the sphere updated i have this problem...
Any suggestion?


RE: Guild members can not see each other with green color name - admin phoenix - 05-14-2013 09:04 PM

something had change. maybe this is the effect of it

23-04-2013, Shaklaban
-Added: DeadCannotSeeLiving option for sphere ini.
DeadCannotSeeLiving=1: Dead players cannot see npcs (except healers and their own pets).
DeadCannotSeeLiving=2: Dead players cannot see players and npcs.
DeadCannotSeeLiving=0: Old behaviour.


RE: Guild members can not see each other with green color name - Staff_Stanic - 05-16-2013 03:55 AM

This isn't commented?
//ColorNotoGuildSame=044 // green


RE: Guild members can not see each other with green color name - Rizz - 05-16-2013 08:54 AM

Nope, i found that if a player is a recruit (and not an effective member) he can not see other guild members with green names.


RE: Guild members can not see each other with green color name - Staff_Stanic - 05-16-2013 09:31 AM

So you can customize it if you want...
My sugestions:
PHP Code:
ON=@CharClick
IF (<ACT.ISPLAYER>)
 IF (<
ACT.GUILD> == <SRC.GUILD>)
  
ACT.MESSAGE @<SERV.ColorNotoGuildSame> <ACT.NAME>
  return 
1
 
ENDIF
ENDIF 
or (I prefer):
PHP Code:
ON=@AfterClick
IF (<ISPLAYER>)
 IF (<
GUILD> == <SRC.GUILD>)
  
LOCAL.ClickMsgHue=<SERV.ColorNotoGuildSame>
 ENDIF
ENDIF 



RE: Guild members can not see each other with green color name - Rizz - 05-16-2013 11:41 PM

I didn't know about it!
Thx Stanic


RE: Guild members can not see each other with green color name - Staff_Stanic - 05-17-2013 01:42 AM

You're welcome!
=D