SphereCommunity
tag issue - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: tag issue (/Thread-tag-issue)



tag issue - Nox - 02-01-2018 10:32 PM

Hi friends, i'm having a problem with my items scripts

right now, some of my items have this "type" variable that i'm using, so when you click the item the name displays like:

[xxx]
name of the item

so, for this, this items have this in the [itemdef]:
tag.type=xxx

then, i have this event to every player:
ON=@ItemAfterClick
if (<act.tag.type>)
act.message=[<act.tag.type>]
endif


the thing is that this worked fine for my test item... but now that i give the property "type" to a lot of items, i realized that it just works for my "first item" with the type tag

i was reading about the tag, tag0, and everything, but no combination works for me Sad please help

by the way, when I set a type "yyy" to other item, the console says:

Undefined symbol 'yyy' ['yyy)']


RE: tag issue - Coruja - 02-02-2018 02:43 AM

to understand sphere scripting you should always "resolve" the value to check if its valid

using an random example, if TAG.TYPE=grass, this script line
Code:
if (<act.tag.type>)
will be
Code:
if (grass)
which makes no sense

but if you replace (<act.tag.type>) with !(<isempty <act.tag.type>>) it will check if the tag is empty or not, which is probably what you trying to do: show the message if the tag is set


RE: tag issue - Nox - 02-02-2018 12:00 PM

that was it! thank you very much Coruja Smile