conf/battle/skill.conf#L21
// Does the delay time depend on the caster's DEX and/or AGI? (Note 1)
// Note: On Official servers, neither Dex nor Agi affect delay time
delay_dependon_dex: no
delay_dependon_agi: no
mes "Hit 'Cancel' Buton";
if( prompt( "Continue","Close" ) == 2 ){
mes "It's Closed now.";
}else{
mes "Wew..it CONTINUED.";
}
close;
prompt
'prompt' works almost the same as select, except that when a character clicks
the Cancel button, this function will return 255 instead.
as far as i know .... only eAmod have these type of "race" system ... eAthena, rAthena, Hercules doesnt have this since this is not the official stuff from kRO ...
and..i dont think much people will help you develope this for free since this would required a large amount of source mod, i think the best choices you currently have is just looking for some expert to help you do the source mod.
you can play with this mapflag
mapname mapflag autotrade
then..
conf/battle/misc.conf#L99
// Allow autotrade only in maps with autotrade flag?
// Set this to "no" to allow autotrade where no "autotrade" mapflag is set.
// Set this to "yes" to only allow autotrade on maps with "autotrade" mapflag.
at_mapflag: no
if( !.@equipment_count ){
message strcharinfo(0),"Sorry, but you didnt have equipment that refined between "+.@arg[1]+" ~ "+.@arg[2]+" for refine.";
end; // <---- ADD THIS
}