Part 2 of the Problem.
#1

Код:
	if(strcmp(cmdtext, "/vpi", true) == 0)
	{
		new string[128];
		switch(gTeam[playerid])
		{
			case TEAM_Goldvip:
			{
			if((GetTickCount()-WaitTimeForCMD[playerid])>86400000)return SendClientMessage(playerid, 0xFFFFFFFF, "ERROR: Wait 24 Hours to use this CMD again!");
            new Float:x,Float:y,Float:z;
            GetPlayerPos(playerid,Float:x,Float:y,Float:z);
            new car1[MAX_PLAYERS];
            car1[playerid] = CreateVehicle(411,Float:x,Float:y,Float:z,100.0,1,1,10);
            PutPlayerInVehicle(playerid,car1[playerid],0);
            WaitTimeForCMD[playerid]=GetTickCount();
			forward Autorepair(playerid);
            public Autorepair(playerid)
            {
            if(IsPlayerInAnyVehicle(playerid))
               {
               new Float:health,vehicleid;
               vehicleid = GetPlayerVehicleID(playerid);
               GetVehicleHealth(vehicleid,health);
               if(health <250)
               {
               SetVehicleHealth(vehicleid,1000);
   }
  }
 }
   			format(string,sizeof(string),"Platinum V.I.P. Invincible Car");
			SendClientMessage(playerid,Platinum_vip_COLOUR,string);
			}
		}
		return 1;
	}
    return 0;
}
When compiled
Код:
invalid expression, assumed zero
undefined symbol "Autorepair
invalid expression, assumed zero
undefined symbol "Autorepair
auto fix came from : https://sampforum.blast.hk/showthread.php?tid=159239
Reply


Messages In This Thread
Part 2 of the Problem. - by trapstar2020 - 25.09.2011, 05:06
Re: Part 2 of the Problem. - by =WoR=Varth - 25.09.2011, 05:58
Re: Part 2 of the Problem. - by trapstar2020 - 25.09.2011, 06:02
Re: Part 2 of the Problem. - by aRoach - 25.09.2011, 06:53

Forum Jump:


Users browsing this thread: 2 Guest(s)