How I Can Edit Wyvern Drops?
i need to chance :S wyvern drop some weapons and good items,how i edit it?
Old Helbreath Nemesis Player<br><img src='http://img232.imageshack.us/img232/9784/dshakedqc5.jpg' border='0' alt='user posted image' /><br><img src='http://img232.imageshack.us/img232/6475 ... barqj0.jpg' border='0' alt='user posted image' /><br><a href='index.php?showtopic=7107&hl=' target='_blank'>MainServer Hexing Tutorial</a><br><a href='index.php?showtopic=7663&hl=x-mas' target='_blank'>My Files</a>
Moved to Helbreath Source.
QUOTE (ADDKiD @ Dec 1 2006, 4:01 PM) <br>You guys make me laugh alot, half the shit I say, is bullshit...<br><br><img src='http://img485.imageshack.us/img485/492/banssig1ng.gif' border='0' alt='user posted image' /><br><br><b>I see no changes at all, wake up in the morning and ask myself...<br>Is life worth living? Should I blast myself?</b><br><br><b><a href='http://2paclegacy.com' target='_blank'>2PacLegacy.com</a></b>
download vc++ 6.0 get the source of hb goto the game.cpp file open it in vc++ type in wyvern till u find the part that looks like what they drop change the numbers responding to the old drops to the new drops and the names for ur own info then happiness press f7 and run it and be proud of ur first bit of c++ editing
-
- Loyal fan
- Posts: 235
- Joined: Mon Jul 12, 2004 9:36 am
look under
BOOL CGame::bGetMultipleItemNamesWhenDeleteNpc
- Tbone<br><a href="http://cyborg.namedecoder.com"><br><img src="http://cyborg.namedecoder.com/webimages ... ng"<br></a>
-
- Outpost bitch
- Posts: 559
- Joined: Wed Mar 30, 2005 6:45 am
is there any possibility to change wyvern drops with NpcItem.cfg?
I tried.. but it didn't affect at all:-/
I tried.. but it didn't affect at all:-/
<img src='http://helbreath.pri.ee/userbars/hbest-gamemaster2.jpg' border='0' alt='user posted image' /> <img src='http://helbreath.pri.ee/userbars/hbsoccer-owner.jpg' border='0' alt='user posted image' /> <img src='http://helbreath.pri.ee/userbars/scorpa-rider.jpg' border='0' alt='user posted image' /> <img src='http://helbreath.pri.ee/userbars/logout-master.jpg' border='0' alt='user posted image' /> <br>.<br>................................Ego sum Rage, flagellum Dei!<br><br>The problem with America is stupidity. I'm not saying there should be a capital punishment for stupidity, but why don't we just take the safety labels off of everything and let the problem solve itself? (bash.org)
no....is there any possibility to change wyvern drops with NpcItem.cfg?
(unless you use the sever compiled by Hankzar, he used a config file for drops...)
_\_ _<br> / , \__/ . \ Admin of Equilibrium Project<br> II\ \___ . O<br> III \_/ \ _ / <a href='http://www.equiprojet.com' target='_blank'>http://www.equiprojet.com</a><br> II I¯I
Dunno but change this line around...it may reduce the gold that wyverm/firewyvern/abddon drops.
Also this may help trying to change the amount of drops they drop when die...
Code: Select all
if( iItemID == 0 && iProb == 100 ) iItemID = 90; // Gold
Code: Select all
case 66: // Wyvern
bGetMultipleItemNamesWhenDeleteNpc( m_pNpcList[iNpcH]->m_sType, // NPC Type
50,
5,
15,
m_pNpcList[iNpcH]->m_sX,
m_pNpcList[iNpcH]->m_sY,
DEF_ITEMSPREAD_FIXED,
4,
iItemIDs,
ItemPositions,
&iNumItem);
break;
case 73: // Fire-Wyvern
bGetMultipleItemNamesWhenDeleteNpc( m_pNpcList[iNpcH]->m_sType, // NPC Type
50,
5,
15,
m_pNpcList[iNpcH]->m_sX,
m_pNpcList[iNpcH]->m_sY,
2,
4,
iItemIDs,
ItemPositions,
&iNumItem);
break;
case 81:
bGetMultipleItemNamesWhenDeleteNpc( m_pNpcList[iNpcH]->m_sType, // NPC Type
50,
12,
20,
m_pNpcList[iNpcH]->m_sX,
m_pNpcList[iNpcH]->m_sY,
DEF_ITEMSPREAD_FIXED,
65,
iItemIDs,
ItemPositions,
&iNumItem);
break;
}
QUOTE (ADDKiD @ Dec 1 2006, 4:01 PM) <br>You guys make me laugh alot, half the shit I say, is bullshit...<br><br><img src='http://img485.imageshack.us/img485/492/banssig1ng.gif' border='0' alt='user posted image' /><br><br><b>I see no changes at all, wake up in the morning and ask myself...<br>Is life worth living? Should I blast myself?</b><br><br><b><a href='http://2paclegacy.com' target='_blank'>2PacLegacy.com</a></b>