Ayuda con esto
#1

Bueno, el comando solo sirve para una facciуn, lo que quiero es agregar dos facciones mбs, teniendo esa.

Код:
CMD:graffiti(playerid, params[])
{
    if(!IsPlayerConnectedEx(playerid)) SendClientMessageEx(playerid, COLOR_GREY, NoConectado);
	if(Info[playerid][pMember] <= 11 && Info[playerid][pRank] >= 4)
    {
        SprayTag_Dialog(playerid, TYPE_LIST_MENU);
	}
	else SendClientMessageEx(playerid, COLOR_GRAD1, "Informaciуn: No perteneces una familia o no tienes el rango suficiente.");
	return 1;
}
Reply
#2

Cambia esta linea:
pawn Код:
if(Info[playerid][pMember] <= 11 && Info[playerid][pRank] >= 4)
a:
pawn Код:
if((Info[playerid][pMember] <= 11 && Info[playerid][pRank] >= 4) || (Info[playerid][pMember] == AQUI_LA_ID && Info[playerid][pRank] >= AQUI_EL_RANGO))
Asн, habrбn dos condiciones; si la facciуn es menor a 11 y el rango mayor a 4, O si la facciуn es igual a cualquier ID que pongas y el rango es mayor a cualquier rango que pongas. Esto es muy bбsico y se cubre en el manual de PAWN.

www.compuphase.com/pawn/Pawn_Language_Guide.pdf
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)