Quote:
Originally Posted by Calisthenics
They are warnings and very simple to fix.
pawn Код:
warning 219: local variable "ip" shadows a variable at a preceding level
Rename `ip` global variable to something else.
pawn Код:
warning 219: local variable "sName" shadows a variable at a preceding level
Rename `sName` global variable to something else.
pawn Код:
warning 219: local variable "using_deprecated_foreach_syntax" shadows a variable at a preceding level
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.
|
i did as you said and solved everything.
i changed the name of sName from y_hooks impl.inc to ssName for that error,and the rest worked as you said. thanks