Help Me !!
#1

Hello Guys ,

I Am New Here And I Need A Filter Script Of E boost Or Vehicle Speed ...

Please Help Me ...

Thanks..
Reply
#2

http://lmgtfy.com/?q=eboost+samp
Reply
#3

Wow Thanks Dude

1 More Help I Need !!

I Need Score System !! 1 Score Per 1 Minute Can You Help Me >?>

Thanks Again
Reply
#4

pawn Код:
forward Score();
OnGameModeInit

pawn Код:
SetTimer("Score", 60000, 1);
pawn Код:
public Score()
{
    Loop(i, MAX_PLAYERS)
    {
        if (IsPlayerConnected(i))
        {
            SetPlayerScore(i, GetPlayerScore(i) + 1));
            new str[258];
            format(str,sizeof(str),"** You have gained one score");
            SendClientMessage(i, COLOR_GREEN, str);
        }
    }
    return 1;
}
Reply
#5

Can You Give Me The FS Cuz I Don't Know How To Script Well...

Btw You Helped Me A Lot ...

Thanks Dude :*
Reply
#6

its not a FS just add it under these things..
On top under
pawn Код:
#define <a_samp>

forward Score();
pawn Код:
public OnGameModeInit()
{
     SetTimer("Score", 60000, 1);
     return 1;
}
On bottom of script

pawn Код:
public Score()
{
    Loop(i, MAX_PLAYERS)
    {
        if (IsPlayerConnected(i))
        {
            SetPlayerScore(i, GetPlayerScore(i) + 1));
            new str[258];
            format(str,sizeof(str),"** You have gained one score");
            SendClientMessage(i, COLOR_GREEN, str);
        }
    }
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)