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;inMax) { //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); }