resurection wannabee...
Ya, i can cast it, even have a cool effect, but doesnt revive the person, even with the resurection wand wont revive the person..... B)
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>
-
- Loyal fan
- Posts: 235
- Joined: Mon Jul 12, 2004 9:36 am
yea tahts my prob too.. everything works except that the person is not revived.. or do u need to cast it outside of town? like ice storm maybe? in town they cant be cast..
- Tbone<br><a href="http://cyborg.namedecoder.com"><br><img src="http://cyborg.namedecoder.com/webimages ... ng"<br></a>
I found the problem!!! some stupid configering person set resorect to the wrong type!
Was:
Need to be: (notice the 32 instead of the 24?)
How i found out?
all the types are defined in the magic.h file
Was:
Code: Select all
magic = 94 Resurrection 24 0 0 90 2 2 0 0 0 7 7 20 0 0 0 123 -1 1 2
Code: Select all
magic = 94 Resurrection 32 0 0 90 2 2 0 0 0 7 7 20 0 0 0 123 -1 1 2
Code: Select all
#define DEF_MAGICTYPE_DAMAGE_SPOT 1
#define DEF_MAGICTYPE_HPUP_SPOT 2
#define DEF_MAGICTYPE_DAMAGE_AREA 3
#define DEF_MAGICTYPE_SPDOWN_SPOT 4
#define DEF_MAGICTYPE_SPDOWN_AREA 5
#define DEF_MAGICTYPE_SPUP_SPOT 6
#define DEF_MAGICTYPE_SPUP_AREA 7
#define DEF_MAGICTYPE_TELEPORT 8
#define DEF_MAGICTYPE_SUMMON 9
#define DEF_MAGICTYPE_CREATE 10
#define DEF_MAGICTYPE_PROTECT 11
#define DEF_MAGICTYPE_HOLDOBJECT 12
#define DEF_MAGICTYPE_INVISIBILITY 13
#define DEF_MAGICTYPE_CREATE_DYNAMIC 14
#define DEF_MAGICTYPE_POSSESSION 15
#define DEF_MAGICTYPE_CONFUSE 16
#define DEF_MAGICTYPE_POISON 17
#define DEF_MAGICTYPE_BERSERK 18
#define DEF_MAGICTYPE_DAMAGE_LINEAR 19
#define DEF_MAGICTYPE_POLYMORPH 20
#define DEF_MAGICTYPE_DAMAGE_AREA_NOSPOT 21
#define DEF_MAGICTYPE_TREMOR 22 // ¶ARÇ LÓLsRÇ Árµz
#define DEF_MAGICTYPE_ICE 23 // l󸮴°Í
#define DEF_MAGICTYPE_DAMAGE_SPOT_SPDOWN 25
#define DEF_MAGICTYPE_ICE_LINEAR 26
#define DEF_MAGICTYPE_DAMAGE_AREA_NOSPOT_SPDOWN 27
#define DEF_MAGICTYPE_DAMAGE_AREA_ARMOR_BREAK 28
#define DEF_MAGICTYPE_CANCELLATION 29
#define DEF_MAGICTYPE_DAMAGE_LINEAR_SPDOWN 30
#define DEF_MAGICTYPE_RESURRECTION 32 // Ressurect
<!--QuoteBegin--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>QUOTE</b> </td></tr><tr><td id='QUOTE'><!--QuoteEBegin-->Human knowleag belongs to THE WORLD<!--QuoteEnd--></td></tr></table><div class='signature'><!--QuoteEEnd--><br>So i highly dislike people who keep to their proud selfs... thats why i wanna share everything i got with you guys 

damn u are fking good lol read my email B)
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>
with this one i coudnlt make it work, the effect were good, nice graphiclocobans wrote: magic = 94 Resurrection 32 0 0 90 2 2 0 0 0 7 7 20 0 0 0 123 -1 1 2

Pd: i was using the resurection wand and still iddint worked
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>
ok here is what you need:
i your right hand: item number 865 or 866 (so change ur wand numbers)
Special Ability Time must = 0
Special Ability Enabled must be= FALSE
Can't be a admin or on the enemy side
Note: GMs can use the /revive command
i your right hand: item number 865 or 866 (so change ur wand numbers)
Special Ability Time must = 0
Special Ability Enabled must be= FALSE
Can't be a admin or on the enemy side
Code: Select all
if (m_pMagicConfigList[sType]->m_sType == DEF_MAGICTYPE_RESURRECTION) {
//Check if player has resurrection wand
sItemIndex = m_pClientList[iClientH]->m_sItemEquipmentStatus[DEF_EQUIPPOS_RHAND];
// Resurrection wand(MS.10) or Resurrection wand(MS.20)
if ( m_pClientList[iClientH]->m_pItemList[sItemIndex]->m_cEquipPos == NULL ||
((m_pClientList[iClientH]->m_pItemList[sItemIndex]->m_sIDnum != 865) && (m_pClientList[iClientH]->m_pItemList[sItemIndex]->m_sIDnum != 866))) {
return;
}
if (m_pClientList[iClientH] != NULL && m_pClientList[iClientH]->m_iSpecialAbilityTime == 0 &&
m_pClientList[iClientH]->m_bIsSpecialAbilityEnabled == FALSE) {
<!--QuoteBegin--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>QUOTE</b> </td></tr><tr><td id='QUOTE'><!--QuoteEBegin-->Human knowleag belongs to THE WORLD<!--QuoteEnd--></td></tr></table><div class='signature'><!--QuoteEEnd--><br>So i highly dislike people who keep to their proud selfs... thats why i wanna share everything i got with you guys 

Item = 916 ResurWand(MS.10) 1 8 13 2 4 0 10 0 0 2400 0 17 3 2500 1000 38 3 130 0 0 0 21 8 0
Item = 917 ResurWand(MS.20) 1 8 13 2 4 0 20 0 0 2400 0 17 3 2500 1000 38 3 140 0 0 0 21 8 0
guess that means u must code HGserver to change those numbers to ours?........put that into the request i made on email B)
Item = 917 ResurWand(MS.20) 1 8 13 2 4 0 20 0 0 2400 0 17 3 2500 1000 38 3 140 0 0 0 21 8 0
guess that means u must code HGserver to change those numbers to ours?........put that into the request i made on email B)
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>
-
- Regular
- Posts: 58
- Joined: Tue Mar 30, 2004 3:20 am
Can't you just change the other item to that number and change that number to that item??? it'll be much easyer...
as far as i know, version 2.14+ (hbx files)
as far as i know, version 2.14+ (hbx files)
<!--QuoteBegin--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>QUOTE</b> </td></tr><tr><td id='QUOTE'><!--QuoteEBegin-->Human knowleag belongs to THE WORLD<!--QuoteEnd--></td></tr></table><div class='signature'><!--QuoteEEnd--><br>So i highly dislike people who keep to their proud selfs... thats why i wanna share everything i got with you guys 


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>
i know how to fix it dont worry

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>
cool if you instead of saying could post it too

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>
i did everythin as you posted here and still dont work even with resurrection wand...not workin... :unsure:
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>