16.02.2019, 13:29
They are warnings and very simple to fix.
Rename `ip` global variable to something else.
Rename `sName` global variable to something else.
Change the syntax from old and deprecated
to the new syntax:
About the other thread, `OnPlayerLogin` is already defined (forwarded) in YSI. Rename it to something else.
`GetIP` is defined more than once and last, change md5 to bcrypt to hash passwords.
pawn Код:
warning 219: local variable "ip" shadows a variable at a preceding level
pawn Код:
warning 219: local variable "sName" shadows a variable at a preceding level
pawn Код:
warning 219: local variable "using_deprecated_foreach_syntax" shadows a variable at a preceding level
pawn Код:
foreach(i, Player)
pawn Код:
foreach(new i : Player)
`GetIP` is defined more than once and last, change md5 to bcrypt to hash passwords.