Need help
#1

hey
anyone have idea about this


(50)warning 203: symbol is never used: "IsNumeric"
(506) : warning 203: symbol is never used: "ReturnUser"
Reply
#2

lines 50 and 506 are?

its just saying you defined a function that isn't being used
Reply
#3

This warning is basically informing you that you never used a specific function or variable.
Let's say you have this script:
pawn Код:
#include <a_samp>
new MyVariable[MAX_PLAYERS];
main()
{

}
That will give the error symbol is never used, instead, if you use...
pawn Код:
#include <a_samp>
new MyVariable[MAX_PLAYERS];
main()
{
MyVariable[0] = 1; // Sorry for the bad indentation!
}
It will run smoothly, hope this helped.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)