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

15 lines
314 B
Plaintext

// Actions Taken:
// Apply the new name.
void main()
{
string sNewName = GetLocalString(OBJECT_SELF, "TK_ITEMNAMER_NewName");
// Abort if no new name given.
if ( sNewName == "" )
return;
// Apply the new name.
SetName(GetLocalObject(OBJECT_SELF, "TK_ITEMNAMER_Target"), sNewName);
}