Rp Names
#6

Maybe try this:
pawn Код:
//bottom of u script
stock IsRPName(const name[], max_underscores = 2)
{
    new underscores = 0;
    if (name[0] < 'A' || name[0] > 'Z') return false; // First letter is not capital
    for(new i = 1; i < strlen(name); i++)
    {
        if(name[i] != '_' && (name[i] < 'A' || name[i] > 'Z') && (name[i] < 'a' || name[i] > 'z')) return false; // a-zA-Z_
        if( (name[i] >= 'A' && name[i] <= 'Z') && (name[i - 1] != '_') ) return false; // unneeded capital letter
        if(name[i] == '_')
        {
            underscores++;
            if(underscores > max_underscores || i == strlen(name)) return false; // More underlines than limit, or underline at the last pos
            if(name[i + 1] < 'A' || name[i + 1] > 'Z') return false; // Not a capital letter after underline
        }
    }
    if (underscores == 0) return false; // No underline detected
    return true;
}
//onplayerconnect
public OnPlayerConnect(playerid)
{
    new name[MAX_PLAYER_NAME], roleplayname[MAX_PLAYER_NAME] = "Will_Smith", goodbyemessage[108];
    GetPlayerName(playerid, name, sizeof(name));
    if (!IsRPName(name)) // you can control the max underlines, e.g if you allow max. 1 underlines, write this: if (!IsRPName(name, 1))
    {
        for(new i=0;i<MAX_PLAYERS;i++)
        if (IsPlayerConnected(i)) break; // find a player who is online (and hasn't got kicked from the server -> has got a RolePlay name
        for(new i=0;i<MAX_PLAYERS;i++)
        if (IsPlayerConnected(i)) GetPlayerName(i, roleplayname, MAX_PLAYER_NAME); // if there was an online player, it's name will be the suggested roleplay name
        format (goodbyemessage, sizeof(goodbyemessage), "* %s was kicked, come back with a roleplay name such as %s", name, roleplayname);
        SendClientMessageToAll(-1, goodbyemessage);
        return Kick(playerid);
    }

    // more things you do in OnPlayerConnect
    return 1;
}
Let me know if it works
Reply


Messages In This Thread
Rp Names - by MechaTech - 19.05.2012, 12:59
Re: Rp Names - by TuTh - 19.05.2012, 13:03
Re: Rp Names - by MechaTech - 19.05.2012, 13:06
Re: Rp Names - by Admigo - 19.05.2012, 13:14
Re: Rp Names - by MechaTech - 19.05.2012, 13:19
Re: Rp Names - by Admigo - 19.05.2012, 13:32
Re: Rp Names - by MechaTech - 19.05.2012, 13:35
Re: Rp Names - by Admigo - 19.05.2012, 13:44
Re: Rp Names - by MechaTech - 19.05.2012, 13:50

Forum Jump:


Users browsing this thread: 1 Guest(s)