47 lines
1.7 KiB
Plaintext
47 lines
1.7 KiB
Plaintext
void main()
|
|
{
|
|
string sName;
|
|
object oShouter = GetLastSpeaker();
|
|
object oContainer = GetLocalObject(OBJECT_SELF,"vulc_namespawner");
|
|
object oCrafter =GetLocalObject(oContainer,"vulc_crafter");
|
|
int i = 0;
|
|
//what this does is calculate the number of substrings found
|
|
//with the listening pattern match.
|
|
int nMatch = GetMatchedSubstringsCount();
|
|
|
|
if(!GetIsObjectValid(oShouter) ||
|
|
!GetIsPC(oShouter) ||
|
|
oShouter!=oCrafter)
|
|
{
|
|
//bail out if not PC, invalid, or not the correct PC
|
|
return;
|
|
}
|
|
for(i=1;i<nMatch;i++)
|
|
{
|
|
//this will add every substring the listener finds after
|
|
//"rename " is typed. The loop assembles the matched substrings.
|
|
sName+=GetMatchedSubstring(i);
|
|
i++;
|
|
}
|
|
//need to set this before tests for evaluation in convo conditional
|
|
SetLocalString(oContainer,"vulc_newname",sName);
|
|
|
|
//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. If set to "", the name reverts
|
|
//to the original name anyway.
|
|
int nMax = 32;
|
|
|
|
//test string length against max allowable name characters, bail
|
|
//out if failed
|
|
if(GetStringLength(sName)>nMax)
|
|
{
|
|
//Send feedback to indicate failure
|
|
SendMessageToPC(oShouter,"Names are limited to "+IntToString(nMax)+" characters. You should try again before clicking continue.");
|
|
return;
|
|
}
|
|
//Send feedback to indicate success
|
|
SendMessageToPC(oShouter,"Name selected: "+sName);
|
|
}
|