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

16 lines
332 B
Plaintext

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 );
}
}