[DiscordArchive] Hunter Pet Skills
[DiscordArchive] Hunter Pet Skills
Archived author: Needle • Posted: 2024-12-21T13:18:25.558000+00:00
Original source
Archived author: Needle • Posted: 2024-12-21T13:18:26.013000+00:00
Original source
Thread automatically created by skytia.hizashi in <#415944535718494208>
Archived author: Needle • Posted: 2024-12-21T13:18:39.709000+00:00
Original source
Hunter Pet Skills
Archived author: skytia.hizashi • Posted: 2024-12-21T14:20:41.795000+00:00
Original source
Okay, found it (doesn't work tho...):
1) Open CreatureFamily.dbc
2) Get the SkillLine-ID from Bears, in this case SkillLine_1 with ID 210.
3) Get all the Swipe entries with ID 210 from SkillLineAbility.dbc.
4) Now get all Swipe entries, basically getting this SQL-Query (only took relevant data - in SQL, all the columns have standard value 0 anyway):
> INSERT INTO `skilllineability_dbc` (`SkillLine`,`Spell`,`AquireMethod`,`TrivialSkillLineRankHigh`,`TrivialSkillLineRankLow`) VALUES
> (210,50256,1,53526,2),
> (210,53526,1,53528,2),
> (210,53528,1,53529,2),
> (210,53529,1,53532,2),
> (210,53532,1,53533,2),
> (210,53533,1,0,2);
5) Next i'm adding those entries for every SkillLine other Hunter Pets use (from CreatureFamily.dbc) - and gave bears a new spell instead (gave them Ravager's Ravage):
https://pastebin.com/VGvFFW4d
(added them with IDs 2000101 upwards, just to be sure it doesn't override existing ones).
it would probably be easier to change SkillLine 270 (generic hunter pet stuff) and alter bear's entries to ravage.
but that's for the next version.
now... i restarted the server (just to be sure).
but the pets apparently don't learn the new skills (stable swapp, levelup and fresh taming of a lvl ~20 beast as lvl 60 didn't work)
any idea what i have to do on top of this?
do i need to patch the client's SkillLineAbility.dbc? (please not... there are 204 entries to add xD)
[Embed: PetAbilities.sql - Pastebin.com]
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
https://pastebin.com/VGvFFW4d
Archived author: skytia.hizashi • Posted: 2024-12-21T14:50:21.602000+00:00
Original source
update: added the entries for wolves (SkillLine 208) and cats (SkillLine 209) to SkillLineAbility.dbc as clientpatch -> tamed both of those pets, doesn't work.
Archived author: skytia.hizashi • Posted: 2024-12-21T15:02:27.286000+00:00
Original source
update2: tried it by changing SkillLine 270 (SkillLine_2) -> same result (including client patch).
Archived author: skytia.hizashi • Posted: 2024-12-21T15:10:21.686000+00:00
Original source
update3: changed wolves' Furious Howl entries in SkillLineAbility.dbc (and database table) to Spell-IDs of Swipe -> doesn't work either.
could it be that the skilllineability_dbc table is not applied?
Archived author: skytia.hizashi • Posted: 2024-12-21T15:19:52.446000+00:00
Original source
update4: tried it by changing the server .dbc itself, including client patch: no success (after recompiling).
seems like it's handled by something completely other than the SkillLineAbility.dbc...?