You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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;
}
}