Alangara_PRC8/_module/nss/mn_savechar.nss

16 lines
332 B
Plaintext
Raw Permalink Normal View History

2024-06-05 21:21:06 -04:00
void main()
{
object oPC = GetItemActivator();
if ( GetIsPC( oPC ) && !GetIsDM( oPC ) )
{
ExportSingleCharacter( oPC );
FloatingTextStringOnCreature( "Character exported to server-vault.", oPC, FALSE );
}
else
{
FloatingTextStringOnCreature( "Only PCs can use this item.", oPC, FALSE );
}
}