failed assertion and case sensitive issue

markblank05

New member
Messages
17
Points
0
Hi, I just recently move to hercules from rathena and I have this error when using some skill. 

err.png

it says, " failed assertion", "srcmapskill.c:179: 's_lv >0' in function unknow"

and my another problem is using @commands with case sensitive, for example when i used @item poring_card, it will not work, it should be @item Poring_Card. How to fix this? 

thanks

 
Hi, I just recently move to hercules from rathena and I have this error when using some skill. 

attachicon.gif
err.png

it says, " failed assertion", "srcmapskill.c:179: 's_lv >0' in function unknow"

and my another problem is using @commands with case sensitive, for example when i used @item poring_card, it will not work, it should be @item Poring_Card. How to fix this? 

thanks
for the case sensitive find this line in trunk/conf/battle/misc.conf

// Whether AegisName and SpriteName lookups are case sensitive

// Default: yes (as in official servers)
// When this is set to yes, item and monster lookups through atcommands and
//   script commands will match AegisNames and SpriteNames only when the case
//   matches. Display name lookups are not affected by this setting.
// Example: Given the two items:
// -  { Id: 553,  AegisName: "Bun",  Name: "Bao" }
// -  { Id: 6115, AegisName: "Bun_", Name: "Bun" }
// query       when 'yes'    when 'no'
// @item bun   # 6115        # 553
// @item Bun   # 553         # 553
// @item Bao   # 553         # 553
// @item Bun_  # 6115        # 6115
case_sensitive_aegisnames: yes
 
change to :
case_sensitive_aegisnames: no
 
and for the first error you can just ignore it and wait for devs to fix it, or if you are able to tell exactly which skills/action you did in order to reach the error, post them here

 
Back
Top