View Single Post
  #8  
Old 08-04-2003, 10:25 AM
TB3 TB3 is offline
Registered User
TB3's Avatar
Join Date: May 2001
Location: US of A State of VA
Posts: 658
TB3 is on a distinguished road
Send a message via Yahoo to TB3
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
__________________

To the sun of your age, I arise
Reply With Quote