[Duda] Comando /f
#1

Hola comunidad, tengo creado el comando /f pero al usarlo, me sale como si estuviera escribiendo ig, ej: "Nazareno_Quintana Dice:" y no me sale el /f, para mн, el problema estб en el stock, pero no sй como arreglarlo, ayuda por favor

Код:
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;
}
Stock:

Код:
stock EnviarMensajeFacc(idfac, color, texto[])
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(Informacion[i][IFaccion] == idfac)
{
SendClientMessage(i, color, texto);
}
}
}
}
PD: si se puede, me podrнan decir como agregar mбs facciones al comando /f, ya agreguй los if y todo, pero me daba error, o sea, quiero que todas las faccs puedan hablar, ya que ahн sуlo estб LSPD. De antemano muchнsimas gracias.
Reply


Messages In This Thread
[Duda] Comando /f - by asfawfas - 28.01.2015, 17:40
Respuesta: [Duda] Comando /f - by Goncho28 - 28.01.2015, 17:58
Respuesta: [Duda] Comando /f - by jotajeda - 28.01.2015, 18:01
Respuesta: [Duda] Comando /f - by asfawfas - 28.01.2015, 18:34

Forum Jump:


Users browsing this thread: 1 Guest(s)