prontera,155,155,5 script Cornfarmer 4_CORN,{
if (BaseJob == Job_Gunslinger) {
if (CORNCOOLDOWN > gettimetick(2)){
mes "you need to wait 1 hour to get one more corn";
close;
}
getitem 26001,1;
CORNCOOLDOWN = gettimetick(2) + 3600; //3600 seconds! = 1 hour
mes "you got a corn!";
close;
}//gs only
mes "corn only for gunslingers sorry";
close;
}