[REQUEST] Card Remover (Lazy Edition)

karazu

New member
Messages
1,115
Points
0
Gooday! Can I request a Card remover that doesn't require an item to remove the cards?
My Idea is like, When u click the NPC it will directly ask you What armor and ask to remove the card or not.

Click NPC

Dialogue

Do u want to remove some cards?
NEXT

Choose Armor

Valkyrie ArmorValkyrie ManteauValkyrie ShoesValkyrie Shield
If the armor is click/choose
The NPC will now remove the card.


Thank you very much,

 
Last edited by a moderator:
Code:
prontera,165,185,4    script    Card Remover    100,{    disable_items;    mes "["+strnpcinfo(1)+"]";    mes "Do u want to remove some cards?";    if(select("Remove Card","Close") == 2 ) close;        mes " ","Choose an item.";        setarray .@position$[1], "Head","Body","Left hand","Right hand","Robe","Shoes","Accessory 1","Accessory 2","Head 2","Head 3";        set .@menu$,"";        for( set .@i,1; .@i <= 10; set .@i,.@i+1 ) {            if( getequipisequiped(.@i) )                set .@menu$, .@menu$ + .@position$[.@i] + "-" + "[" + getequipname(.@i) + "]";                set .@menu$, .@menu$ + ":";        }        set .@part, select(.@menu$);        if( !getequipisequiped(.@part) ) {            mes " ","Check Equip.";            close;        }        if(getequipcardcnt(.@part) == 0) {            mes " ","No cards compounded.";            close;        }        successremovecards .@part;        close;}
 
Back
Top