Jump to content
  • 0

seal item script help to make it tradeable


AinsLord

Question


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

so i found this script here

-	script	asdfasdf	-1,{
	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 = 503;
	.req_itm = 501;
	.req_amt = 1000;
	.get_itm = 502;
end;
}

is there some way to make this script like read the item that is account bounded

or make this like i can add multiple items 

what i supposedly planning is like

an item is account bounded then character will go to the NPC

and the NPC will ask certain items to revert it to box and be traded

since account bound items are not tradeable

thanks in advance

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

3 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.00
  • Content Count:  292
  • Reputation:   46
  • Joined:  10/30/12
  • Last Seen:  

Just make the item box with bound item. Then just make the script change the same item with the box with the same bound item.

I found the same question you answer in here:

Edited by mrfizi
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  90
  • Reputation:   34
  • Joined:  10/01/18
  • Last Seen:  

8 hours ago, AinsLord said:

so i found this script here

-	script	asdfasdf	-1,{
	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 = 503;
	.req_itm = 501;
	.req_amt = 1000;
	.get_itm = 502;
end;
}

is there some way to make this script like read the item that is account bounded

or make this like i can add multiple items 

what i supposedly planning is like

an item is account bounded then character will go to the NPC

and the NPC will ask certain items to revert it to box and be traded

since account bound items are not tradeable

thanks in advance


Hey there! i tried working this request last night of course made from scratch, but not sure if this is enough.. I could think of possibly abused in this bound feature(s).
I made some PREVIEW if this what you wanted:
https://streamable.com/zdx9fq

This requires: delitemidx
I added some Blacklist Features so you could block some item(s) you want.

  • Upvote 1
Link to comment
Share on other sites

  • 0

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

15 hours ago, Royr said:


Hey there! i tried working this request last night of course made from scratch, but not sure if this is enough.. I could think of possibly abused in this bound feature(s).
I made some PREVIEW if this what you wanted:
https://streamable.com/zdx9fq

This requires: delitemidx
I added some Blacklist Features so you could block some item(s) you want.

yea somehow similar to this one and i cant find any sad

the one that i found is like bound item ID then the req then the output box

item inside the box is like listed in the item restrict txt file

a bit hassle if one by one adding the item

its like will require certain item/zeny before returning back as a box

 

and

for 

23 hours ago, mrfizi said:

Just make the item box with bound item. Then just make the script change the same item with the box with the same bound item.

I found the same question you answer in here:

yea thats what i actually done the problem is the script i provided was single item changer only

that means i can only change 1 bound item

Edited by AinsLord
add more info
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...