Forums WoW Modding Discussion Interface [Archive] Character Aura, Client interface max count (255)

[Archive] Character Aura, Client interface max count (255)

[Archive] Character Aura, Client interface max count (255)

rektbyfaith
Administrator
0
12-13-2018, 11:18 AM
#1
Archived author: Ashk • Posted: 2018-12-13T11:18:51+00:00
Original source

Hi,

I wanted to remove the limit of 255 stack aura, so i change uint8 to 16 in core and database (character_aura.stackamount). Serverside it's perfect but client side the restrictions is active, when i hit 255 the count back to 0. So i find this in Interface client (3.3.5a)

function AuraButton_Update(buttonName, index, filter)
local unit = PlayerFrame.unit;
local name, rank, texture, count, debuffType, duration, expirationTime, _, _, shouldConsolidate = UnitAura(unit, index, filter);
[.....]
-- Set the number of applications of an aura
if ( count > 1 ) then
buff.count:SetText(count);
buff.count:Show();
else
buff.count:Hide();
end
[.....]
end

Someone can help to remove this restrictions client side ? Thank you and sorry for my bad english..
rektbyfaith
12-13-2018, 11:18 AM #1

Archived author: Ashk • Posted: 2018-12-13T11:18:51+00:00
Original source

Hi,

I wanted to remove the limit of 255 stack aura, so i change uint8 to 16 in core and database (character_aura.stackamount). Serverside it's perfect but client side the restrictions is active, when i hit 255 the count back to 0. So i find this in Interface client (3.3.5a)

function AuraButton_Update(buttonName, index, filter)
local unit = PlayerFrame.unit;
local name, rank, texture, count, debuffType, duration, expirationTime, _, _, shouldConsolidate = UnitAura(unit, index, filter);
[.....]
-- Set the number of applications of an aura
if ( count > 1 ) then
buff.count:SetText(count);
buff.count:Show();
else
buff.count:Hide();
end
[.....]
end

Someone can help to remove this restrictions client side ? Thank you and sorry for my bad english..

rektbyfaith
Administrator
0
12-14-2018, 05:36 AM
#2
Archived author: irachkom • Posted: 2018-12-14T05:36:40+00:00
Original source

I think, thats not UI based issue. Looks like you should do some reverseengineering into your WoW.exe with 010editor to do this.

So yes, its ALMOST impossible.
rektbyfaith
12-14-2018, 05:36 AM #2

Archived author: irachkom • Posted: 2018-12-14T05:36:40+00:00
Original source

I think, thats not UI based issue. Looks like you should do some reverseengineering into your WoW.exe with 010editor to do this.

So yes, its ALMOST impossible.

rektbyfaith
Administrator
0
12-14-2018, 01:00 PM
#3
Archived author: Ashk • Posted: 2018-12-14T13:00:48+00:00
Original source

Where can i find the lua function UnitAura() use to init the count variable ? In the Wow.exe ??
rektbyfaith
12-14-2018, 01:00 PM #3

Archived author: Ashk • Posted: 2018-12-14T13:00:48+00:00
Original source

Where can i find the lua function UnitAura() use to init the count variable ? In the Wow.exe ??

Recently Browsing
 1 Guest(s)
Recently Browsing
 1 Guest(s)