11.03.2009, 09:56
Why should he use your code?.. Look how many less things you got there..
It's could be really short in this way.
It's could be really short in this way.
pawn Код:
if(!strcmp(cmd,"/buyprod",true))
{
if(!PlayerToPoint(1.5,playerid,-1834.4691, 129.1151, 15.1171))
return SendClientMessage(playerid, COLOR_RED, "You have to be at the truck station");
if(!IsPlayerInVehicle(playerid, truck1))
return SendClientMessage(playerid, COLOR_RED, "You have to be in a truck!");
if(GetPlayerMoney(playerid)<=500)
return SendClientMessage(playerid,CYELLOW,"You don't have $500");
GivePlayerMoney(playerid,-500);
SendClientMessage(playerid, COLOR_CYELLOW, "You have bought products for $500.");
return AttachTrailerToVehicle(trailer1,truck1);
}