SphereCommunity
attr_identified - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: Script Help (/Forum-Script-Help)
+--- Thread: attr_identified (/Thread-attr-identified)



attr_identified - Elmortis - 01-14-2013 09:16 PM

How works this flags?

attr_identified 00001 // this is the identified name. ???


RE: attr_identified - darksun84 - 01-15-2013 12:04 AM

It used the display the fullname of a magic item .

01 attr_identified Someone has used the Item ID skill on this item so it will display the full magic name "+7 Sword of Ruin of Flamestrike".


RE: attr_identified - Elmortis - 01-15-2013 09:00 AM

I wont make item id with clilock. when chrecter found some magic item. he must indefinity this item. when he wont know what this item can give him. sorry for my bad english


RE: attr_identified - RanXerox - 01-15-2013 09:37 AM

This trigger will show the word "unidentified" in red text when you move the mouse over the item:

Code:
ON=@ClientToolTip
   SRC.ADDCLILOC 1042971,<NAME>
   IF !(<ATTR> & attr_identified)
      SRC.ADDCLILOC 1041522,<DEF.HTML_REDTEXT>,#1038000,<DEF.HTML_WHITETEXT>
   ENDIF

To hide the magic properties of an item you could use the same concept...


RE: attr_identified - Elmortis - 01-22-2013 06:37 AM

thank