V19 Parameters wont show all of it

11/28/2013 11:52 raventh1984#1
Hi elitepvpers,

i am having an bit of an problem with new Parameters
dwDestParam5/6 and nAdjParamVal5/6

dwDestParam1/2/3/4 and nAdjParamVal1/2/3/4 are working

Its all build into the source and its also working. The only problem i am having is that it wont show all of the stats if you hover the mouse over the weapon.

Spec_Item
[Only registered and activated users can see links. Click Here To Register...]

Weapon
[Only registered and activated users can see links. Click Here To Register...]

I am missing the dwDestParam5 and 6

The stats are working since for the test i added 500 int into the last column

Could someone give me an tip on where to look?

With kind regards.
11/28/2013 12:02 alfredico#2
You have to print the stats in the client part, only by reading the file correctly doesn't mean stats will automatically show in the client.

Most of them are in WndManager and WndField. Search for dwDestParam and change only the needed lines (some parts are not needed to change, just figure out yourself).

This:
for( int i = 0; i < 3; i ++ )

By:
for( int i = 0; i < 6; i ++ )


Then it should look like on official:
[Only registered and activated users can see links. Click Here To Register...]
11/28/2013 12:09 raventh1984#3
Thank you however its already done.

void CWndMgr::PutBaseItemOpt( CItemElem* pItemElem, CEditString* pEdit )
#ifdef __LECTURE_V19
for( int i = 0; i < 6; i ++ )
#else
#ifdef __PROP_0827
for( int i = 0; i < 3; i ++ )
#else // __PROP_0827
for( int i = 0; i < 2; i ++ )
#endif // __PROP_0827
#endif

Everything else is the same as on aidelson v19 source update 3.
11/28/2013 12:23 alfredico#4
You have to edit too this part for read and add stats on server part:

CMover::SetDestParamEquip
CMover::ResetDestParamEquip
CMover::SetDestParam
11/28/2013 12:32 raventh1984#5
also added it there.

The only problem i am having atm is that it wont show the last 2 params.
the first 4 its showing without any problems.

Hmm i have an feeling its not all ok
Since i also have this

[Only registered and activated users can see links. Click Here To Register...]

And for some reason i cant explain it only shows the first 2
[Only registered and activated users can see links. Click Here To Register...]

Could it be that the DST_ Params must be in an particulair order?


EDIT:
Found the bug. It was inside Spec_Item.
Its solved now

Thanks again.