06.04.2014, 09:23
What does the /work do ?
Payday of tickets:
Add this ontop of your script.
place this somewhere:
Put this under OnGameModeInIt
Ticket paydays are set to a payday per 5 minutes
Payday of tickets:
Add this ontop of your script.
pawn Код:
enum pDat
{
ticket,
}
new pdata[MAX_PLAYERS][pDat];
place this somewhere:
pawn Код:
forward Payday();
public Payday()
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
pdata[i][ticket] = 1;
}
}
pawn Код:
SetTimer("Payday",300000,1);