Jump to content

  •  

markblank05

Member Since 12 May 2015
Offline Last Active May 24 2015 12:49 AM
-----

Topics I've Started

failed assertion and case sensitive issue

24 May 2015 - 12:54 AM

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

 

Attached File  err.png   1.16MB   26 downloads

 

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


How to remove channel map text every time I change map?

24 May 2015 - 12:11 AM

How to remove channel map text every time I change map? There is always You are now in the '#map' channel for 'prontera'. How to remove this?


how to tell if equipped weapon is two handed?

23 May 2015 - 04:59 AM

hi, i'm trying to make my custom enchanter and come across a bug, the problem is my script same menu for shield when equipping two handed weapon, how to get if equip item is two handed or one handed. thanks


how to disable the long list of command every login

23 May 2015 - 03:35 AM

hi, how can i remove this long line of list that are shown in this screnshot.

 

Attached File  a.jpg   234.31K   13 downloads


how to get the card id in selected item?

22 May 2015 - 01:45 PM

hi, im trying to make my first npc and i cant figure out how can i get the card compounded in the item that i select. here is my script

 

prontera,147,171,5	script	Enchanter#	50,{	disable_items;	mes "[Enchanter]";	next;		setarray .@position$[1], "Head", "Body", "Left hand", "Right hand", "Robe", "Shoes", "Accessory 1", "Accessory 2", "Head 2", "Head 3";	set .@menu$, "";		for (set .@i, 1; .@i <= 10; set .@i,.@i + 1)	{		if(getequipisequiped(.@i))		{			set .@menu$, .@menu$ + .@position$[.@i] + " - " + "[" + getequipname(.@i) + "]";			set .@equipped, 1;		}		set .@menu$, .@menu$ + ":";	}		set .@part, select(.@menu$);	set .@equip_id, getequipid(.@part);	set .@equip_r, getequiprefinerycnt(.@part);		mes "Item ID: " + .@equip_id;	mes "Refine level: " + .@equip_r;	mes "Slot 1: ";	mes "Slot 2: ";	mes "Slot 3: ";	mes "Slot 4: ";			close;}

 

how can i get the card id in my selected items? thanks



nvm, solve