Jump to content
  • 0

Problema Comanda /startradar si /stop radar


Septarul

Question

Am facut comenzile, dar nu stiu de ce nu imi returneaza atunci cand un player trece pe langa mine nu ma anunta cu ce viteza a trecut etc. Va las mai in jos comanda

 

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), "You were caught by %s radar with %d km/h, Radar Limit: %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;
}

Sper sa primesc cat mai rapid rezolvarea. Multumesc pentru atentie!

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

Primesc aceste erori 

C:\Users\Vasi\Desktop\burned.ro\gamemodes\wa-rpg.pwn(2267) : error 017: undefined symbol "p"
C:\Users\Vasi\Desktop\burned.ro\gamemodes\wa-rpg.pwn(2267) : error 029: invalid expression, assumed zero
C:\Users\Vasi\Desktop\burned.ro\gamemodes\wa-rpg.pwn(2267) : error 029: invalid expression, assumed zero
C:\Users\Vasi\Desktop\burned.ro\gamemodes\wa-rpg.pwn(2267) : fatal error 107: too many error messages on one line

si aceasta este linia la care le primesc

 

pickuptimer = SetTimer("CustomPickups", 1000, 1);

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

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