Page 1 of 1

Augumented Shields

Posted: Wed Oct 14, 2009 11:56 am
by LaraCroft
06:17 Changeset [3620] by _DS_
Shields can't be augmented, thanks devo. Also little optimisations.
How do i remove the augments from shields??
Anyone can help me??
:?:
Thxx...
:mrgreen:

Re: Augumented Shields

Posted: Thu Oct 15, 2009 3:00 pm
by lishawj
Look in item_attributes table.

Re: Augumented Shields

Posted: Thu Oct 15, 2009 5:16 pm
by devo

Code: Select all

DELETE FROM item_attributes WHERE itemId IN (SELECT object_id FROM items WHERE item_id IN (SELECT item_id FROM weapon WHERE weaponType IN ('none')));

Re: Augumented Shields

Posted: Thu Oct 15, 2009 5:42 pm
by LaraCroft
Thxxx... Devo...
:mrgreen:

Re: Augumented Shields

Posted: Fri Oct 16, 2009 9:27 am
by _DS_
JFYI: removing augments from rods:

Code: Select all

DELETE FROM item_attributes WHERE itemId IN (SELECT object_id FROM items WHERE item_id IN (SELECT item_id FROM weapon WHERE weaponType IN ('rod')));

Re: Augumented Shields

Posted: Fri Oct 16, 2009 11:31 am
by LaraCroft
Thxx.... DS...
:)
It was a great help.