13.06.2012, 08:33
Well.. I've made this CMD :
But.. When i go near the Truck and Type it nothing happen.. It never works anywhere tho.
PHP код:
if(strcmp(cmd, "/throwtrash", true) == 0)
{
new string[256];
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
for(new i = 0; i < sizeof(Trashmaster); i++)
{
if(PlayerInfo[playerid][HoldingObject] == 1)
{
new Float:tmx, Float:tmy, Float:tmz;
GetVehiclePos(Trashmaster[i], tmx, tmy, tmz);
if(IsPlayerInRangeOfPoint(playerid, 1.5, tmx, tmy, tmz))
{
format(string, sizeof(string), " %s reaches into the dumpster and takes the trash bag", name);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
RemovePlayerAttachedObject(playerid, 0);
PlayerInfo[playerid][HoldingObject] = 0;
}
}
}
return 1;
}