comando /c comando de chat do clan -
zPawnu - 17.09.2015
pessoal eu gostaria de pedir um comando para vocкs eu tentei fazer acabei errando tudo e fiquei com raiva e apaguei nгo consegui criar tipo o player da /c sdkfnmkjsnfik mensagem ai vai mostrar a mensagem pra todos que sгo do clan "pInfo[playerid][Sheep] == 1)" tendeu ? alguйm pode me ajd ?
Re: comando /c comando de chat do clan -
IgorLuiz - 17.09.2015
Nem testei, mas й funcional!
PHP код:
CMD:c(playerid, params[])
{
new Name[24], Msg[128], Texto[128];
GetPlayerName(playerid, Name, sizeof(Name));
if(sscanf(params, "s[128]", Texto)) return SendClientMessage(playerid, -1, "Use: /c [texto]");
if(pInfo[playerid][Sheep] == 1)
{
format(Msg, sizeof(Msg), "{FFFF00}%s Diz: {FFFFFF}%s", Name, Texto);
SendClientMessageToAll(-1, Msg);
}
return 1;
}
Re: comando /c comando de chat do clan -
zPawnu - 17.09.2015
Quote:
Originally Posted by IgorLuiz
Nem testei, mas й funcional!
PHP код:
CMD:c(playerid, params[])
{
new Name[24], Msg[128], Texto[128];
GetPlayerName(playerid, Name, sizeof(Name));
if(sscanf(params, "s[128]", Texto)) return SendClientMessage(playerid, -1, "Use: /c [texto]");
if(pInfo[playerid][Sheep] == 1)
{
format(Msg, sizeof(Msg), "{FFFF00}%s Diz: {FFFFFF}%s", Name, Texto);
SendClientMessageToAll(-1, Msg);
}
return 1;
}
|
quando eu do /c osdjfosdfjosdfosdjof algum texto aparece isso : Use: /c [texto]
Re: comando /c comando de chat do clan -
IgorLuiz - 17.09.2015
Quote:
Originally Posted by zPawnu
quando eu do /c osdjfosdfjosdfosdjof algum texto aparece isso : Use: /c [texto]
|
kkkj, DESCULPE ERRO meu, tente agora
PHP код:
CMD:c(playerid, params[])
{
new Name[24], Msg[128], Texto[128];
GetPlayerName(playerid, Name, sizeof(Name));
if(!sscanf(params, "s[128]", Texto)) return SendClientMessage(playerid, -1, "Use: /c [texto]");
if(pInfo[playerid][Sheep] == 1)
{
format(Msg, sizeof(Msg), "{FFFF00}%s Diz: {FFFFFF}%s", Name, Texto);
SendClientMessageToAll(-1, Msg);
}
return 1;
}
Re: comando /c comando de chat do clan -
Dayvison_ - 17.09.2015
Quote:
Originally Posted by IgorLuiz
Nem testei, mas й funcional!
PHP код:
CMD:c(playerid, params[])
{
new Name[24], Msg[128], Texto[128];
GetPlayerName(playerid, Name, sizeof(Name));
if(sscanf(params, "s[128]", Texto)) return SendClientMessage(playerid, -1, "Use: /c [texto]");
if(pInfo[playerid][Sheep] == 1)
{
format(Msg, sizeof(Msg), "{FFFF00}%s Diz: {FFFFFF}%s", Name, Texto);
SendClientMessageToAll(-1, Msg);
}
return 1;
}
|
Nгo tem nada de funcional, em nenhum dos dois cуdigos que vocк postou.
Cуdigo correto abaixo:
PHP код:
CMD:c(playerid, params[])
{
if(pInfo[playerid][Sheep] != 0/*Troque 0 para o clan ID invalido*/) return SendClientMessage(playerid, -1, "[Erro]: Й necessбrio estar em um clan para usar este comando.");
new Texto[100];
if(sscanf(params, "s[128]", Texto)) return SendClientMessage(playerid, -1, "Use: /c [texto]");
new Msg[146],Name[25];
GetPlayerName(playerid, Name, sizeof(Name));
format(Msg, sizeof(Msg), "{FFFF00}%s Diz: {FFFFFF}%s", Name, Texto);
for(new i; i < MAX_PLAYERS; i ++)
{
if(pInfo[i][Sheep] == pInfo[playerid][Sheep])
{
SendClientMessage(i, -1, Msg);
}
}
return 1;
}
Re: comando /c comando de chat do clan -
HaRdiiZin - 17.09.2015
Quote:
Originally Posted by IgorLuiz
kkkj, DESCULPE ERRO meu, tente agora
PHP код:
CMD:c(playerid, params[])
{
new Name[24], Msg[128], Texto[128];
GetPlayerName(playerid, Name, sizeof(Name));
if(!sscanf(params, "s[128]", Texto)) return SendClientMessage(playerid, -1, "Use: /c [texto]");
if(pInfo[playerid][Sheep] == 1)
{
format(Msg, sizeof(Msg), "{FFFF00}%s Diz: {FFFFFF}%s", Name, Texto);
SendClientMessageToAll(-1, Msg);
}
return 1;
}
|
Seu cуdigo estб bem errado '-'
PHP код:
if(pInfo[playerid][Sheep] == 1)
{
format(Msg, sizeof(Msg), "{FFFF00}%s Diz: {FFFFFF}%s", Name, Texto);
SendClientMessageToAll(-1, Msg);
}
Isto nгo irб dar certo..
Tenha mas atenзгo da prуxima vez antes de sair ajudando outras pessoas com cуdigos invбlidos.
Re: comando /c comando de chat do clan -
zPawnu - 17.09.2015
Quote:
Originally Posted by Day_
Nгo tem nada de funcional, em nenhum dos dois cуdigos que vocк postou.
Cуdigo correto abaixo:
PHP код:
CMD:c(playerid, params[])
{
if(pInfo[playerid][Sheep] != 0/*Troque 0 para o clan ID invalido*/) return SendClientMessage(playerid, -1, "[Erro]: Й necessбrio estar em um clan para usar este comando.");
new Texto[100];
if(sscanf(params, "s[128]", Texto)) return SendClientMessage(playerid, -1, "Use: /c [texto]");
new Msg[146],Name[25];
GetPlayerName(playerid, Name, sizeof(Name));
format(Msg, sizeof(Msg), "{FFFF00}%s Diz: {FFFFFF}%s", Name, Texto);
for(new i; i < MAX_PLAYERS; i ++)
{
if(pInfo[i][Sheep] == pInfo[playerid][Sheep])
{
SendClientMessage(i, -1, Msg);
}
}
return 1;
}
|
mostrou para todos '-'
Re: comando /c comando de chat do clan -
iTakelot - 17.09.2015
Quote:
Originally Posted by Day_
Nгo tem nada de funcional, em nenhum dos dois cуdigos que vocк postou.
Cуdigo correto abaixo:
PHP код:
CMD:c(playerid, params[])
{
if(pInfo[playerid][Sheep] != 0/*Troque 0 para o clan ID invalido*/) return SendClientMessage(playerid, -1, "[Erro]: Й necessбrio estar em um clan para usar este comando.");
new Texto[100];
if(sscanf(params, "s[128]", Texto)) return SendClientMessage(playerid, -1, "Use: /c [texto]");
new Msg[146],Name[25];
GetPlayerName(playerid, Name, sizeof(Name));
format(Msg, sizeof(Msg), "{FFFF00}%s Diz: {FFFFFF}%s", Name, Texto);
for(new i; i < MAX_PLAYERS; i ++)
{
if(pInfo[i][Sheep] == pInfo[playerid][Sheep])
{
SendClientMessage(i, -1, Msg);
}
}
return 1;
}
|
seu cуdigo nгo estб correto nгo.
PHP код:
for(new i; i < MAX_PLAYERS; i ++)
{
if(pInfo[i][Sheep] == pInfo[playerid][Sheep])
{
SendClientMessage(i, -1, Msg);
}
}
Re: comando /c comando de chat do clan -
IgorLuiz - 17.09.2015
zPawnu tente!
PHP код:
CMD:c(playerid, params[])
{
new Name[24], string[128], Texto[128];
GetPlayerName(playerid, Name, sizeof(Name));
if(sscanf(params, "s[128]", Texto)) return SendClientMessage(playerid, -1, "Use: /c [texto]");
format(string, sizeof(string), "%s Diz: {FFFFFF}%s", Name, Texto);
for(new i = 0; i < MAX_PLAYERS; i ++)
{
if(IsPlayerConnected(i))
{
if(pInfo[i][Sheep] == 1)
{
SendClientMessage(i,-1, string);
}
}
}
return 1;
}
Re: comando /c comando de chat do clan -
HaRdiiZin - 17.09.2015
Quote:
Originally Posted by IgorLuiz
zPawnu tente!
PHP код:
CMD:c(playerid, params[])
{
new Name[24], string[128], Texto[128];
GetPlayerName(playerid, Name, sizeof(Name));
if(sscanf(params, "s[128]", Texto)) return SendClientMessage(playerid, -1, "Use: /c [texto]");
format(string, sizeof(string), "%s Diz: {FFFFFF}%s", Name, Texto);
for(new i = 0; i < MAX_PLAYERS; i ++)
{
if(IsPlayerConnected(i))
{
if(pInfo[i][Sheep] == 1)
{
SendClientMessage(i,-1, string);
}
}
}
return 1;
}
|
Apenas uma correзгo que pode ser ъtil para ele..
PHP код:
if(pInfo[i][Sheep] >= 1)
PHP код:
CMD:c(playerid, params[])
{
new Name[24], string[128], Texto[128];
GetPlayerName(playerid, Name, sizeof(Name));
if(sscanf(params, "s[128]", Texto)) return SendClientMessage(playerid, -1, "Use: /c [texto]");
format(string, sizeof(string), "%s Diz: {FFFFFF}%s", Name, Texto);
for(new i = 0; i < MAX_PLAYERS; i ++)
{
if(IsPlayerConnected(i))
{
if(pInfo[i][Sheep] >= 1)
{
SendClientMessage(i,-1, string);
}
}
}
return 1;
}