Jump to content

Massari

Membru
  • Posts

    566
  • Joined

  • Last visited

Posts posted by Massari

  1. Daca iti ramane culoare alba, inseamna ca e definit gresit COLOR_RED.

    incearca asta #define COLOR_RED 0xFF0000AA

    CMD:acolor( playerid, params[ ] )

    return SetPlayerColor( playerid, 0xFF0000AA ) , SendClientMessage( playerid, 0xFF0000AA, "Ti-ai schimbat culoarea !" ) ;

  2. asta bagi sus in GM.

    new SecretDM[ MAX_PLAYERS ] ;

    new Float: RS[ 3 ][ 3 ] =

    {

            {3794.8005,-1067.5277,25.3162},

            {3798.9282,-1025.8356,28.1341},

            {3763.5474,-1003.0386,41.1961}

    };


    asta bagi la on player spawn

    if ( SecretDM[ playerid]== 1 )
        return SetPlayerSDMSpawn( playerid );

    asta bagi jos de tot in GM
    forward SetPlayerSDMSpawn(playerid);
    public SetPlayerSDMSpawn(playerid)
    {
        new rand = random( sizeof( RS) );
        SetPlayerPos( playerid, RS[ rand ][ 0 ], RS[ rand ][ 1 ], RS[ rand ][ 2 ] );
    	return 1;
    }

    asta e comanda, o bagi in loc la comanda ta actuala
    CMD:sdm(playerid, params[])
    {
         SecretDM[ playerid ] = 1;
         ResetPlayerWeapons(playerid);
         SetPlayerHealth(playerid, 100);
         SetPlayerArmour(playerid, 0);
         GivePlayerWeapon(playerid, 34, 500);
         GivePlayerWeapon(playerid, 31, 500);
         GivePlayerWeapon(playerid, 23, 500);
         GivePlayerWeapon(playerid, 27, 500);
         SetPVarInt(playerid, "PlayerInDM", 1);
         SendTeleport(playerid, "Strike DM", "sdm");
         SendClientMessage(playerid, COLOR_ORANGE, "{15FF00}Welcome to {11FF00}Strike DM!");
         return 1;
    }


  3. CMD:csrank(playerid,params[])

    {

        new target, crank;

    //--------------------------------------------------------------------------

      if(sscanf(params, "ui", target, crank)) return

    SendClientMessage(playerid, -1, "{FFAE00}Usage: /csrank [PlayerID] [Rank]");

      //--------------------------------------------------------------------------

    if(crank < 0 || crank > 4) return

    SendClientMessage(playerid, -1,"{FF0000}ERROR: Invalid Clan Rank (1-4)!");

    //--------------------------------------------------------------------------

        else

        {

            ChangePlayerClanRank(playerid, target, crank);

        }

        return ( 1 );

    }

  4. CMD:cannounce(playerid, params[])

    {

        new str[129], pName[24];

        GetPlayerName(playerid, pName,sizeof(pName))

        if(GetPlayerClanRank(playerid) < 4) return SendClientMessage(playerid, COLOR_YELLOW, "{FF0000}ERROR: You have to be Clan Leader to use this comamnd!");

        if(isnull(params))

    return SendClientMessage(playerid,COLOR_RED, "USAGE: /cannounce <Text>");

        format(str, sizeof(str), "%s %s", pName, params);

        GameTextForAll(str,6000,3);

        return 1;

    }

  5. 3/5, e usor de facut un sistem de genul .

    nu era mai usor sa faci asa

    new Float: Pos[ 3 ];

    GetVehicleVelocity( GetPlayerVehicleID( playerid ), Pos[ 0 ], Pos[ 1 ], Pos[ 2 ] ) ;

    in loc de

    new Float: xx, Float:yy, Float:zz;

    GetVehicleVelocity(GetPlayerVehicleID(playerid), xx, yy, zz);  ?

    si AntiDeAmx pentru ce ?

  6. textdraw-ul tau :

    Ban_Info = TextDrawCreate(267.000000, 150.000000, "Ban Info");
        TextDrawBackgroundColor( Ban_Info, 255);
        TextDrawFont( Ban_Info, 1);
        TextDrawLetterSize( Ban_Info, 0.500000, 1.000000);
        TextDrawColor( Ban_Info, -16776961);
        TextDrawSetOutline( Ban_Info, 0);
        TextDrawSetProportional( Ban_Info, 1);
        TextDrawSetShadow( Ban_Info, 1);
    
        Ban_Backround = TextDrawCreate(164.000000, 150.000000, "_");
        TextDrawBackgroundColor( Ban_Backround, 255);
        TextDrawFont( Ban_Backround, 1);
        TextDrawLetterSize( Ban_Backround, 0.500000, 14.000000);
        TextDrawColor( Ban_Backround, 136);
        TextDrawSetOutline( Ban_Backround, 0);
        TextDrawSetProportional( Ban_Backround, 1);
        TextDrawSetShadow( Ban_Backround, 1);
        TextDrawUseBox( Ban_Backround, 1);
        TextDrawBoxColor( Ban_Backround, 136);
        TextDrawTextSize( Ban_Backround, 450.000000, 0.000000);
    
        Ban_Message = TextDrawCreate(167.000000, 166.000000, "Sorry, but this account is banned from this server !");
        TextDrawBackgroundColor( Ban_Message, 255);
        TextDrawFont( Ban_Message, 1);
        TextDrawLetterSize( Ban_Message, 0.200000, 1.000000);
        TextDrawColor( Ban_Message, -6750072);
        TextDrawSetOutline( Ban_Message, 0);
        TextDrawSetProportional( Ban_Message, 1);
        TextDrawSetShadow( Ban_Message, 1);
    
        Ban_Details_TD = TextDrawCreate(167.000000, 186.000000, "Ban Details:");
        TextDrawBackgroundColor( Ban_Details_TD, 255);
        TextDrawFont( Ban_Details_TD, 1);
        TextDrawLetterSize( Ban_Details_TD, 0.210000, 1.099999);
        TextDrawColor( Ban_Details_TD, -6750072);
        TextDrawSetOutline( Ban_Details_TD, 0);
        TextDrawSetProportional( Ban_Details_TD, 1);
        TextDrawSetShadow( Ban_Details_TD, 1);
    
        Ban_Mistake = TextDrawCreate(167.000000, 256.000000, "If this is a mistake, please press on F8, to take a photo and report on ~r~~h~WwW.SA-MP.Ro");
        TextDrawBackgroundColor( Ban_Mistake, 255);
        TextDrawFont( Ban_Mistake, 1);
        TextDrawLetterSize( Ban_Mistake, 0.180000, 1.000000);
        TextDrawColor( Ban_Mistake, -6749953);
        TextDrawSetOutline( Ban_Mistake, 0);
        TextDrawSetProportional( Ban_Mistake, 1);
        TextDrawSetShadow( Ban_Mistake, 1);
    Textdraw-ul lui speedy (WoS):
    	Ban_Info = TextDrawCreate(267.000000, 150.000000, "Ban Info");
    	TextDrawBackgroundColor( Ban_Info, 255);
    	TextDrawFont( Ban_Info, 1);
    	TextDrawLetterSize( Ban_Info, 0.500000, 1.000000);
    	TextDrawColor( Ban_Info, -16776961);
    	TextDrawSetOutline( Ban_Info, 0);
    	TextDrawSetProportional( Ban_Info, 1);
    	TextDrawSetShadow( Ban_Info, 1);
    
    	Ban_Backround = TextDrawCreate(164.000000, 150.000000, "_");
    	TextDrawBackgroundColor( Ban_Backround, 255);
    	TextDrawFont( Ban_Backround, 1);
    	TextDrawLetterSize( Ban_Backround, 0.500000, 14.000000);
    	TextDrawColor( Ban_Backround, 136);
    	TextDrawSetOutline( Ban_Backround, 0);
    	TextDrawSetProportional( Ban_Backround, 1);
    	TextDrawSetShadow( Ban_Backround, 1);
    	TextDrawUseBox( Ban_Backround, 1);
    	TextDrawBoxColor( Ban_Backround, 136);
    	TextDrawTextSize( Ban_Backround, 450.000000, 0.000000);
    
    	Ban_Message = TextDrawCreate(167.000000, 166.000000, "Sorry, but this account is banned from this server !");
    	TextDrawBackgroundColor( Ban_Message, 255);
    	TextDrawFont( Ban_Message, 1);
    	TextDrawLetterSize( Ban_Message, 0.200000, 1.000000);
    	TextDrawColor( Ban_Message, -6750072);
    	TextDrawSetOutline( Ban_Message, 0);
    	TextDrawSetProportional( Ban_Message, 1);
    	TextDrawSetShadow( Ban_Message, 1);
    
    	Ban_Details_TD = TextDrawCreate(167.000000, 186.000000, "Ban Details:");
    	TextDrawBackgroundColor( Ban_Details_TD, 255);
    	TextDrawFont( Ban_Details_TD, 1);
    	TextDrawLetterSize( Ban_Details_TD, 0.210000, 1.099999);
    	TextDrawColor( Ban_Details_TD, -6750072);
    	TextDrawSetOutline( Ban_Details_TD, 0);
    	TextDrawSetProportional( Ban_Details_TD, 1);
    	TextDrawSetShadow( Ban_Details_TD, 1);
    
    	Ban_Mistake = TextDrawCreate(167.000000, 256.000000, "If this is a mistake, please press on F8, to take a photo and report on ~w~www.rse-ro.esy.es");
    	TextDrawBackgroundColor( Ban_Mistake, 255);
    	TextDrawFont( Ban_Mistake, 1);
    	TextDrawLetterSize( Ban_Mistake, 0.180000, 1.000000);
    	TextDrawColor( Ban_Mistake, -6749953);
    	TextDrawSetOutline( Ban_Mistake, 0);
    	TextDrawSetProportional( Ban_Mistake, 1);
    	TextDrawSetShadow( Ban_Mistake, 1);

    aceleasi denumiri, aceleasi coordoante ?

    acelasi stil de "aranjare"

    atau: TextDrawSetProportional( Ban_Info, 1);

    WoS: TextDrawSetProportional( Ban_Info, 1);

    Deci ?

    EDIT: nu trebuia sa dai edit la topic .. oricum se vede ca e copiat . " Last Edit: November 29, 2013, 09:02:30 PM by Ph0eniX »

    "

  7. Frate am scris repede

    Ps am bagat win 7 tot nu mere am facut tot ce a putut kidu asa ca nu mai jigni ca tot te fac l

    + Cum iam spart lui RuNix dupa acel sv de [censured by the system] baza de date dela server asa pot sa iofac si acu dar nu am ce sati spun

    vise de copil retardat (.)

  8. Deci am reistalt win am bagat win 7 am facut tot ce a facut e.m.o si Falid LoL

    Masari tata eu te sfatuiesc sa te apti ca multi ma stiu sunt in cepator in script dar in alte lucruri nu ma faci asa ca stai calm

     Bun script-ul, la fel ca si scripteru.
    Felicitari , dar pe viitor numai jigni cretiini , chiar daca merita.
    
    Iar tu: horke1, daca esti [censured by the system] frate, stai acasa.
    Din cate observi esti singurul care ceva impotriva acestui script, daca nu merge pentru tine asta nu inseamna ca trebuie sa incepi sa jignesti pe alti.
    Daca nu iti place, ignora topicul si iesi nu incepe sa faci comentarii prostesti ca te faci singur de ras. ( dar ei...asta-i romanu)

    tu te faci singur :) nu eu . mai bine taci. si eu care vroiam sa te ajut..

  9. K1DDU" post="148606" timestamp="1373908301"]

    'Optimizeaza, curata si defragmenteaza PC-ul.

    Foloseste CCLeaner pentru a curata PC-ul si pentru a repara registrii. Si treci si pe la caracteristica Startup sa stergi apps care pornesc odata cu Windowsul, doar alea de care nu ai nevoie.

    Foloseste Auslogics BoostSpeed pentru a optimiza calculatorul foarte bine, si pentru a curata cum trebuie, si el fiind ACTIV va fi optimizat in timp real.

    Foloseste Smart Defrag pentru o defragmentare accentuata a HDD-ului !

    Eu folosesc cele 3 programe si calculatorul imi functioneaza PERFECT, le folosesc odata la saptamana, si Auslogics Boostspeed porneste odata cu PC-ul. Si mentionez ca cele 3 programe sunt programe Profesionale !

    O sa le incerc ...

    Multi mi-au spus ca Windows Seven Home Premium nu e bun pentru jocuri .

    Mi-au recomandat Ultimate pentru Games .. :)

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.