Jump to content
  • 0

bound items that can be turn to a box


AinsLord

Question


  • Group:  Members
  • Topic Count:  257
  • Topics Per Day:  0.08
  • Content Count:  737
  • Reputation:   18
  • Joined:  11/21/15
  • Last Seen:  

im just wondering if there is like an NPC/Script

that can turn the character bound item to

a like box to be traded

ex: bounded sword the player just need to talk to NPC and

the NPC will require certain amount of item to

make it like sealed box of sword

thanks in advance ❤️

i just found this script here

prontera,147,174,6	script	Test	620,{

	mes "[ Trade ]";
	mes "Need "+getitemname(.req_itm)+" x"+.req_amt;
	menu "Yes",-;
	if(countitem(.req_itm) < .req_amt || countitem(.bnd_itm) < 1){
		mes "No pods";
		mes "No card";
		close;
	}
	mes "Got pods";
	delitem .req_itm,.req_amt;
	getitem .get_itm,1;
	close;
OnInit:
	.bnd_itm = 1201;
	.req_itm = 501;
	.req_amt = 1;
	.get_itm = 502;
end;
}

how can i add like multiple item to this script

ty

Edited by AinsLord
add more info
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

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...