Items Get Shiny!
Below is a screenshot of how the weapon looks when it is fully upgraded to +15
<a href='http://img96.imageshack.us/img96/17/hel ... sdensh.jpg' target='_blank'>http://img96.imageshack.us/img96/17/hel ... nsh.jpg</a>
anyone know how to create this effect? the picture is kinda small might require some enlarging. anyway its a beserk wand that is shiny.. it glows
<a href='http://img96.imageshack.us/img96/17/hel ... sdensh.jpg' target='_blank'>http://img96.imageshack.us/img96/17/hel ... nsh.jpg</a>
anyone know how to create this effect? the picture is kinda small might require some enlarging. anyway its a beserk wand that is shiny.. it glows
"How art thou fallen from heaven."
Copy dk+15 item cfg and edit sprite and sprite frame...
<img src='http://img440.imageshack.us/img440/2627/15pt.jpg' border='0' alt='user posted image' /><br><br>HBPolska characters:<br><br>Hellios 150+ Aresden Hero Mage<br>TheBill 120 Aresden plrider<br>Kill_Me 100 Full-Hero plrider<br>Rockeater 110+ Aresden Plate Mage<br><br><a href='http://www.helbreath.org' target='_blank'>http://www.helbreath.org</a> come and play (250 ppl online)
there should be some F000000 or smth in source code.
In UpgradeItemHandler or somewhere(when it get's +15) you could maybe change it to your colour?
In UpgradeItemHandler or somewhere(when it get's +15) you could maybe change it to your colour?
<img src='http://www.hot.ee/carvanho/taavi.png' border='0' alt='user posted image' /><br><br><img src='http://www.hot.ee/carvanho/Elvine.png' border='0' alt='user posted image' /><br><img src='http://www.hot.ee/carvanho/LieroX.png' border='0' alt='user posted image' /><br><img src='http://www.hot.ee/carvanho/Football.png' border='0' alt='user posted image' />
but its not any of the colours below
Color:
0 = Normal
1 = Strong/Agile
2 = Strong/Agile
3 = Strong/Agile
4 = Green
5 = Gold
6 = Sharp (Blue)
7 = Righteous (White)
8 = Ancient (Purple)
9 = Blood (Red)
10 = Black
its shiny.. translucent i dont know how to describe anyone understand what i'm trying to say?
Color:
0 = Normal
1 = Strong/Agile
2 = Strong/Agile
3 = Strong/Agile
4 = Green
5 = Gold
6 = Sharp (Blue)
7 = Righteous (White)
8 = Ancient (Purple)
9 = Blood (Red)
10 = Black
its shiny.. translucent i dont know how to describe anyone understand what i'm trying to say?
"How art thou fallen from heaven."
Yes i understand.
It's hard to make a shiny effect
there are already 3 shiny effects: Xelima, Ice and Medusa.
You can use one of these effects, but making your own will be tuff work
It's hard to make a shiny effect
there are already 3 shiny effects: Xelima, Ice and Medusa.
You can use one of these effects, but making your own will be tuff work
<img src='http://www.hot.ee/carvanho/taavi.png' border='0' alt='user posted image' /><br><br><img src='http://www.hot.ee/carvanho/Elvine.png' border='0' alt='user posted image' /><br><img src='http://www.hot.ee/carvanho/LieroX.png' border='0' alt='user posted image' /><br><img src='http://www.hot.ee/carvanho/Football.png' border='0' alt='user posted image' />
Try make Dragon Sword with 9 Color. it Will glow
Dragon Staff too.

<img src='http://img440.imageshack.us/img440/2627/15pt.jpg' border='0' alt='user posted image' /><br><br>HBPolska characters:<br><br>Hellios 150+ Aresden Hero Mage<br>TheBill 120 Aresden plrider<br>Kill_Me 100 Full-Hero plrider<br>Rockeater 110+ Aresden Plate Mage<br><br><a href='http://www.helbreath.org' target='_blank'>http://www.helbreath.org</a> come and play (250 ppl online)
You are maybe talking about the stars around the weapon... It comes with the Xelima / Merien Effect.
<a href='http://www.technohell.net' target='_blank'><b><span style='color:red'>>>> Helbreath Ressources Website Here <<<</span></b></a><br>C++ Sources, Tools, Server Files, Help on Forum, C++ Snippets, Toplist... Updated often, come visit us !

DkGlare Function
Code: Select all
bool DKGlare(int iWeaponIndex, int iWeaponIndex, int *iWeaponGlare)
in that func search *iWeaponGlare = (number)
number 1 = RED SHINY
number 2 = green SHINY
number 3 = BLUE SHINY
if u wanna add new weapon whit that effect
add this code before end
Code: Select all
}else if ( ((iWeaponIndex >= DEF_SPRID_WEAPON_M + 64*17)&&(iWeaponIndex < DEF_SPRID_WEAPON_M + 64*37 + 56)) //Axe
|| ((iWeaponIndex >= DEF_SPRID_WEAPON_W + 64*17)&&(iWeaponIndex < DEF_SPRID_WEAPON_W + 64*37 + 56)))//Axe
{ *iWeaponGlare = 3;
and SPRITE -> 64*37
if u wanna see all weapon and armor sprite, search:
Code: Select all
void CGame::UpdateScreen_OnLoading(bool bActive

guide by yoko! thanks yoko!
"Prefiero morir de pie que vivir arrodillado"
u dont ahve chnage noting in client source ... :S
and like u see the armor is not glowing ... it got special color !
so ->
in the hg source ->
requestitemupgradehandler ... there search about the + 15 codes (iValue = 15)
and
here it is ... if item became +15 ten it color = 9
..
and like u see the armor is not glowing ... it got special color !
so ->
in the hg source ->
requestitemupgradehandler ... there search about the + 15 codes (iValue = 15)
and
Code: Select all
if (iValue == 15) m_pClientList[iClientH]->m_pItemList[iItemIndex]->m_cItemColor = 9;
