20.04.2011, 12:18
I want to do that in my server every people can get xp but it don't work. Please chech my code and say for me where is bug or write here your code. This my code:
At the top:
This at the bottom
And can you please write here code or say how to do than V.I.P. can get 50% more XP(SCORES)...
At the top:
Код HTML:
#include <a_samp>
#if defined FILTERSCRIPT
SetTimer("ScoreTimer",60000,true);
Код HTML:
public ScoreTimer()
{
for(new i=0;i<MAX_PLAYERS;i++)
{
if(IsPlayerConnected(i))
{
SetPlayerScore(i,GetPlayerScore(i)+3);
}
}
}


I have a question: What include I need to do vip system ant to do that vips can get 5xp a minute
(normal peoples can get 3 xp a minute)...