Jump to content
  • 0

Q> Card Remover & Bound Equip/Card


cahadeyelo

Question


  • Group:  Members
  • Topic Count:  68
  • Topics Per Day:  0.02
  • Content Count:  168
  • Reputation:   1
  • Joined:  11/13/14
  • Last Seen:  

Why everytime we used the Card Remover, the compounded bound card will turned into non bounded?

prt_in,28,73,4	script	Wise Old Woman#0	78,{

	.@weight = 100 * Weight / MaxWeight;
	if (90 <= .@weight) {
	mes "[ Wise Old Woman ]";
	mes "You're currently at ^FF0000" + .@weight + "%^000000 of your maximum weight.";
	next;
	mes "[ Wise Old Woman ]";
	mes "Please remove some items before claiming it.";
	close; }
	getinventorylist;
	if( @inventorylist_count > 50 ){
	mes "[ Wise Old Woman ]";
	mes "Your inventory slot is getting full, please remove some items before claiming it.";
	close; }
	mes "[ Wise Old Woman ]";
	mes "Okay I'm going to remove the card(s) to your equipment now and you need a ^3355FFStar Crumb^000000, ^3355FFYellow Gemstone^000000 and ^3355FF100,000^000000z.";
	next;
	setarray .@indices[1], EQI_HEAD_TOP, EQI_ARMOR, EQI_HAND_L, EQI_HAND_R, EQI_GARMENT, EQI_SHOES, EQI_ACC_L, EQI_ACC_R, EQI_HEAD_MID, EQI_HEAD_LOW;
		for(set .@i,1; .@i<=10; set .@i,.@i+1) {
		if (getequipisequiped(.@indices[.@i])) {
			set .@menu$, .@menu$ + F_getpositionname(.@indices[.@i]) + " - [ " + getequipname(.@indices[.@i]) + " ]";
			set .@equipped,1;
		}
		set .@menu$, .@menu$ + ":";
	}
		set .@part, .@indices[ select(.@menu$) ];
		if(!getequipisequiped(.@part)) {
			mes "[ Wise Old Woman ]";
			mes "Young one... Your not wearing anything there that I can remove cards from.";
			close;
		}
		if(getequipcardcnt(.@part) == 0) {
			mes "[ Wise Old Woman ]";
			mes "Young one... There's no card(s) compounded on that item. I can do nothing with it, I'm afraid.";
			close;
		}
		set .@cardcount,getequipcardcnt(.@part);
	if ( countitem(1000) < 1  || countitem(715) < 1 ) { close; }
	if ( Zeny < 100000) { close; }
	delitem 1000,1;
	delitem 715,1;
	set Zeny,Zeny - 100000;
	successremovecards .@part;
	end;
}
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  81
  • Topics Per Day:  0.02
  • Content Count:  1654
  • Reputation:   583
  • Joined:  08/09/12
  • Last Seen:  

There's no bound card, when a bound card inserted into an equipment, it lose its bound property.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...