prontera,142,168,5 script Costume Enchanter 878,{
setarray .@avail[0],30115,30123,30134;
set .@part, EQI_COSTUME_HEAD_TOP;
set .@equip_id, getequipid(.@part);
if (!getequipisequiped(.@part)) {
mes "[ ^0055FFDriller^000000 ]";
mes "I'm sorry but you don't have any costume that I can inspect for enchantment.";
close;
}
if (getequipcardid(.@part,3) > 0) {
mes "[ ^0055FFDriller^000000 ]";
mes "This item has already been enchanted. I can't work on this as it is against the rules.";
close;
}
for(set .@i,3; .@i>=0; set .@i,.@i-1) {
if ( .@equip_id!=.@avail[.@i] ) {
mes "Cannot Enchant";
}
}
if(select("Cancel:Continue") == 1) {
mes "[ ^0055FFDriller^000000 ]";
mes "Bye.";
close;
}
setarray .@enc[0],4795,4796,4797;
set .@enchant, .@enc[rand(0,2)];
delequip .@part;
getitem2 .@equip_id,1,1,0,0,0,0,0,.@enchant;
}
Heres my costume enchanter how can I check if the .@equip_id is not in the array?
anyone please give me an idea i use for statement but it seems that it wont work XD