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

19 lines
612 B
Plaintext

void main()
{
//sanity check. The maximum enterable name from chat window text entry
//is 401 letters. I recommend 32 letters as an upper limit, but 64
//should also be safe. You can also add a minimum if desired, but
//I don't see the need for this.
string sName = GetLocalString(OBJECT_SELF,"vulc_newname");
int nMax = 32;
//test string length against max allowable name characters,
//clear name field and return TRUE if failed
if(GetStringLength(sName)>nMax)
{
SetCustomToken(5689,IntToString(nMax));
return;
}
SetCustomToken(5689,sName);
}