Alangara_PRC8/_module/nss/mn_aidb_token.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

20 lines
546 B
Plaintext

#include "mn_i_checkrank"
void main()
{
object oPC = GetItemActivator();
object oTarget = GetItemActivatedTarget();
if ( oTarget != oPC)
{
FloatingTextStringOnCreature( "// This functionality is not finished yet. You can only use this item on yourself", oPC, FALSE );
}
else
{
string out = "You currently hold the rank of ";
int rank = GetLocalInt( GetItemActivated(), "mn_rank" );
out += RankName( rank ) + " in the Aidbringer guild.";
FloatingTextStringOnCreature( out, oPC, FALSE );
}
}