View Single Post
  #2  
Old 09-24-2014, 08:20 AM
Drajor's Avatar
Drajor
Developer
 
Join Date: Nov 2012
Location: Halas
Posts: 355
Default

Quick and nasty;
Code:
if (ClientEntry->IsTrader())
	WAPP2->RankMSGID = 12315;
else if (ClientEntry->IsBuyer())
	WAPP2->RankMSGID = 6056;
else if (ClientEntry->Admin() >= 10)
	WAPP2->RankMSGID = 12312;
else if (ClientEntry->GetInv()->HasItem(20542) > -1)
	WAPP2->RankMSGID = 8043;
else
	WAPP2->RankMSGID = 0xFFFFFFFF;
This (should) check whether that character has item 20542(Singing Short Sword) and change their /who output to have Lyricist prefix.. e.g.

Lyricist[1 Bard] Drajor (Barbarian)
__________________
Drajor regards you indifferently -- what would you like your tombstone to say?
Reply With Quote