Jump to content

Gabriel112

Membru
  • Posts

    6
  • Joined

  • Last visited

Posts posted by Gabriel112

  1. Salut , am facut comenziile dar imi da o eroare si nu stiu ce sa fac...

    CMD:startradar(playerid, params[]) {
    	if(!IsACop(playerid)) return SendClientMessage(playerid,COLOR_GREY, "Nu faci parte din departament.");
    	if(OnDuty[playerid] != 1) return SendClientMessage(playerid,COLOR_LGREEN, "Eroare: Nu esti la datorie!");
    	if(!Copcar2(GetPlayerVehicleID(playerid))) return SendClientMessage(playerid,COLOR_GREY, "Nu esti intr-o masina a factiunii.");
    	if(Radaron[playerid] == 1) return SendClientMessage(playerid,-1, "Ai deja activat radaru.");
    	new viteza,string[128];
    	if(sscanf(params, "d",viteza)) return SendClientMessage(playerid,COLOR_GREY, "USAGE: {FFFFFF}/startradar <Speed Limit>");
    	if(viteza > 200 || viteza < 40) return SendClientMessage(playerid,-1, "Viteza invalida (40-200).");
    	Radaron[playerid] = 1;
    	Radarlimit[playerid] = viteza;
    	TogglePlayerControllable(playerid, 0);
    	format(string, sizeof(string), "Ai activat radarul. Viteza maxima: %d KM/H.",viteza);
    	SendClientMessage(playerid,COLOR_YELLOW,string);
    	return 1;
    }
    
    CMD:stopradar(playerid, params[]) {
    	if(!IsACop(playerid)) return SendClientMessage(playerid,COLOR_GREY, "Nu faci parte din factiunea politiei.");
    	if(Radaron[playerid] == 0) return SendClientMessage(playerid,COLOR_GREY, "Nu ai radarul activ.");
    	Radaron[playerid] = 0;
    	Radarlimit[playerid] = 0;
    	SendClientMessage(playerid,COLOR_YELLOW,"Ai dezactivat radarul!");
    	TogglePlayerControllable(playerid, 1);
        return 1;
    }
    
                                       
                                       
     function CustomPickups() {
    	new Float:oldposx, Float:oldposy, Float:oldposz;
    	new string[564];
    	foreach(Player,i) {
    		GetPlayerPos(i, oldposx, oldposy, oldposz);
    	    if(Radaron[i] == 1) {
    	        foreach(Player, o) {
     			    if(IsPlayerInRangeOfPoint(o, 30.0, oldposx, oldposy, oldposz) && GetPlayerState(o) == PLAYER_STATE_DRIVER && OnDuty[o] == 0) {
    					new viteza = Carspeed(o);
    				    if(viteza > Radarlimit[i]) {
    				        new nameradar[25],nameradar1[25];
    				        GetPlayerName(o,nameradar,sizeof(nameradar));
    				        GetPlayerName(i,nameradar1,sizeof(nameradar1));
          format(string, sizeof(string), "%s[ID:%d] is driving with %d km/h, Location: %s, Radar Limit: %d km/h!", 					   nameradar,o,viteza,GetPlayerZone(o),Radarlimit[i]);
    						SCM(i,0xf03337FF,string);
    						format(string, sizeof(string), "Ai fost prins de %s radar cu %d km/h, Limita de viteza: %d km/h.",nameradar1,viteza,Radarlimit[i]);
        					SCM(o,0xf03337FF,string);
    					}
    				}
    			}
    		}
    	}
    	return 1;
    }
    
    stock Carspeed(playerid,mode = 1) {
        new Float:Velocity [3];
        GetVehicleVelocity ( GetPlayerVehicleID ( playerid ) , Velocity [ 0 ] , Velocity [ 1 ] , Velocity [ 2 ] ) ;
        return IsPlayerInAnyVehicle ( playerid ) ? floatround ( ( ( floatsqroot ( ( ( Velocity [ 0 ] * Velocity [ 0 ] ) + ( Velocity [ 1 ] * Velocity [ 1 ] ) + ( Velocity [ 2 ] * Velocity [ 2 ] ) ) ) * ( !mode ? 105.0 : 170.0 ) ) ) * 1 ) : 0;
    }
    #define Radarlimit
    #define Carspeed
    #define Radaron
     new Radaron[MAX_PLAYERS]
    Erori:
    
    agb.pwn(25626) : warning 202: number of arguments does not match definition
    agb.pwn(25630) : error 029: invalid expression, assumed zero
    agb.pwn(25630) : warning 215: expression has no effect
    agb.pwn(25630) : error 001: expected token: ";", but found "]"
    agb.pwn(25630) : error 029: invalid expression, assumed zero
    agb.pwn(25630) : fatal error 107: too many error messages on one line
    Linia:
    if(Radaron[playerid] == 1) return SendClientMessage(playerid,-1, "Ai deja activat radaru.");

     

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