Jump to content
  • 0

ajutor la jobul trucker


cr3azy

Question

am adaugat la jobul trucker alte masini si am facut /buyprods /load si /sellprods dar imi da eroarea asta

C:\Users\cr3azy\Desktop\gta.furios.ro\gamemodes\Godfather.pwn(3115) : error 004: function "PlayerToPoint" is not implemented
C:\Users\cr3azy\Desktop\gta.furios.ro\gamemodes\Godfather.pwn(3119) : error 004: function "PlayerToPoint" is not implemented
C:\Users\cr3azy\Desktop\gta.furios.ro\gamemodes\Godfather.pwn(3131) : error 004: function "PlayerToPoint" is not implemented
C:\Users\cr3azy\Desktop\gta.furios.ro\gamemodes\Godfather.pwn(3135) : error 004: function "PlayerToPoint" is not implemented
C:\Users\cr3azy\Desktop\gta.furios.ro\gamemodes\Godfather.pwn(3139) : error 004: function "PlayerToPoint" is not implemented
C:\Users\cr3azy\Desktop\gta.furios.ro\gamemodes\Godfather.pwn(3143) : error 004: function "PlayerToPoint" is not implemented
C:\Users\cr3azy\Desktop\gta.furios.ro\gamemodes\Godfather.pwn(3147) : error 004: function "PlayerToPoint" is not implemented
C:\Users\cr3azy\Desktop\gta.furios.ro\gamemodes\Godfather.pwn(3151) : error 004: function "PlayerToPoint" is not implemented
C:\Users\cr3azy\Desktop\gta.furios.ro\gamemodes\Godfather.pwn(3155) : error 004: function "PlayerToPoint" is not implemented
C:\Users\cr3azy\Desktop\gta.furios.ro\gamemodes\Godfather.pwn(3167) : error 004: function "PlayerToPoint" is not implemented
C:\Users\cr3azy\Desktop\gta.furios.ro\gamemodes\Godfather.pwn(3171) : error 004: function "PlayerToPoint" is not implemented
C:\Users\cr3azy\Desktop\gta.furios.ro\gamemodes\Godfather.pwn(3175) : error 004: function "PlayerToPoint" is not implemented
C:\Users\cr3azy\Desktop\gta.furios.ro\gamemodes\Godfather.pwn(3179) : error 004: function "PlayerToPoint" is not implemented
C:\Users\cr3azy\Desktop\gta.furios.ro\gamemodes\Godfather.pwn(3183) : error 004: function "PlayerToPoint" is not implemented
C:\Users\cr3azy\Desktop\gta.furios.ro\gamemodes\Godfather.pwn(3195) : error 004: function "PlayerToPoint" is not implemented
C:\Users\cr3azy\Desktop\gta.furios.ro\gamemodes\Godfather.pwn(3199) : error 004: function "PlayerToPoint" is not implemented
C:\Users\cr3azy\Desktop\gta.furios.ro\gamemodes\Godfather.pwn(3203) : error 004: function "PlayerToPoint" is not implemented
C:\Users\cr3azy\Desktop\gta.furios.ro\gamemodes\Godfather.pwn(3215) : error 004: function "PlayerToPoint" is not implemented
de la asta poate fii?
	else if (GetPlayerState(playerid) == 1 && PlayerToPoint(3.0, playerid,-77.7288,-1136.3896,1.0781))
		  		{
		  		    SendClientMessage(playerid, COLOR_LIGHTBLUE, "* You are about to become a Trucker, and get a 5 hour Contract.");
				    SendClientMessage(playerid, COLOR_LIGHTBLUE, "* You have to forfill this Contract first, if you want to Quit the job later.");
				    SendClientMessage(playerid, COLOR_LIGHTBLUE, "* If you are sure to become a Trucker, type /accept job.");
				    GettingJob[playerid] = 16;
				} 

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Adauga asta in gamemode-ul tau:

[pawn]PlayerToPoint(Float:radi, playerid, Float:x, Float:y, Float:z)

{

new Float:oldposx, Float:oldposy, Float:oldposz;

new Float:tempposx, Float:tempposy, Float:tempposz;

GetPlayerPos(playerid, oldposx, oldposy, oldposz);

tempposx = (oldposx -x);

tempposy = (oldposy -y);

tempposz = (oldposz -z);

if (((tempposx < radi) && (tempposx > -radi)) && ((tempposy < radi) && (tempposy > -radi)) && ((tempposz < radi) && (tempposz > -radi)))

{

return 1;

}

return 0;

}[/pawn]

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • 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.