Auto Replacer string character to asterisk or "x"
#8

OP wants to replace the player's password with asterisks. Maybe to show in a textdraw or something..

The best, most efficient way to do this is:

pawn Код:
for (new i = 0, l = strlen(password); i != l; i ++)
{
    password[i] = '*';
}
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 2 Guest(s)