How could I ban certain phrases in names?
#1

For example on my roleplay server if somebody joins with a name Example_King,
could I make something that would kick him because he has _King in his name?
Reply
#2

Use strfind in OnPlayerConnect.
Example:
Код:
public OnPlayerConnect(playerid)
{
    new name[21];
    GetPlayerName(playerid, name, sizeof(name));
    if(strfind(name, "_King", true) != 0) Kick(playerid);
}
https://sampwiki.blast.hk/wiki/Strfind
Reply
#3

Thanks!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)