View Single Post
  #15  
Unread 04-08-2005, 06:26 PM
hirebrand hirebrand is offline
Bellum Aeternus
This person is a EQ2Map developer.
Interface Author - Click to view interfaces
 
Join Date: Dec 2004
Server: Unkown
Posts: 165
Default

You can have the object ignore parts of the DynamicData by using DynamicDataFilter.

Value Description
0x0000 None
0x0001 Visible/Not visible
0x0002 Text
0x0004 Tooltip
0x0008 Boolean value
0x0010 Floating point value
0x0020 Long value
0x0040 Progress percent
0x0080 Icon
0x0100 Command
0x0200 Enabled/Disabled
0x0400 Color
0x0800 Opacity
0x1000 Event Trigger
0xFFFF All

Choose the bits of data you need and add them together, (or subtract them from FFFF if you want everything except a certain thing) to get the DynamicDataFilter (use window's Calculator set on hexadecimal mode)

Example
0001 Visible
0002 Text
0004 Tooltip
0400 Color
0800 Opacity
0C07 Sum

Example 2
FFFF Everything
0004 Don't Want Tooltips
FFFB Result

Last edited by hirebrand : 05-07-2005 at 03:14 AM.
Reply With Quote