[Help]

04/14/2012 22:33 linja12#1
Anyone know what function of monopoly in cq_itemtype.

can explain for each number of monopoly?:):):)
04/15/2012 03:23 no_1#2
Quote:
Originally Posted by linja12 View Post
Anyone know what function of monopoly in cq_itemtype.

can explain for each number of monopoly?:):):)
monopoly is the value that say what this item can do.
In the way of:
Can't be traded.
Can't be dropped.
Can't be stored in warehouse.
Can't be sold.
Does not drop on death.

MONOPOLY_MASK = 0x01;
STORAGE_MASK = 0x02;
DROP_HINT_MASK = 0x04;
SELL_HINT_MASK = 0x08;
NEVER_DROP_WHEN_DEAD_MASK = 0x10;
SELL_DISABLE_MASK = 0x20;

This i took out of the eo source about the monopoly

Regards SweetCandy[PM]