OMG, help me - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: OMG, help me (
/showthread.php?tid=175622)
OMG, help me -
eXtr1kE - 10.09.2010
stock TBan(pID,bTime)
{
new pName[MAX_PLAYER_NAME];
GetPlayerName(pID,pName,sizeof(pName));
format(tbDir,sizeof(tbDir),foxBanFile,pName);
dini_Create(tbDir);
dini_IntSet(tbDir,"fbTime",Time());
dini_IntSet(tbDir,"fbDuration",bTime*60);
Kick(pID);
}
I want to not be on the minutes, but days.
Re: OMG, help me -
Hiddos - 10.09.2010
pawn Код:
dini_IntSet(tbDir,"fbDuration",bTime*1440);
Minutes converted to days.