05.03.2012, 14:46
Make sure you have a_samp included (and updated).
That should fix the `public function lacks forward declaration` warnings.
For the first warning, `local variable "to" shadows a variable at a preceding level`:
You probably have a global variable (or variable in enum) of wich its name is "to".
Find it, and rename it to something else. (And all references to it in your script).
That should fix the `public function lacks forward declaration` warnings.
For the first warning, `local variable "to" shadows a variable at a preceding level`:
You probably have a global variable (or variable in enum) of wich its name is "to".
Find it, and rename it to something else. (And all references to it in your script).