Forums WoW Modding Support Archives TrinityCore Discord Archives [DiscordArchive] Any custom changes you did? What did you change?

[DiscordArchive] Any custom changes you did? What did you change?

[DiscordArchive] Any custom changes you did? What did you change?

rektbyfaith
Administrator
0
01-12-2024, 09:40 PM
#1
Archived author: Srzm • Posted: 2024-01-12T21:40:13.503000+00:00
Original source

Any custom changes you did? What did you change?
rektbyfaith
01-12-2024, 09:40 PM #1

Archived author: Srzm • Posted: 2024-01-12T21:40:13.503000+00:00
Original source

Any custom changes you did? What did you change?

rektbyfaith
Administrator
0
01-12-2024, 09:41 PM
#2
Archived author: Tea • Posted: 2024-01-12T21:41:12.781000+00:00
Original source

he has custom scripts for sure
rektbyfaith
01-12-2024, 09:41 PM #2

Archived author: Tea • Posted: 2024-01-12T21:41:12.781000+00:00
Original source

he has custom scripts for sure

rektbyfaith
Administrator
0
01-12-2024, 09:41 PM
#3
Archived author: Tea • Posted: 2024-01-12T21:41:19.642000+00:00
Original source

and its npc 70202 doing that
rektbyfaith
01-12-2024, 09:41 PM #3

Archived author: Tea • Posted: 2024-01-12T21:41:19.642000+00:00
Original source

and its npc 70202 doing that

rektbyfaith
Administrator
0
01-12-2024, 09:42 PM
#4
Archived author: Srzm • Posted: 2024-01-12T21:42:27.530000+00:00
Original source

Yep. That's the part you should look into it:

`#0 0x000000000117143c in Trinity::Assert (file=<optimized out>, line=<optimized out>, line@entry=10065, function=<optimized out>, debugInfo="MapID: 1 Map name: 'Калимдор' X: 16156.9 Y: 16245.3 Z: 34.7889 O: 6.0907\nGUID Full: 0xf13001123a000047 Type: Creature Entry: 70202 Low: 71 Entry 70202\nName: Laurena\nIsAIEnabled: true DeathSta"..., message=<optimized out>, format=<optimized out>) at /home/server/colossTC/src/common/Debugging/Errors.cpp:90
args = {{gp_offset = 48, fp_offset = 48, overflow_arg_area = 0x7fff98bfc270, reg_save_area = 0x7fff98bfc190}}
formattedMessage = "\n/home/server/colossTC/src/server/game/Entities/Unit/Unit.cpp:10065 in RefreshAI ASSERTION FAILED:\n !m_aiLocked\nTried to change current AI during UpdateAI()\nMapID: 1 Map name: 'Калимдор' X: 1"...`

In Kalimdor, NPC with entry 70202 (and name "Laurena"?) is doing bad things.
rektbyfaith
01-12-2024, 09:42 PM #4

Archived author: Srzm • Posted: 2024-01-12T21:42:27.530000+00:00
Original source

Yep. That's the part you should look into it:

`#0 0x000000000117143c in Trinity::Assert (file=<optimized out>, line=<optimized out>, line@entry=10065, function=<optimized out>, debugInfo="MapID: 1 Map name: 'Калимдор' X: 16156.9 Y: 16245.3 Z: 34.7889 O: 6.0907\nGUID Full: 0xf13001123a000047 Type: Creature Entry: 70202 Low: 71 Entry 70202\nName: Laurena\nIsAIEnabled: true DeathSta"..., message=<optimized out>, format=<optimized out>) at /home/server/colossTC/src/common/Debugging/Errors.cpp:90
args = {{gp_offset = 48, fp_offset = 48, overflow_arg_area = 0x7fff98bfc270, reg_save_area = 0x7fff98bfc190}}
formattedMessage = "\n/home/server/colossTC/src/server/game/Entities/Unit/Unit.cpp:10065 in RefreshAI ASSERTION FAILED:\n !m_aiLocked\nTried to change current AI during UpdateAI()\nMapID: 1 Map name: 'Калимдор' X: 1"...`

In Kalimdor, NPC with entry 70202 (and name "Laurena"?) is doing bad things.

rektbyfaith
Administrator
0
01-12-2024, 09:42 PM
#5
Archived author: Tea • Posted: 2024-01-12T21:42:53.386000+00:00
Original source

or something else is doing bad things to that npc
rektbyfaith
01-12-2024, 09:42 PM #5

Archived author: Tea • Posted: 2024-01-12T21:42:53.386000+00:00
Original source

or something else is doing bad things to that npc

rektbyfaith
Administrator
0
01-12-2024, 09:43 PM
#6
Archived author: Tea • Posted: 2024-01-12T21:43:00.344000+00:00
Original source

point is, its custom things
rektbyfaith
01-12-2024, 09:43 PM #6

Archived author: Tea • Posted: 2024-01-12T21:43:00.344000+00:00
Original source

point is, its custom things

rektbyfaith
Administrator
0
01-12-2024, 09:43 PM
#7
Archived author: DykeR • Posted: 2024-01-12T21:43:03.418000+00:00
Original source

i added legacy buff from retain core in 335 in Unit.cpp

if (sConfigMgr->GetBoolDefault("LegacyBuffEnabled", false))
{
if (Map* map = owner->GetMap())
{
if (map->IsRaid() || map->IsDungeon())
{
int32 damageMultiplier = 1.0f;

// Damage increase with expansion/level difference
if (owner->IsPlayer() || (owner->GetOwner() && owner->GetOwner()->IsPlayer()))
{
damageMultiplier = sConfigMgr->GetIntDefault("LegacyBuff.Instance.Heal", 3);
if (map->IsRaid())
damageMultiplier = sConfigMgr->GetIntDefault("LegacyBuff.Raid.Heal", 5);

DoneTotalMod *= damageMultiplier;
}
}
}
}
rektbyfaith
01-12-2024, 09:43 PM #7

Archived author: DykeR • Posted: 2024-01-12T21:43:03.418000+00:00
Original source

i added legacy buff from retain core in 335 in Unit.cpp

if (sConfigMgr->GetBoolDefault("LegacyBuffEnabled", false))
{
if (Map* map = owner->GetMap())
{
if (map->IsRaid() || map->IsDungeon())
{
int32 damageMultiplier = 1.0f;

// Damage increase with expansion/level difference
if (owner->IsPlayer() || (owner->GetOwner() && owner->GetOwner()->IsPlayer()))
{
damageMultiplier = sConfigMgr->GetIntDefault("LegacyBuff.Instance.Heal", 3);
if (map->IsRaid())
damageMultiplier = sConfigMgr->GetIntDefault("LegacyBuff.Raid.Heal", 5);

DoneTotalMod *= damageMultiplier;
}
}
}
}

rektbyfaith
Administrator
0
01-12-2024, 09:43 PM
#8
Archived author: DykeR • Posted: 2024-01-12T21:43:24.980000+00:00
Original source

aham
rektbyfaith
01-12-2024, 09:43 PM #8

Archived author: DykeR • Posted: 2024-01-12T21:43:24.980000+00:00
Original source

aham

rektbyfaith
Administrator
0
01-12-2024, 09:43 PM
#9
Archived author: DykeR • Posted: 2024-01-12T21:43:28.158000+00:00
Original source

its bot
rektbyfaith
01-12-2024, 09:43 PM #9

Archived author: DykeR • Posted: 2024-01-12T21:43:28.158000+00:00
Original source

its bot

Recently Browsing
 
Recently Browsing