You can try this one..
Try it, i just made the script without testing it. haha 😝😅
prontera,90,110,4 script Daily Supply 4_M_MAYOR,{
if(#DailySupply){
message strcharinfo(0), "Supply already claimed.";
end;
}
else if(!#DailySupply){
getitem 505,1;
getitem 506,1;
getitem 507,1;
getitem 508,1;
set #DailySupply,1;
end;
}
}
- script DailySupplyReseter FAKE_NPC,{
OnClock1159:
announce "[ Daily Supply ] : You can now claim your Daily Supply Now. Thank You!",bc_all | bc_blue;
while(1){
query_sql("SELECT `account_id` from `char` WHERE `online` = 1",.@GetAccID);
attachrid(.@GetAccID);
set #DailySupply,0;
detachrid;
break;
}
end;
}