#1

Hello,
I need script that every 1 min setallthe players +1 score how can this be? it can be at timer?
Reply
#2

pawn Код:
forward RaiseScoreByOne(playerid);

//Under OnPlayerConnect, or wherever you log in
SetTimerEx("RaiseScoreByOne", 60000, true, "d", playerid);

public RaiseScoreByOne(playerid)
{
    SetPlayerScore(playerid, GetPlayerScore(playerid) + 1);
    return 1;
}
Post in the correct section next time. There is a thread entitled "Script Request Thread" for a reason.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)