22.06.2016, 19:44
Si vas a tomar informaciуn de otros post mнralos bien xD
PHP код:
CMD:retirar(playerid, params[])
{
new opcion[24];
if(sscanf(params, "s[24]", opcion)) return SendClientMessage(playerid, -1, "/retirar opciуn");
if(!strcmp(opcion, "Negocio", true))
{
for(new h = 0; h < sizeof(NegocioInfo); h++)
{
if(IsPlayerInRangeOfPoint(playerid, 3.0,NegocioInfo[h][nPosX], NegocioInfo[h][nPosY], NegocioInfo[h][nPosZ]))
{
if(strcmp(NegocioInfo[h][nPropietario], NombreJugador(playerid)) == 0)
{
if(NegocioInfo[h][nDinero] >= monto)
{
GanaDineroPlayer_(playerid, monto), NegocioInfo[h][nDinero] -= monto;
format(string, sizeof(string), "Sacaste "#CVERDE"%d$"#CBLANCO" de la caja fuerte. Ahora queda(n) "#CVERDE"%d$"#CBLANCO" depositados en la caja fuerte.",monto,NegocioInfo[h][nDinero]);
SendClientMessage(playerid, COLOR_BLANCO, string), GuardarNegocio(h);
return 1;
}
else
{
SendClientMessage(playerid, COLOR_ROJO, "* No tienes esa cantidad en la caja fuerte.");
return 1;
}
}
else
{
SendClientMessage(playerid, COLOR_ROJO, "* No eres el propietario de este negocio.");
return 1;
}
}
}
SendClientMessage(playerid, COLOR_ROJO, "* No estбs cerca de ningъn negocio.");
}
else if(!strcmp(opcion, "Otra", true))
{
}
return 1;
}