Forums WoW Modding Support Archives WoWModding Threads [DiscordArchive] How would i create a spell whereas the tooltip ...

[DiscordArchive] How would i create a spell whereas the tooltip ...

[DiscordArchive] How would i create a spell whereas the tooltip ...

Pages (10): Previous 1 4 5 6 7 8 10 Next  
rektbyfaith
Administrator
0
11-28-2024, 10:30 PM
#51
Archived author: avoel • Posted: 2024-11-28T22:30:43.326000+00:00
Original source

it prints just $ Fire Damage in the tooltip
rektbyfaith
11-28-2024, 10:30 PM #51

Archived author: avoel • Posted: 2024-11-28T22:30:43.326000+00:00
Original source

it prints just $ Fire Damage in the tooltip

rektbyfaith
Administrator
0
11-28-2024, 10:31 PM
#52
Archived author: avoel • Posted: 2024-11-28T22:31:03.490000+00:00
Original source

if i do ${m1*$}
rektbyfaith
11-28-2024, 10:31 PM #52

Archived author: avoel • Posted: 2024-11-28T22:31:03.490000+00:00
Original source

if i do ${m1*$}

rektbyfaith
Administrator
0
11-28-2024, 10:34 PM
#53
Archived author: stoneharry • Posted: 2024-11-28T22:34:00.553000+00:00
Original source

These might be good example spells: `37985, 38309, 49883, 49884, 69670`

Source:
`SPELL_ATTR0_SCALES_WITH_CREATURE_LEVEL = 524,288`
```sql
SELECT * FROM spell WHERE attributes & 524288 != 0 AND SpellDescription0 LIKE '%m1%';
```
rektbyfaith
11-28-2024, 10:34 PM #53

Archived author: stoneharry • Posted: 2024-11-28T22:34:00.553000+00:00
Original source

These might be good example spells: `37985, 38309, 49883, 49884, 69670`

Source:
`SPELL_ATTR0_SCALES_WITH_CREATURE_LEVEL = 524,288`
```sql
SELECT * FROM spell WHERE attributes & 524288 != 0 AND SpellDescription0 LIKE '%m1%';
```

rektbyfaith
Administrator
0
11-28-2024, 10:39 PM
#54
Archived author: stoneharry • Posted: 2024-11-28T22:39:52.096000+00:00
Original source

```sql
SELECT id, BaseLevel, SpellLevel, MaximumLevel, (EffectBasePoints1+EffectDieSides1) AS 'BaseDamage', EffectDamageMultiplier1, SpellName0, SpellDescription0, SpellTooltip0
FROM spell
WHERE attributes & 524288 != 0;
```
I don't think Blizzard bothers keeping the tooltip updated properly for creature spells
rektbyfaith
11-28-2024, 10:39 PM #54

Archived author: stoneharry • Posted: 2024-11-28T22:39:52.096000+00:00
Original source

```sql
SELECT id, BaseLevel, SpellLevel, MaximumLevel, (EffectBasePoints1+EffectDieSides1) AS 'BaseDamage', EffectDamageMultiplier1, SpellName0, SpellDescription0, SpellTooltip0
FROM spell
WHERE attributes & 524288 != 0;
```
I don't think Blizzard bothers keeping the tooltip updated properly for creature spells

rektbyfaith
Administrator
0
11-28-2024, 10:40 PM
#55
Archived author: stoneharry • Posted: 2024-11-28T22:40:46.843000+00:00
Original source

That or the flag is only used by creatures where the spell damage should scale with the creature level
rektbyfaith
11-28-2024, 10:40 PM #55

Archived author: stoneharry • Posted: 2024-11-28T22:40:46.843000+00:00
Original source

That or the flag is only used by creatures where the spell damage should scale with the creature level

rektbyfaith
Administrator
0
11-28-2024, 10:41 PM
#56
Archived author: avoel • Posted: 2024-11-28T22:41:00.265000+00:00
Original source

hm
rektbyfaith
11-28-2024, 10:41 PM #56

Archived author: avoel • Posted: 2024-11-28T22:41:00.265000+00:00
Original source

hm

rektbyfaith
Administrator
0
11-28-2024, 10:41 PM
#57
Archived author: stoneharry • Posted: 2024-11-28T22:41:36.221000+00:00
Original source

```sql
SELECT id, BaseLevel, SpellLevel, MaximumLevel, (EffectBasePoints1+EffectDieSides1) AS 'BaseDamage', EffectDamageMultiplier1, SpellName0, SpellDescription0, SpellTooltip0
FROM spell
WHERE SpellTooltip0 LIKE '%$m1%';
``` is much more interesting
rektbyfaith
11-28-2024, 10:41 PM #57

Archived author: stoneharry • Posted: 2024-11-28T22:41:36.221000+00:00
Original source

```sql
SELECT id, BaseLevel, SpellLevel, MaximumLevel, (EffectBasePoints1+EffectDieSides1) AS 'BaseDamage', EffectDamageMultiplier1, SpellName0, SpellDescription0, SpellTooltip0
FROM spell
WHERE SpellTooltip0 LIKE '%$m1%';
``` is much more interesting

rektbyfaith
Administrator
0
11-28-2024, 10:43 PM
#58
Archived author: stoneharry • Posted: 2024-11-28T22:43:21.504000+00:00
Original source

`20 - Spell damage depends on level of the caster. Source: "For non-player casts, scale impact and power cost with caster's level."` yeah think the flag is only creatures
rektbyfaith
11-28-2024, 10:43 PM #58

Archived author: stoneharry • Posted: 2024-11-28T22:43:21.504000+00:00
Original source

`20 - Spell damage depends on level of the caster. Source: "For non-player casts, scale impact and power cost with caster's level."` yeah think the flag is only creatures

rektbyfaith
Administrator
0
11-28-2024, 10:51 PM
#59
Archived author: stoneharry • Posted: 2024-11-28T22:51:43.616000+00:00
Original source

no idea it doesn't make sense to me just looking at the data
rektbyfaith
11-28-2024, 10:51 PM #59

Archived author: stoneharry • Posted: 2024-11-28T22:51:43.616000+00:00
Original source

no idea it doesn't make sense to me just looking at the data

rektbyfaith
Administrator
0
11-28-2024, 10:54 PM
#60
Archived author: avoel • Posted: 2024-11-28T22:54:14.556000+00:00
Original source

yea i don't get it either
rektbyfaith
11-28-2024, 10:54 PM #60

Archived author: avoel • Posted: 2024-11-28T22:54:14.556000+00:00
Original source

yea i don't get it either

Pages (10): Previous 1 4 5 6 7 8 10 Next  
Recently Browsing
 1 Guest(s)
Recently Browsing
 1 Guest(s)