25.08.2011, 02:56
I suggest taking a look at this.
GetTime
Also, For the Men working, i dont know if your using an Enum or anything, but i would do it like this, [Related To My Script]
Note: This is for my server, some things will need to be changed for your server.
GetTime
Also, For the Men working, i dont know if your using an Enum or anything, but i would do it like this, [Related To My Script]
pawn Код:
if(PlayerInfo[playerid][pWorking] ==1)
{
SendClientMessage(playerid,COLOR_GREEN,"You Have Recieved Money For Working!");
GivePlayerMoney(playerid,1000);
}
if(PlayerInfo[playerid][pWorking] ==0)
{
SendClientMessage(playerid,COLOR_GREEN,"You Have Recieved Welfare Money!Get A Job!");
GivePlayerMoney(playerid,500);
}