Jump to content

Silvian

Membru
  • Posts

    62
  • Joined

  • Last visited

    Never

Posts posted by Silvian

  1. Ia incearca asa:

    public IsATruck(carid)
    {
        if(carid == truckcar1 || carid == truckcar2 || carid == truckcar3 || carid == truckcar4)
        {
            return 1;
        }
        return 0;
    }
    Si la /load:
    if(tmpcar == truckcar1 || tmpcar == truckcar2 || tmpcar == truckcar3 || tmpcar == truckcar4)

  2. Trebuie sa definesti sendername, adica:

    if(dialogid == 12345)
    {
    	 if(strlen(inputtext))
    	 {
                    new sendername[64];
    		GetPlayerName(playerid, sendername, sizeof(sendername));
                    ..................................................................................................
    

  3. new lockedcar[5]; // Numarul tau de masini, in acest caz "4" plus 1! Neaparat +1.
    
    lockedcar[1] = addstaticveh bla bla
    lockedcar[2] = addstaticveh bla bla
    lockedcar[3] = addstaticveh bla bla
    lockedcar[4] = addstaticveh bla bla
    Sa stii ca numaratoarea incepe de la 0.
    lockedcar[0] = addstaticveh bla bla
    lockedcar[1] = addstaticveh bla bla
    lockedcar[2] = addstaticveh bla bla
    lockedcar[3] = addstaticveh bla bla
    lockedcar[4] = addstaticveh bla bla
    

    De asta trebuie sa pui "Neaparat +1".

    Si inca ceva. In comanda ta, ai facut 4 masini pentru o persoana.

  4. Daca folosesti asa:

    if(IsPlayerInRangeOfPoint(playerid, 15.0, 397.6663,2460.0630,16.5000))
    {
        if(IsPlayerInRangeOfPoint(playerid, 15.0, -475.4114,2205.9465,47.2935))
        {
    
    e ca si cum ai folosi
    if(IsPlayerInRangeOfPoint(playerid, 15.0, 397.6663,2460.0630,16.5000) && IsPlayerInRangeOfPoint(playerid, 15.0, -475.4114,2205.9465,47.2935))
    
    Pe cand tu trebuie sa folosesti ||, adica asa:
            if(strcmp(cmdtext, "/hm", true) == 0)
    	{
    		new loc1 = IsPlayerInRangeOfPoint(playerid, 15.0, 397.6663,2460.0630,16.5000);
    		new loc2 = IsPlayerInRangeOfPoint(playerid, 15.0, -475.4114,2205.9465,47.2935);
    		new loc3 = IsPlayerInRangeOfPoint(playerid, 15.0, 1116.8577,2494.9219,432.4359);
    		new loc4 = IsPlayerInRangeOfPoint(playerid, 15.0, -2678.9490,1349.1318,16.9978);
    		if(loc1 || loc2 || loc3 || loc4)
    		{
    			SetPlayerHealth(playerid, 100);
    			SetPlayerArmour(playerid, 100);
    			SendClientMessage(playerid,0xFE1209FF, "Spawn Healt Adaugata!");
    		}
    		else
    		{
    			SendClientMessage(playerid, 0xE60000FF, "ERROR: NU esti in zona de spawn!");
    		}
    		return 1;
    	}
    

  5. Ideea e sa si inchizi acoladele.

    if(strcmp(cmdtext, "/hm", true) == 0)
    {
    	if(IsPlayerInRangeOfPoint(playerid, 15.0, 397.6663,2460.0630,16.5000))
    	{
    		if(IsPlayerInRangeOfPoint(playerid, 15.0, -475.4114,2205.9465,47.2935))
    		{
    			if(IsPlayerInRangeOfPoint(playerid, 15.0, 1116.8577,2494.9219,432.4359))
    			{
    				if(IsPlayerInRangeOfPoint(playerid, 15.0, -2678.9490,1349.1318,16.9978))
    				{
    					SetPlayerHealth(playerid, 100);
    					SetPlayerArmour(playerid, 100);
    					SendClientMessage(playerid,0xFE1209FF, "Spawn Healt Adaugata!");
    				}
    			}
    		}
    	}
    	else
    	{
    		SendClientMessage(playerid, 0xE60000FF, "ERROR: NU esti in zona de spawn!");
    	}
    }
    

    Si apropo, nu iti va functiona comanda.

×
×
  • 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.