//--------------------------------------------------------
//- ._._____ _ _ _ ___ __ __ -
//- | |____ | / \ | | | |_ _| \/ | -
//- | | |_ | / _ \ | |_| || || |\/| | -
//- ___| |___| |/ ___ \| _ || || | | | -
//- |_____|_____/_/ \_\_| |_|___|_| |_| -
//- www.forum.cronus-emulator.com -
//--------------------------------------------------------
prontera,143,176,5 script Velho Ferreiro 813,{
//---------------------------------------------------------------------
//--- Nome do NPC.
set .n$,"[^FF0000 "+strnpcinfo(1)+" ^000000]";
//--- Level da Conta VIP.
set .@vip,100;
//---------------------------------------------------------------------
show .n$;
show "Olá, eu sou um showtre Ferreiro e posso refinar seus equipamentos +10.";
show " ";
show "- ^FF0000Caso você seja um jogador VIP poderá ter seus equipamentos refinados até +20^000000 !";
next;
menu "Refinar Equipamentos",refinar,"Cancelar",close;
refinar:
if (getgmlevel() < .@vip){
if ( getequiprefinerycnt(EQI_HEAD_TOP) > 0 || getequiprefinerycnt(EQI_ARMOR) > 0 || getequiprefinerycnt(EQI_HAND_L) > 0 || getequiprefinerycnt(EQI_HAND_R) > 0 || getequiprefinerycnt(EQI_GARMENT) > 0 || getequiprefinerycnt(EQI_SHOES) > 0 || getequiprefinerycnt(EQI_ACC_R) > 0 || getequiprefinerycnt(EQI_ACC_L) > 0 || getequiprefinerycnt(EQI_HEAD_MID) > 0 || getequiprefinerycnt(EQI_HEAD_LOW) > 0) {
show .n$;
show "Sinto muito, mas eu só consigo refinar Equipamentos +0 até +10...";
close;
}
show .n$;
show "Certo, vamos lá !";
next;
atcommand "@refine 0 10";
show .n$;
show "Clang, clang!!!";
next;
show .n$;
show "Pronto, seus equipamentos foram refinados até +10 com sucesso !";
close;
}
if ( getequiprefinerycnt(EQI_HEAD_TOP) > 0 || getequiprefinerycnt(EQI_ARMOR) > 0 || getequiprefinerycnt(EQI_HAND_L) > 0 || getequiprefinerycnt(EQI_HAND_R) > 0 || getequiprefinerycnt(EQI_GARMENT) > 0 || getequiprefinerycnt(EQI_SHOES) > 0 || getequiprefinerycnt(EQI_ACC_R) > 0 || getequiprefinerycnt(EQI_ACC_L) > 0 || getequiprefinerycnt(EQI_HEAD_MID) > 0 || getequiprefinerycnt(EQI_HEAD_LOW) > 0) {
show .n$;
show "Sinto muito, mas eu só consigo refinar Equipamentos +0 até +20...";
close;
}
show .n$;
show "Parece que você é um jogador VIP... Certo, vamos lá !";
next;
atcommand "@refine 0 20";
show .n$;
show "Clang, clang!!!";
next;
show .n$;
show "Pronto, seus equipamentos foram refinados até +20 com sucesso !";
close;
close:
show .n$;
show "Ok, volte quando precisar de meus serviços...";
close;
}
}