22.06.2016, 18:52
Buenas, he leнdo esta guнa https://sampforum.blast.hk/showthread.php?tid=406616 y ya la domino algo, pero no entiendo como hacer un comando de tres opciones, quiero hacer el comando /retirar negocio dinero pero no me da la cabeza de como hacerlo, esto lo quiero adaptar en ese comando.
Код:
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."); return 1; }