benja98
Silver
Earned after your first post and comment.
Likes : 0
| #1Subject: drop ropa con stats altos. 6/11/2021, 6:04 am | |
| Hola comunidad. Logre hacer que tiren mas ropa los npc , pero no tira con buenos stats. Cuales son las lineas que tengo que modificar para que tire ropa con stats altos? Saludos |
|
LifeX
Diamond 1
Over 144 posts and comments.
10th Anniversary
Earned after being a member for 10 years.
Likes : 26
| #2Subject: Re: drop ropa con stats altos. 6/22/2021, 9:26 am | |
| Check here -> NpcDeadItemGenerator under - Code:
-
if( (pItem->m_sItemEffectType == DEF_ITEMEFFECTTYPE_ATTACK) You will need to learn and understand how to make the iDice drop which stats more often. Good Luck. Example: HGServer - Code:
-
iResult = iDice(1,10000); if ((iResult >= 1) && (iResult <= 299)) { dwType = 6; // 6 is Light cColor = 2; // 2 is colour inside Client } Client - Code:
-
m_Misc.ColorTransfer(m_DDraw.m_cPixelFormat, RGB(70, 70, 80), &m_wWR[2], &m_wWG[2], &m_wWB[2]); // light-blue // Light Good Luck |
|