cuddly-table-7819
03/24/2023, 8:25 PMc++
CMD:atmrob(playerid) {
if(AtmInfo[atmid][atmRobExausted] ???) {
format(string, sizeof(string), "This ATM is blocked to rob until: 07:33:00");
SendClientMessage(playerid, COLOR_LIGHTRED, string);
return 1;
}
AtmInfo[atmid][atmRobExausted] = ???;
}gorgeous-tomato-73021
03/24/2023, 8:55 PMgorgeous-tomato-73021
03/24/2023, 8:55 PMgorgeous-tomato-73021
03/24/2023, 8:55 PMclever-air-16091
03/24/2023, 9:29 PMcuddly-table-7819
03/24/2023, 11:02 PMcuddly-table-7819
03/24/2023, 11:02 PMcuddly-table-7819
03/24/2023, 11:03 PMnew timeExaustedSecs = 10 * 60 * 1000;
if(tickcount() - gPlayerAllowedTick[playerid] > timeExaustedSecs)
{
SendClientMessage(playerid, -1, "Works!");
gPlayerAllowedTick[playerid] = tickcount(); // Update the tick count with the latest time.
}
else
{
new str[128];
format(str, sizeof(str), "You can only use this command in 5 minutes and 12 seconds");
SendClientMessage(playerid, -1, str);
}gorgeous-tomato-73021
03/24/2023, 11:09 PMgorgeous-tomato-73021
03/24/2023, 11:09 PMcuddly-table-7819
03/25/2023, 7:53 AMformat(str, sizeof(str), "You can only use this command in 5 minutes and 12 seconds"); part?gorgeous-tomato-73021
03/25/2023, 3:24 PMgorgeous-tomato-73021
03/25/2023, 3:26 PMgorgeous-tomato-73021
03/25/2023, 3:26 PMsome-crayon-738
03/25/2023, 3:28 PMminutes = difference_in_seconds / 60; and seconds = difference_in_seconds % 60;gorgeous-tomato-73021
03/25/2023, 3:30 PMgorgeous-tomato-73021
03/25/2023, 3:30 PMc
returnDate( timestamp, _form=0 )
{
new year=1970, day=0, month=0, hourt=0, mins=0, sec=0;
new days_of_month[12] = { 31,28,31,30,31,30,31,31,30,31,30,31 };
new names_of_month[12][10] = {"January","February","March","April","May","June","July","August","September","October","November","December"};
new returnstring[32];
while(timestamp>31622400){
timestamp -= 31536000;
if ( ((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0) ) timestamp -= 86400;
year++;
}
if ( ((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0) )
days_of_month[1] = 29;
else
days_of_month[1] = 28;
while(timestamp>86400){
timestamp -= 86400, day++;
if(day==days_of_month[month]) day=0, month++;
}
while(timestamp>60){
timestamp -= 60, mins++;
if( mins == 60) mins=0, hourt++;
}
sec=timestamp;
switch( _form ){
case 1: format(returnstring, 31, "%02d/%02d/%d %02d:%02d:%02d", day+1, month+1, year, hourt, mins, sec);
case 2: format(returnstring, 31, "%s %02d, %d, %02d:%02d:%02d", names_of_month[month],day+1,year, hourt, mins, sec);
case 3: format(returnstring, 31, "%d %c%c%c %d, %02d:%02d", day+1,names_of_month[month][0],names_of_month[month][1],names_of_month[month][2], year,hourt,mins);
case 4: format(returnstring, 31, "%s %02d, %d", names_of_month[month],day+1,year);
default: format(returnstring, 31, "%02d/%02d/%d %02d:%02d:%02d", day+1, month+1, year, hourt, mins, sec);
}
return returnstring;
}gorgeous-tomato-73021
03/25/2023, 3:30 PM