Forums WoW Modding Support Archives Azerothcore Discord Archives [DiscordArchive] The mounts itself or the skill?

[DiscordArchive] The mounts itself or the skill?

[DiscordArchive] The mounts itself or the skill?

Pages (2): 1 2 Next
rektbyfaith
Administrator
0
04-20-2025, 12:58 PM
#1
Archived author: Ryan Turner • Posted: 2025-04-20T12:58:47.692000+00:00
Original source

The mounts itself or the skill?
rektbyfaith
04-20-2025, 12:58 PM #1

Archived author: Ryan Turner • Posted: 2025-04-20T12:58:47.692000+00:00
Original source

The mounts itself or the skill?

rektbyfaith
Administrator
0
04-20-2025, 12:59 PM
#2
Archived author: Illu • Posted: 2025-04-20T12:59:22.156000+00:00
Original source

skill too, seems like the mount level was changed, but don't see it changed on rams for some reasons
rektbyfaith
04-20-2025, 12:59 PM #2

Archived author: Illu • Posted: 2025-04-20T12:59:22.156000+00:00
Original source

skill too, seems like the mount level was changed, but don't see it changed on rams for some reasons

rektbyfaith
Administrator
0
04-20-2025, 01:00 PM
#3
Archived author: Ryan Turner • Posted: 2025-04-20T13:00:01.030000+00:00
Original source

```sql
SET
@RidingLevel := 5,
@RidingCost := 95,
@ApprenticeOrc := 5668,
@ApprenticeUndead := 13331,
@ApprenticeTauren := 15277,
@ApprenticeTroll := 8592,
@ApprenticeBloodElf := 29222,
@ApprenticeHuman := 2411,
@ApprenticeDwarf := 5873,
@ApprenticeNightElf := 8631,
@ApprenticeGnome := 13324,
@ApprenticeDraenei := 29743;

UPDATE `item_template` SET `RequiredLevel`=@RidingLevel WHERE `entry` IN (@ApprenticeOrc, @ApprenticeUndead, @ApprenticeTauren, @ApprenticeTroll, @ApprenticeBloodElf, @ApprenticeHuman, @ApprenticeDwarf, @ApprenticeNightElf, @ApprenticeGnome, @ApprenticeDraenei);

UPDATE npc_trainer SET MoneyCost=@RidingCost, ReqLevel=@RidingLevel WHERE ID=202010 AND SpellID=33388;
```
rektbyfaith
04-20-2025, 01:00 PM #3

Archived author: Ryan Turner • Posted: 2025-04-20T13:00:01.030000+00:00
Original source

```sql
SET
@RidingLevel := 5,
@RidingCost := 95,
@ApprenticeOrc := 5668,
@ApprenticeUndead := 13331,
@ApprenticeTauren := 15277,
@ApprenticeTroll := 8592,
@ApprenticeBloodElf := 29222,
@ApprenticeHuman := 2411,
@ApprenticeDwarf := 5873,
@ApprenticeNightElf := 8631,
@ApprenticeGnome := 13324,
@ApprenticeDraenei := 29743;

UPDATE `item_template` SET `RequiredLevel`=@RidingLevel WHERE `entry` IN (@ApprenticeOrc, @ApprenticeUndead, @ApprenticeTauren, @ApprenticeTroll, @ApprenticeBloodElf, @ApprenticeHuman, @ApprenticeDwarf, @ApprenticeNightElf, @ApprenticeGnome, @ApprenticeDraenei);

UPDATE npc_trainer SET MoneyCost=@RidingCost, ReqLevel=@RidingLevel WHERE ID=202010 AND SpellID=33388;
```

rektbyfaith
Administrator
0
04-20-2025, 01:01 PM
#4
Archived author: Ryan Turner • Posted: 2025-04-20T13:01:08.845000+00:00
Original source

ApprenticeX is what i wanted to give early on. you can changed that to all mounts.

The last part where npc_trainer is the one you want to change
rektbyfaith
04-20-2025, 01:01 PM #4

Archived author: Ryan Turner • Posted: 2025-04-20T13:01:08.845000+00:00
Original source

ApprenticeX is what i wanted to give early on. you can changed that to all mounts.

The last part where npc_trainer is the one you want to change

rektbyfaith
Administrator
0
04-20-2025, 01:05 PM
#5
Archived author: Illu • Posted: 2025-04-20T13:05:22.660000+00:00
Original source

Wait I must've skipped a memo or something, I was updating mysql tables by hand
rektbyfaith
04-20-2025, 01:05 PM #5

Archived author: Illu • Posted: 2025-04-20T13:05:22.660000+00:00
Original source

Wait I must've skipped a memo or something, I was updating mysql tables by hand

rektbyfaith
Administrator
0
04-20-2025, 01:05 PM
#6
Archived author: Ryan Turner • Posted: 2025-04-20T13:05:43.568000+00:00
Original source

Learning the basics of sql can be handy.
rektbyfaith
04-20-2025, 01:05 PM #6

Archived author: Ryan Turner • Posted: 2025-04-20T13:05:43.568000+00:00
Original source

Learning the basics of sql can be handy.

rektbyfaith
Administrator
0
04-20-2025, 01:06 PM
#7
Archived author: Illu • Posted: 2025-04-20T13:06:11.899000+00:00
Original source

I know the basics of sql
rektbyfaith
04-20-2025, 01:06 PM #7

Archived author: Illu • Posted: 2025-04-20T13:06:11.899000+00:00
Original source

I know the basics of sql

rektbyfaith
Administrator
0
04-20-2025, 01:06 PM
#8
Archived author: Illu • Posted: 2025-04-20T13:06:14.922000+00:00
Original source

not this to
rektbyfaith
04-20-2025, 01:06 PM #8

Archived author: Illu • Posted: 2025-04-20T13:06:14.922000+00:00
Original source

not this to

rektbyfaith
Administrator
0
04-20-2025, 01:06 PM
#9
Archived author: Illu • Posted: 2025-04-20T13:06:28.791000+00:00
Original source

^^'
rektbyfaith
04-20-2025, 01:06 PM #9

Archived author: Illu • Posted: 2025-04-20T13:06:28.791000+00:00
Original source

^^'

rektbyfaith
Administrator
0
04-20-2025, 01:06 PM
#10
Archived author: Ryan Turner • Posted: 2025-04-20T13:06:29.853000+00:00
Original source

That's just variables
rektbyfaith
04-20-2025, 01:06 PM #10

Archived author: Ryan Turner • Posted: 2025-04-20T13:06:29.853000+00:00
Original source

That's just variables

Pages (2): 1 2 Next
Recently Browsing
 1 Guest(s)
Recently Browsing
 1 Guest(s)