03.07.2013, 20:56
as i said before i made a garage system...
But /entergarage is bugged
When you are near to a garage, you must enter but it don't work, it says "You are not near to your garage entrance"
"You don't own a garage"
Codes of /entergarage:
But /entergarage is bugged
When you are near to a garage, you must enter but it don't work, it says "You are not near to your garage entrance"
"You don't own a garage"
Codes of /entergarage:
pawn Код:
CMD:entergarage(playerid, params[])
{
for(new h=1; h<MAX_GARAGE; h++)
{
new garageid;
if(GarageInfo[playerid][gOwned] == 1 )
{
if(IsPlayerInRangeOfPoint(playerid,2.0,GarageInfo[garageid][gExteriorX], GarageInfo[garageid][gExteriorY], GarageInfo[garageid][gExteriorZ]) )
{
SetPlayerPos(playerid,GarageInfo[garageid][gInteriorX],GarageInfo[garageid][gInteriorY],GarageInfo[garageid][gInteriorZ]);
GameTextForPlayer(playerid, "~w~Welcome to your garage!", 5000, 3);
}
if(h == MAX_GARAGE-1)
{
SendClientMessage(playerid, 0x33CCFFAA, "You are not near to your garage entrance! ");
}
}
if(h == MAX_GARAGE-1)
{
SendClientMessage(playerid, 0x33CCFFAA, "You don't own a garage.");
}
}
return 1;
}