Issue information

Issue ID
#3933
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Dec 13, 2009 4:14
Last Post
Hercules Elf Bot
Mar 5, 2012 17:31
Confirmation
N/A

Hercules Elf Bot - Dec 13, 2009 4:14

Originally posted by [b]NoH[/b]
http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=3933

This is a repost from before the roll-back.

A few cash-skills are flaged as regular skills, and therefore can be learnt with @allskills, which causes client issues (crashes since there is no .spr for them). Fix, replace (in skill_db):

CODE
// Additional Skill (??)
//688,0,0,0,0,0,0,9,0,no,0,0,0,none,0,        GM_SANDMAN,GM Sandman
689,0,6,4,0,0x3,-1,10,1,yes,0,0,0,magic,0,    CASH_BLESSING,Party Blessing
690,0,6,4,0,0x3,-1,10,1,yes,0,0,0,magic,0,    CASH_INCAGI,Party Increase AGI
691,0,6,4,0,0x3,-1,5,1,yes,0,0,0,magic,0,    CASH_ASSUMPTIO,Party Assumptio
//692,0,0,0,0,0,0,9,0,no,0,0,0,none,0,        ALL_CATCRY,Cat Cry
//693,0,0,0,0,0,0,9,0,no,0,0,0,none,0,        ALL_PARTYFLEE,Party Flee
//694,0,0,0,0,0,0,9,0,no,0,0,0,none,0,        ALL_ANGEL_PROTECT,Angel's Protection
//695,0,0,0,0,0,0,9,0,no,0,0,0,none,0,        ALL_DREAM_SUMMERNIGHT,Summer Night Dream
//696,0,0,0,0,0,0,9,0,no,0,0,0,none,0,        NPC_CHANGEUNDEAD2,Change Undead
//697,9,6,4,0,0x1,0,1,1,yes,0,0x2,0,magic,0,    ALL_REVERSEORCISH,Reverse Orcish
698,0,6,4,0,0x01,0,1,1,no,0,0,0,none,0,        ALL_WEWISH,Christmas Carol
//699,0,0,0,0,0,0,9,0,no,0,0,0,none,0,        ALL_SONKRAN,ALL_SONKRAN


with:

CODE
// Additional Skill (??)
//688,0,0,0,0,0,0,9,0,no,0,0x2,0,none,0,        GM_SANDMAN,GM Sandman
689,0,6,4,0,0x3,-1,10,1,yes,0,0x2,0,magic,0,    CASH_BLESSING,Party Blessing
690,0,6,4,0,0x3,-1,10,1,yes,0,0x2,0,magic,0,    CASH_INCAGI,Party Increase AGI
691,0,6,4,0,0x3,-1,5,1,yes,0,0x2,0,magic,0,    CASH_ASSUMPTIO,Party Assumptio
//692,0,0,0,0,0,0,9,0,no,0,0x2,0,none,0,        ALL_CATCRY,Cat Cry
//693,0,0,0,0,0,0,9,0,no,0,0x2,0,none,0,        ALL_PARTYFLEE,Party Flee
//694,0,0,0,0,0,0,9,0,no,0,0x2,0,none,0,        ALL_ANGEL_PROTECT,Angel's Protection
//695,0,0,0,0,0,0,9,0,no,0,0x2,0,none,0,        ALL_DREAM_SUMMERNIGHT,Summer Night Dream
//696,0,0,0,0,0,0,9,0,no,0,0x2,0,none,0,        NPC_CHANGEUNDEAD2,Change Undead
//697,9,6,4,0,0x1,0,1,1,yes,0,0x2,0,magic,0,    ALL_REVERSEORCISH,Reverse Orcish
698,0,6,4,0,0x01,0,1,1,no,0,0,0,none,0,        ALL_WEWISH,Christmas Carol
//699,0,0,0,0,0,0,9,0,no,0,0x2,0,none,0,        ALL_SONKRAN,ALL_SONKRAN


This post has been edited by NoHealing: Dec 16 2009, 03:04 PM