PDA

View Full Version : Augs


kimura0715
05-21-2009, 09:57 PM
i have searched for a way to do this but cant figure it out. how can i make all augs set to all aug types like 1,2,3,4,5,6,7,8,9,10,11,12??

trevius
05-21-2009, 10:13 PM
The answer to this question is the same one from the post that was right below yours:

http://www.eqemulator.net/forums/showthread.php?t=28296

ChaosSlayerZ
05-21-2009, 11:27 PM
unless he asks for actual sql comand =)

update items set augtype=1 where id=1001;

this will set item with id# 1001 to be type 1 augment

BTW considerign that ANy slot augment corespand to value 2147483647

this means thre are as many as 32 types of augments =)

kimura0715
05-22-2009, 06:17 AM
thanks for the replies, only problem is i want to change ALL augs to have all slots. the script u provided is one at a time right?

ChaosSlayerZ
05-22-2009, 10:06 AM
update items set augtype=2147483647 where itemtype=54;

this will set ALL augs in DB to be useable in ANY slot (in game it shows as- this aug can be placed in ANY slot rather than specific numbers)