![]() |
Undefined symbol '' - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: Script Help (/Forum-Script-Help) +--- Thread: Undefined symbol '' (/Thread-Undefined-symbol--2800) |
Undefined symbol '' - pinku - 08-04-2013 06:36 AM Hello again! ![]() I'm getting the Undefined symbol '' error all the time, with lines similar to this one. Everything works fine, but I'm clearly missing something. :< Code: ELSEIF !(<SRC.FINDID.i_mem_vote>) && !(<SRC.ACCOUNT.TAG.VOTE> == 1) >> problem is here or Code: ELSEIF (<SRC.TAG.QUESTDONE> == 01) >> problem is here Thanks once again! ![]() RE: Undefined symbol '' - Feeh - 08-04-2013 07:35 AM be sure that TAG.QUESTDONE is set on SRC If not sure or want to avoid those errors, use TAG0 instead of TAG RE: Undefined symbol '' - Coruja - 08-04-2013 10:50 AM if the <SRC.ACCOUNT.TAG.VOTE> doesn't exists it will return a null value, so the sphere will read the script like this !( == 1) instead !(0 == 1) to avoid it you must use TAG0 instead of TAG, because TAG0 automatically returns a 0 value if the tag is empty RE: Undefined symbol '' - pinku - 08-05-2013 12:07 PM Oh! I totally missed this class. ![]() Makes a lot of sense on my scripts, hahaha. ![]() Thanks guys. |