/*(IMMORTAL) tag replacement code by Skandranom */ /* Some minor revisions made by Orion Elder, but nothing major, still send all thanks to the author mentioned above (Skandranom). */ This should be quite easy to install, as long as you have some knowledge of adding snippets, and if you don't it should still be easy. :) In act_info.c: Find this line: send_to_char_color( "&P(&WImmortal)&P " , ch ); Comment it out, and add this: if ( !IS_NPC( victim ) ) /* I cant remember if this line is in the stock code or not */ { int ilevel = victim->level; switch(ilevel) { case MAX_LEVEL - 0 : send_to_char_color( "&G&P(&G&WSupreme Entity&G&P) " , ch ); break; case MAX_LEVEL - 1 : send_to_char_color( "&G&P(&G&WInfinite&G&P) " , ch ); break; case MAX_LEVEL - 2 : send_to_char_color( "&G&P(&G&WEternal&G&P) " , ch ); break; case MAX_LEVEL - 3 : send_to_char_color( "&G&P(&G&WAncient&G&P) " , ch ); break; case MAX_LEVEL - 4 : send_to_char_color( "&G&P(&G&WExalted God&G&P) " , ch ); break; case MAX_LEVEL - 5 : send_to_char_color( "&G&P(&G&WAscendant God&G&P) " , ch ); break; case MAX_LEVEL - 6 : send_to_char_color( "&G&P(&G&WGreater God&G&P) " , ch ); break; case MAX_LEVEL - 7 : send_to_char_color( "&G&P(&G&WGod&G&P) " , ch ); break; case MAX_LEVEL - 8 : send_to_char_color( "&G&P(&G&WLesser God&G&P) " , ch ); break; case MAX_LEVEL - 9 : send_to_char_color( "&G&P(&G&WImmortal&G&P) " , ch); break; case MAX_LEVEL - 10: send_to_char_color( "&G&P(&G&WDemi God&G&P) " , ch ); break; case MAX_LEVEL - 11: send_to_char_color( "&G&P(&G&WSavior&G&P) " , ch ); break; case MAX_LEVEL - 12: send_to_char_color( "&G&P(&G&WCreator&G&P) " , ch ); break; case MAX_LEVEL - 13: send_to_char_color( "&G&P(&G&WAcolyte&G&P) " , ch ); break; case MAX_LEVEL - 14: send_to_char_color( "&G&P(&G&WNeophyte&G&P) " , ch ); break; case MAX_LEVEL - 15: send_to_char_color( "&G&P(&G&WRetired&G&P) " , ch ); break; case MAX_LEVEL - 16: send_to_char_color( "&G&P(&G&WGuest&G&P) " , ch ); break; default: send_to_char_color( "&G&P(&G&WServant&G&P) " , ch ); break; } } /***********************************************************************/ Just replace the current ranks with your own, or leave as is, and you're good to go. :) Enjoy! :) /***********************************************************************/