Thank you Greyford, i will try and report here soon.
rand(4001,4453) 4001 - 4453 is all normal card ID yet?
prontera,155,86,4 script vnRO 751,{
if (.game){
mes .npcname$;
if(countitem(.cardid) < 1){
mes "You don't have my ^ff0000"+getitemname(.cardid)+"^000000!!";
close;
end;
}
mes "Oh you've brought me my ^ff0000"+getitemname(.cardid)+"^000000.";
mes "Can I have it please?";
if(select("Yes:No")==2){
next;
mes .npcname$;
mes "Aww..";
close;
end;
}
next;
mes .npcname$;
mes "Woooow, thank you! Here are your "+.pointamount+" Poring coin(s)!";
delitem .cardid,1;
getitem 7539,.pointamount; //get poring coin
// set CardEventPoints, CardEventPoints+.pointamount;
// set .game,0;
close;
end;
}
end;
L_start:
OnMinute24:
set .cardid, rand(4001,4453); //card id ranges from 4001 to 4453
for(set .@i, 0; .@i < getarraysize(.blockedcards); set .@i, .@i+1){
if (.blockedcards[.@i] == .cardid){
goto L_start;
end;
}
}
set .pointamount, rand(1,3);
set .game,1;
announce .npcname$+": I need a "+getitemname(.cardid)+" for "+.pointamount+" Poring Coins .",0;
end;
OnInit:
set .pointamount, 0;
set .cardid, 0;
set .npcname$,"vnRO"; //npc name
setarray .blockedcards[0],0; //add cards you don't want to happen here
set .game,0;
end;
}
This is my script i made follow you, it worked perfect.
I changed
- get point to get Poring Coin.
- Will unlimit exchange card to coin times.
- I still need set .game,0; OnInit?
Thank you for support!