28.01.2015, 17:58
pawn Код:
zcmd(f, playerid, params[])
{
if(Informacion[playerid][IFaccion] >= 1) // le decimos que si tiene una facciуn mayor o igual a 1
{
new texto[120], pnamep[MAX_PLAYER_NAME];
GetPlayerName(playerid, pnamep, sizeof(pnamep));
if(sscanf(params, "s", texto)) return SendClientMessage(playerid, -1, "/f [texto OOC de la facciуn]");
if(LSPD(playerid)) // decimos que si pertenece a la facciуn 1 (nuestra funciуn)
{
new rangoname[40];
switch(Informacion[playerid][IRango])
{
case 1: rangoname = "Cadete";
case 2: rangoname = "Oficial";
case 3: rangoname = "Detective";
case 4: rangoname = "Sargento";
case 5: rangoname = "Teniente";
case 6: rangoname = "Detective";
}
new string[200];
format(string, 200, "(( %s %s: %s ))", rangoname, pnamep, texto);
EnviarMensajeFacc(Informacion[playerid][IFaccion], -1, string);
}
}
else SendClientMessage(playerid, -1, "No eres miembro de ninguna facciуn");
return 1;
}