Author Topic: How to block this sign " on nickname  (Read 988 times)

rwwpl

  • Full Member
  • ***
  • Posts: 126
  • Karma: +18/-6
  • LU-DM Team
    • View Profile
    • LU-DM Team
How to block this sign " on nickname
« on: November 10, 2014, 03:42:14 pm »
How to block this sign " on nickname?

sasha19323

  • Jr. Member
  • **
  • Posts: 99
  • Karma: +25/-24
    • View Profile
Re: How to block this sign " on nickname
« Reply #1 on: November 10, 2014, 05:32:07 pm »
Code: [Select]
function onPlayerConnect(pPlayer)
{
if (typeof pPlayer.Name.find("\"") != "null") //using "typeof" method, bcs .find may return 0 value
{
MessagePlayer("You have been kicked. Your name contains non-allowed characters", pPlayer, 255, 0, 0);
KickPlayer(pPlayer);
}

return 1;
}

 

© Liberty Unleashed Team.