View Single Post
  #51  
Old 01-14-2011, 03:16 PM
Derision
Developer
 
Join Date: Feb 2004
Location: UK
Posts: 1,540
Default

Quote:
Originally Posted by gaeorn View Post
Pet hold appears not to work. I was testing with a beastlord with all trainable AA
There were three issues here.

The first is that when you type /pet hold in Underfoot, the client now appears to check if you have that ability before sending it to the server, whereas before the client sent it regardless and let the server decide if you could use it.

There were no rows in aa_effects for Pet Discipline (AAID 288 ), which didn't really matter in prior clients due to the above.

The command code for /pet hold needed translating to the code used by previous clients. This is in Rev1821.

The aa_effect rows for Pet Discipline are:
Code:
INSERT INTO `aa_effects` (`id` ,`aaid` ,`slot` ,`effectid` ,`base1` ,`base2`) VALUES (NULL , '288', '1', '257', '1', '0');
INSERT INTO `aa_effects` (`id` ,`aaid` ,`slot` ,`effectid` ,`base1` ,`base2`) VALUES (NULL , '288', '2', '267', '1', '31');
INSERT INTO `aa_effects` (`id` ,`aaid` ,`slot` ,`effectid` ,`base1` ,`base2`) VALUES (NULL , '288', '3', '267', '1', '32');
INSERT INTO `aa_effects` (`id` ,`aaid` ,`slot` ,`effectid` ,`base1` ,`base2`) VALUES (NULL , '288', '4', '267', '1', '33');
INSERT INTO `aa_effects` (`id` ,`aaid` ,`slot` ,`effectid` ,`base1` ,`base2`) VALUES (NULL , '288', '5', '267', '1', '15');
INSERT INTO `aa_effects` (`id` ,`aaid` ,`slot` ,`effectid` ,`base1` ,`base2`) VALUES (NULL , '288', '6', '267', '1', '16');
INSERT INTO `aa_effects` (`id` ,`aaid` ,`slot` ,`effectid` ,`base1` ,`base2`) VALUES (NULL , '288', '7', '267', '1', '17');
INSERT INTO `aa_effects` (`id` ,`aaid` ,`slot` ,`effectid` ,`base1` ,`base2`) VALUES (NULL , '288', '8', '267', '1', '18');
INSERT INTO `aa_effects` (`id` ,`aaid` ,`slot` ,`effectid` ,`base1` ,`base2`) VALUES (NULL , '288', '9', '267', '1', '19');
INSERT INTO `aa_effects` (`id` ,`aaid` ,`slot` ,`effectid` ,`base1` ,`base2`) VALUES (NULL , '288', '10', '267', '1', '20');
Reply With Quote