Jump to content
  • 0

R>Zeny to Proof of Donation


GM Winter

Question


  • Group:  Members
  • Topic Count:  176
  • Topics Per Day:  0.14
  • Content Count:  666
  • Reputation:   9
  • Joined:  12/04/20
  • Last Seen:  

hello i would like to ask is there any bug free zeny converter to pods thanks in advance

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

  • Group:  Donators
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  23
  • Reputation:   2
  • Joined:  10/31/12
  • Last Seen:  

its pretty easy to code your own zeny to pod converter..

try this
 

prontera,150,150,4	script	Zeny To Pods	E_PORING,{
	
	.@total_pods_can_get = zeny / .pods_price;
	mes "[Zeny to pods]";
	mes "("+callfunc("F_InsertComma",.pods_price)+"z) for 1 pod";
	mes "You can get ("+.@total_pods_can_get+") pods with your current zeny";
	next;
	switch(select("Zeny to Pods:Cancel")){
		case 1:
			if(.@total_pods_can_get){
				input(.@convert,0,.@total_pods_can_get);
				if(.@convert > .@total_pods_can_get){
					mes "Sorry but you cannot convert that many PODS with your current zeny";
					close;
				}else if(!.@convert){
					mes "Sorry but you do not input any amount";
					close;
				}else if(!checkweight(7179,.@convert)){
					mes "Sorry but you cannot hold that many PODS with your current inventory weight";
					close;
				}else{
					mes "You want to convert your zeny to "+.@convert+" PODS Right?";
					switch(select("Yes:No")){
						case 1:
							set zeny,zeny-(.@convert * .pods_price);
							getitem 7179,.@convert;
							mes "Thank you for converting ("+.@convert+") PODS ";
							close;
						default:
							close;
					}
					close;
				}
			}else{
				mes "Sorry but you do not have enough zeny to convert to pods";
				close;
			}
			
		default:
			close;
	}
OnInit:
	set .pods_price,100000;
	end;
}

 

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