rathena/npc/re/merchants/clothing_buff_removal.txt
Lemongrass3110 8ed8fd1a9d
Added Clothing Effect Removal Service (#3793)
Fixes #3789

Thanks to @Everade and @Balferian
2019-01-05 14:35:27 +01:00

34 lines
1.2 KiB
Plaintext

//===== rAthena Script =======================================
//= Clothing Effect Removal Service
//===== Description: =========================================
//= Service to remove clothing effects like Xmas, Wedding, ...
//===== Changelog: ===========================================
//= 1.0 Initial version. [Balferian, Everade, Lemongrass]
//============================================================
prontera,80,106,5 script Clothing Effect Removal Service 4_EP16_COOK2,{
mes "[Derek Shot]";
mes "Are you unable to participate in battle because of clothing buffs? It has to be annoying.";
next;
mes "[Derek Shot]";
mes "While it looks good on you, it can also get really annoying. I can get rid of it with a single hand gesture!! I will arrange it neatly. If you are ready, choose your option!";
next;
switch( select( "Keep it", "Release it immediately" ) ){
case 1:
mes "[Derek Shot]";
mes "Come back to me, if you change your mind.";
close;
case 2:
sleep2 500;
specialeffect2 EF_SPHERE;
sleep2 500;
specialeffect2 EF_SPHERE;
sleep2 500;
specialeffect2 EF_SPHERE;
mes "[Derek Shot]";
mes "Removal has been completed. Make sure you can move freely now.";
atcommand "@changedress";
close;
}
}