How to change this?

08/19/2016 18:12 jeromerz#1
Hello guys,

i need a little help on changing the Guild Siege kill notice i want it to be a green text because the notice is kinda annoying it blocks the screen when the guild score fast.

What code will i use to replace this pUsertmp->AddDefinedCaption

Code:
if( bMaster )
pUsertmp->AddDefinedCaption( TRUE, TID_GAME_GUILDCOMBAT_POINT_MASTER, "%d", nGetPoint );
else 
pUsertmp->AddDefinedCaption( TRUE, TID_GAME_GUILDCOMBAT_POINT_GENERAL, "%d", nGetPoint );
Thanks in advance sorry for the bad english.
08/19/2016 20:25 alfredico#2
pUsertmp->AddText
08/20/2016 02:10 jeromerz#3
Code:
pUsertmp->AddText( TID_GAME_GUILDCOMBAT_POINT_MASTER, "%d", nGetPoint );
or

Code:
pUsertmp->AddDefinedText( TID_GAME_GUILDCOMBAT_POINT_MASTER, "%d", nGetPoint );
Like this sir??