Maybe just an idea?
quick scripting so you might need to spruce up have it as a -weapon in inventory
Have
server.blockedcharacters= ! @ & ^ % $ * " ' goku *curse language* sell buy vegita ect....
The naming system I made is similiar. I just pulled this off the top of my head though
NPC Code:
if (actionserverside) {
tokenize #s(server.blockedcharacters);
for (i=0;i<tokenscount;i++) {
if(strcontains(#n,#t(i))) {
setplayerprop #n,#a -Invalid Name-;
}
}
}
//#CLIENTSIDE
if (playerchats) {
if(strcontains(#c,setnick)) {
//#EDIT Put a Triggeraction for serverside here for the weapon
}
}
Something like that
