Filterscript Error!!
#7

Quote:
Originally Posted by TitanX
Посмотреть сообщение
please you can request his help in his thread here https://sampforum.blast.hk/showthread.php?tid=608851

this is section of your own scripts not copyed scripts
You mustn't understand the concept of help...



Before you go through with the below suggestions or information, you _NEED_ to try get those includes working, as they are likely to cause some of the errors that come from below. The warnings are just warnings, the errors though are what's stopping it compiling. You can run with errors, it may lead to unexpected results, but errors will not allow it to compile at all.


Most of these errors are basic errors.

Код:
local variable "id" shadows a variable at a preceding level
means new id; is defined above the section of code where it's used at. You can either delete the one at the top of the script, or go through and remove each one that is erroring subsequently.

Код:
function heading differs from prototype
Means the definition of the function, is different to the public line.

Код:
error 017: undefined symbol "objectid"
objectid isn't defined. (You need new objectid; in the script)

Код:
invalid function or declaration
Means the function on that line, isn't "made"... More than likely through an include failing to be included.

Код:
symbol already defined: "SetDynamicObjectPos"
symbol already defined: "Streamer_SetFloatData"
symbol already defined: "stmt_bind_value"
means the functions are being defined, when they've already been defined.

Код:
undefined symbol "Logs"
Logs isn't defined. ( new Logs; )

Код:
symbol is assigned a value that is never used: "UpdateTree"
You have new UpdateTree; yet don't use it. This is more likely a timer variable.
Reply


Messages In This Thread
Filterscript Error!! - by ManIsHere - 10.03.2017, 07:45
Re: Filterscript Error!! - by Toroi - 10.03.2017, 07:54
Re: Filterscript Error!! - by ManIsHere - 10.03.2017, 08:43
Re: Filterscript Error!! - by ManIsHere - 10.03.2017, 16:55
Re: Filterscript Error!! - by TitanX - 10.03.2017, 17:05
Re: Filterscript Error!! - by ManIsHere - 11.03.2017, 06:48
Re: Filterscript Error!! - by Sew_Sumi - 11.03.2017, 07:15
Re: Filterscript Error!! - by ManIsHere - 11.03.2017, 12:58
Re: Filterscript Error!! - by Nathan94 - 31.01.2019, 13:03

Forum Jump:


Users browsing this thread: 1 Guest(s)