Pregunta
#1

Algo falla aqui cuando un admin quiere poner algo por /ooc no sale nada mientras que si lo pone un user funciona...

Quote:

//----------------------------------[ooc]-----------------------------------------------
if(strcmp(cmd, "/ooc", true) == 0 || strcmp(cmd, "/o", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(gPlayerLogged[playerid] == 0)
{
SendClientMessage(playerid, COLOR_GREY, " No Estбs Conectado");
return 1;
}
if ((noooc) && PlayerInfo[playerid][pAdmin] < 1)
{
SendClientMessage(playerid, COLOR_GRAD2, "Chat de Dudas/Preguntas, Desactivado!");
return 1;
}
if(PlayerInfo[playerid][pMuted] == 1)
{
SendClientMessage(playerid, TEAM_CYAN_COLOR, "Estas Silenciado..");
return 1;
}
GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GRAD2, "Utiliza: /O(OOC): [Pregunta/Duda]");
return 1;
}

if(PlayerInfo[playerid][pAdmin] < 1)
{
format(string, sizeof(string), "(( [Dudas][ID: %d] %s: %s ))",playerid, sendername, result);
OOCOff(COLOR_LIGHTBLUE,string);
printf("%s", string);
}
}
return 1;

Ayuda
Reply
#2

Код:
if(PlayerInfo[playerid][pAdmin] < 1)
{
format(string, sizeof(string), "(( [Dudas][ID: %d] %s: %s ))",playerid, sendername, result);
OOCOff(COLOR_LIGHTBLUE,string);
printf("%s", string);
}
Ahн estб el error, solo permite si es menor que 1. Y sin embargo un poco mбs arriba se contradice.


pawn Код:
if(PlayerInfo[playerid][pAdmin]>0)
Reply
#3

me ganaste xd
Reply
#4

(AUN EDITANDO ESO QUE ME DIJISTEIS NO ME DEJA Y ME SIGUE SIN SALIR BIEN... HE REINICIADO EL SERV Y TODO)

Quote:

//----------------------------------[ooc]-----------------------------------------------
if(strcmp(cmd, "/ooc", true) == 0 || strcmp(cmd, "/o", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(gPlayerLogged[playerid] == 0)
{
SendClientMessage(playerid, COLOR_GREY, " No Estбs Conectado");
return 1;
}
if ((noooc) && PlayerInfo[playerid][pAdmin] < 1)
{
SendClientMessage(playerid, COLOR_GRAD2, "Chat de Dudas/Preguntas, Desactivado!");
return 1;
}
if(PlayerInfo[playerid][pMuted] == 1)
{
SendClientMessage(playerid, TEAM_CYAN_COLOR, "Estas Silenciado..");
return 1;
}
GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GRAD2, "Utiliza: /O(OOC): [Pregunta/Duda]");
return 1;
}

if(PlayerInfo[playerid][pAdmin] < 0)
{
format(string, sizeof(string), "(( [Dudas][ID: %d] %s: %s ))",playerid, sendername, result);
OOCOff(COLOR_LIGHTBLUE,string);
printf("%s", string);
}
}
return 1;


(AUN EDITANDO ESO QUE ME DIJISTEIS NO ME DEJA Y ME SIGUE SIN SALIR BIEN... HE REINICIADO EL SERV Y TODO)
y como se crea un canal extra es decir esta el OOC y el IC como se crea un canal aparte?
Reply
#5

No te funciona como dijo Code8976Man?
Reply
#6

Quote:
Originally Posted by Code8976Man
Посмотреть сообщение
Код:
if(PlayerInfo[playerid][pAdmin] < 1)
{
format(string, sizeof(string), "(( [Dudas][ID: %d] %s: %s ))",playerid, sendername, result);
OOCOff(COLOR_LIGHTBLUE,string);
printf("%s", string);
}
Ahн estб el error, solo permite si es menor que 1. Y sin embargo un poco mбs arriba se contradice.


pawn Код:
if(PlayerInfo[playerid][pAdmin]>0)
aa ami no me ayudas Kye "Foro" Kennedy
Reply
#7

No, pongo /o y nada es como si no escribiera nada y luiego pongo /ooc y lo mismo(despues de /o espacio y texto obviamente xD)
Reply
#8

He probado ya modificando todo y no vaaaaaaaaaaaaaa
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)