Hello i need hourly reward only in maintown ex only in prontera .
someone can help me to set that ?
This is script i used.
Thank you
prontera,100,100,5 script hourlypoints 139,8,11,{
end;
OnTouch:
dispbottom "Stay here to get afk hourly points.";
attachnpctimer();
startnpctimer();
end;
OnTimer10000:
getmapxy(.@map$,.@x,.@y,0);
if( distance(.x,.y,.@x,.@y)<=11
&& .@map$==.map$ ) {
if( checkidle() ) {
getitem(12875,1);
dispbottom "Thank you for always stay near me";
set @consecutive_hour, @consecutive_hour + 1;
//Check for 1 hours consecutive
if(@consecutive_hour == 1) {
set @consecutive_hour,0;
getitem(12875,1);
dispbottom "Thank you for always stay near me";
}
}
}
attachnpctimer();
initnpctimer();
end;
OnInit:
getmapxy(.map$,.x,.y,1);
set .cpoint_amt, 50; //Points gained for consecutive time online.
set .point_amt, 10; //Normal points gained.
}