Question about SetTimer
#1

How to do a SetTimer to give each point a minute?
Reply
#2

Could you explain it a little bit more? I have no idea what you could mean.
Do you want to give a player a point for every minute he's online?
Reply
#3

Код:
public OnGameModeInit()
{
    SetTimer("Add", 60000, true);
    return 1;
}
forward Add();
public Add()
{
    Points++;
    return 1;
}
Something like that?
Reply
#4

Add code after OnGameModeInit and crashed my program pawno
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)