Pet exchange coupon

daim

New member
Messages
130
Points
0
Hi there,

May i know how to utilise or use pet exchange coupon? such as succubus pet exchange coupon?

thanks

 
I guess make an npc that can exchange it for a pet? Dunno, maybe there is already one in the game.

Code:
prontera,x,y,z    script    Pet Exchange     4_F_NPC,{
.@name$ = "[Pet Exchange]";
 
if (countitem (6116) >= 1) {
mes .@name$;
mes "Would you like to exchange your coupon for a Succubus?";
next;
.@menu = select("Yes:No);
switch(.@menu) {
case 1:
delitem 6116,1;
getitem 9055,1;
close;
 
case 2:
close;
}
 
else {
end;
}
 
}
 
Last edited by a moderator:
Back
Top