compile problem
#1

When i add this cmd
Код:
	  if(!strcmp(cmdtext, "/gate impound", true))
	  {
	      if(PlayerInfo[playerid][pJob] != 7)
	      {
		        SendClientMessage(playerid, COLOR_GREY, "   You are not a Car Mechanic!");
		        return 1;
		    }
              if (IsPlayerInRangeOfPoint(playerid, 15,1638.2725,-1146.0609,23.9063))
              {
          	      MoveDynamicObject(pdgate1,1638.9386,-1141.2346,36.2896, 0.8);
	   		      format(string, sizeof(string), "* %s takes out his/her impound remote and opens the gate.", sendername);
		   		  ProxDetector(30.0, playerid, string, COLOR_CHAT1,COLOR_CHAT2,COLOR_CHAT3,COLOR_CHAT4,COLOR_CHAT5);
		   		  
			}
i get many errors, When i remove the cmd it compiles normally.

Код:
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(3463) : error 004: function "SafeGivePlayerMoney" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(3492) : error 004: function "SafeGivePlayerMoney" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(3838) : error 004: function "SafeSetPlayerInterior" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(3881) : error 017: undefined symbol "GetVehicleName"
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(3881) : warning 202: number of arguments does not match definition
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(3897) : error 004: function "IsASalesVehicle" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(3901) : error 004: function "GetVehiclePrice" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(3996) : error 004: function "SafeSetPlayerPos" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(4001) : error 004: function "SafeSetPlayerPos" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(4006) : error 004: function "SafeSetPlayerPos" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(4011) : error 004: function "SafeSetPlayerPos" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(4016) : error 004: function "SafeSetPlayerPos" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(5626) : error 004: function "ClearChatbox" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(5693) : error 004: function "ClearChatbox" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(6212) : error 004: function "SafeGivePlayerMoney" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(6252) : error 004: function "SafeResetPlayerWeapons" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(6281) : error 004: function "SafeGivePlayerWeapon" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(6328) : error 004: function "SaveGuns" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(6332) : error 004: function "SafeGivePlayerMoney" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(6336) : error 004: function "SafeGivePlayerMoney" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(6340) : error 004: function "UpdatePlayerPosition" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(6446) : error 004: function "SafeSetPlayerPos" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(6447) : error 004: function "SafeSetPlayerInterior" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(6456) : error 004: function "SafeSetPlayerPos" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(6457) : error 004: function "SafeSetPlayerInterior" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(6489) : error 004: function "RemoveRoadblock" is not implemented
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(6532) : warning 235: public function lacks forward declaration (symbol "gateclose6")
C:\Users\Viddo\Desktop\LARP 4.0\LARP 4.0 D\gamemodes\larp.pwn(6553) : error 004: function "SafeSetPlayerPos" is not implemented
Reply


Messages In This Thread
compile problem - by viddo - 16.02.2012, 11:18
Re: compile problem - by [HK]Ryder[AN] - 16.02.2012, 11:24
Re: compile problem - by viddo - 16.02.2012, 11:32
Re: compile problem - by Chris White - 16.02.2012, 11:37
Re: compile problem - by Konstantinos - 16.02.2012, 11:40
Re: compile problem - by Mark™ - 16.02.2012, 11:45
Re: compile problem - by viddo - 16.02.2012, 12:16
Re: compile problem - by Konstantinos - 16.02.2012, 12:18
Re: compile problem - by viddo - 16.02.2012, 12:23
Re: compile problem - by Konstantinos - 16.02.2012, 12:26

Forum Jump:


Users browsing this thread: 2 Guest(s)