Cateva Event Scripts
#1

Deci/asadar si prin urmare... caut de ceva timp niste FS sau nu stiu cum se cheama... Chestia e ca nu le gasesc... Posibil din doua motive:

1. Sunt prea noob si nu stiu ce sa caut.
2. Nu exista.


Quote:
Originally Posted by EVENTS
1. Serverul da automat un calcul matematic si primu jucator care da raspunsul corect castiga o anumita suma de bani.

2. Serverul da automat un "cuvant" random si primul care il scrie castiga.

3. Pe serverul "Las Venturas Playground" cred ca acesta era si numele modului, era un event cu terrorist. Din toti jucatorii unul era ales random si aparea cu rosu pe radar, in timp ce restul aparea cu gri. Cel care reusea sa il omoare primea o anumita suma de bani.

4. Tot pe acest server/mod era un fel de event pentru high speed. Dupa ce depaseai o anumita viteza primeai o suma de bani pe secunda cred... (50$) sau ...
Ma poate ajuta cineva sa le gasesc? Sau daca le are cumva sa le puna spre download?
Reply
#2

Daca nu le gasesti pe acest forum, nu prea ai sanse.
Reply
#3

Era pe serverul ala al lui farse aia cu calculul...
trimitea mesaje de ex : Cine rezolva primul 1+1 castiga 2 puncte & 500$,daca raspundeai iti dadea :>

PS: SUNT NeO
Reply
#4

Fale tu ca nu e greu
Reply
#5

No english - Go away,

nu sti engleza, lasa-te de sa-mp, scripting.

dai si tu search Math Script, foooaaarte greu.
Reply
#6

Quote:
Originally Posted by Dj_maryo1993
View Post
Fale tu ca nu e greu
Eu nu le am cu Pawno. Nu mi se par greu de facut, dar asta care are serveru spune ca nu sunt floare la ureche.

Quote:
Originally Posted by PlayON
View Post
No english - Go away,

nu sti engleza, lasa-te de sa-mp, scripting.

dai si tu search Math Script, foooaaarte greu.
I understand English and I even speak/write very well. I tried to search for this but I think I didn't knew what to search for. And I even searched for Math script but the results weren't the ones I was looking for. For example I searched for the Terrorist event script, but yet not the result I was looking for.
And by the way. In USA/England the name of a language is written with a capital letter. (English - not english)
Si apropo in romana "nu sti" se scrie "nu stii". Iar la inceputul propozitiei folosesti majuscula. Dupa ce inveti tu regulile astea ar trebui sa inveti sa ii critici pe altii. Astea fiind spuse ca sa fiu rau.

ON: Prin urmare trebuie sa le caut post cu post, sau sa caut un scripter mai bun decat asta pe care il cunosc.


PS: Am gasit FS cu Math.
Reply
#7

Poti sa il postezi si tu Hermes pl0x?
Reply
#8

1. http://forum.sa-mp.com/showthread.ph...highlight=Math Reaction test,by RyDeR` ,dar mai este si Prize Game/Box de cmg4life
2. http://forum.sa-mp.com/showthread.ph...highlight=Math Maths system,by Zezombia(stiam ca e de Leopard...)
3.Faci o functie(desigur si un timer) ,in functie dai un random pana in MaxPlayers si ii pui aluia o culoare,setezi o variabila globala cu id-ul aluia,si la OnPlayerDeath if(playerid==VariabilaTerorisului)GivePlayerMoney( killerid,50);
pawn Code:
new TeroristId;
new bool:StateGame;

//La OnGameModeinit
SetTimer("SelecteazaTerorist",300000,0);//5 minute

//Dupa OnGameModeInit,sau inainte
forward SelecteazaTerorist( );
public SelecteazaTerorist( )
{
    new rand = random( GetMaxPlayers ( ) );
    if(!IsPlayerConnect( rand ) )rand = random( GetMaxPlayers( ) );
    TeroristId = rand;
    StateGame  = true;
    new
        string[ 256 ];
    format( string, 256, "Acum teroristul este %s[ID:%d] , calca'l in picioare!", pName( rand ), rand);
    return SendClientMessageToAll( 0x55ff11ff, string );
    SetPlayerColor(rand,0xff0000ff);
    for(new i; i < MAX_PLAYRES; i++)
    {
        if( IsPlayerConnected( i ) )SetPlayerColor( i, 0x00000047 );
    }
}
//daca nu ai pName in mod
pName(p){
new a[24];
GetPlayerName(p,a,24);
return a;
}
///La OnPlayerDeath
if( playerid == TeroristId && StateGame == true )
{
    GivePlayerMoney( killerid, +100 );
    new
        string[ 256 ];
    format( string, 256, " New:%s[ID:%d] a omorat teroristul %s si a castigat 100$", pName(killerid), killerid, pName( TeroristId ) );
    SendClientMessageToAll( 0x55ff11ff, string );
    StateGame = false;
    TeroristId = 0xFFFF;
    SetTimer( "SelecteazaTerorist", 300000, 0 );//5 minute
}
4.
pawn Code:
//un Timer la OnGameModeInit
SetTimer("VerificaViteza", 4000, 1);
foward VerificaViteza( );
public VerificaViteza( )
{
    for(new i;i<MAX_PLAYERS;i++)
    {
        if(IsPlayerConnected(i) && GetPlayerState(i)==2)
        {
            new speed = GetPlayerSpeed(i,true);
            if(speed> 100 && GetVehicleModel( GetPlayerVehicleID ( i ) ) )
            {
            GivePlayerMoney( i, +10 );
            GameTextForPlayer( i, "~r~Ai ~h~depasit ~h~viteza", 1000,1 );
            }
        }
    }
return true;
}
GetPlayerSpeed(playerid,bool:kmh) // by misco
{
    new Float:Vx,Float:Vy,Float:Vz,Float:rtn;
    if(IsPlayerInAnyVehicle(playerid)) GetVehicleVelocity(GetPlayerVehicleID(playerid),Vx,Vy,Vz); else GetPlayerVelocity(playerid,Vx,Vy,Vz);
    rtn = floatsqroot(floatabs(floatpower(Vx + Vy + Vz,2)));
    return kmh?floatround(rtn * 100 * 1.61):floatround(rtn * 100);
}
Sper sa iti mearga

Va place spamu nu gluma..puteati sa ii dati 2-3 linkuri si gata...
Reply
#9

Ms mult man... Raman dator cu o bere sau doua. Thx a lot.
Reply
#10

Si eu raman dator ms mult farsek
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)