I need help with my gamemode
#1

Hi all guys my name is William and i need help for my gamemode
i added a lot of things But i cant add SAVING SCORE+1score per minute
Can someone help me with this problem?
Please anwer me soo

Best Regards,William From Greece
Reply
#2

There are many systems which save player score, you can find one here: https://sampforum.blast.hk/showthread.php?tid=356383

If you want to give +1 score to players every minute this could help you: http://forum.sa-mp.com/showpost.php?...15&postcount=5
Reply
#3

pawn Код:
public OnGameModeInit()
{
SetTimer("score",1000,true);//repeating timer 1time each/sec
return 1;
}
forward score();
public score()
{
  for(new i = 0; i < MAX_PLAYERS; i++)
  {
     SetPlayerScore(i,GetPlayerScore(i)+1);
  }
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)