09.05.2015, 05:28
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:
The best, most efficient way to do this is:
pawn Код:
for (new i = 0, l = strlen(password); i != l; i ++)
{
password[i] = '*';
}