Strange
#3

People should start reading their errors.

1)
Quote:

array must be indexed (variable "tmp2")

If you for example do
Код:
if(tmp2 == 'A')
then you will get an error like in the quote above. You need to define which character of the string "tmp2" is compared to "A" in the example.
Код:
if(tmp2[0] == 'A')
2)
Quote:

error 017: undefined symbol "strtok"

Means your using strtok somewhere in your script without having the actual function included. You're telling the script to use something it does not know.

3)
Quote:

warning 203: symbol is never used: "Index"

You've defined a value named Index which you've never used. Either use it somewhere or remove it to make the warnings gone
Reply


Messages In This Thread
Strange - by MeLiekzServers - 14.11.2010, 14:58
Re: Strange - by MeLiekzServers - 14.11.2010, 21:17
Re: Strange - by kaqiso - 15.11.2010, 12:14

Forum Jump:


Users browsing this thread: 1 Guest(s)