[Ajuda] Chat para a classe -
Jumper. - 05.02.2012
nгo sei se isso й possivel mas se tiver como pesso q coloquem, fiquei nгo sу no search como tambem em sites de samp, nao achei nada, gostaria que cada classe tivesse algo como:
digita:
! Mensagem
ex: ! Oi Como vocк esta
e todos iriam ver:
Chat Org Seu_Nick: Oi como vocк esta
queria saber se tem como =)
Re: [Ajuda] Chat para a classe -
Jumper. - 05.02.2012
as classes do meu gm sгo:
pawn Код:
AddPlayerClass(29,2156.0002,-1071.5211,39.6994,61.4449,24,999,25,9999,30,9999);
AddPlayerClass(28,2218.2332,-1047.6475,57.6552,320.8873,24,999,25,9999,30,9999);
AddPlayerClass(285,2219.4712,-1170.2731,25.7266,358.1601,24,9999,25,9999,31,9999);
Re: [Ajuda] Chat para a classe -
WeenSoares_ - 05.02.2012
Tem que definir elas com alguma variavel.
@OFF
LucasTotola aqui ? EUHUEHUEHUEHEUHE, mundo pequeno nгo
Re: [Ajuda] Chat para a classe -
Jumper. - 05.02.2012
mas como faзo isso ween
@OFF
WendellSoares aqui? mundo pequeno nao? uahsuahs to aprendendo pawno =)
Re: [Ajuda] Chat para a classe -
Lord_Ching - 05.02.2012
pawn Код:
// No topo do GM
enum Org
{
pGroove,
pBallas,
};
new Orgs[MAX_PLAYERS][Org];
//Em OnPlayerCommandText
if(strcmp(cmd, "/radioprof", true) == 0 || strcmp(cmd, "/rp", true) == 0)
{
if(Groove(playerid) >= 1)
{
GetPlayerName(playerid, pName, sizeof pName);
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)) return SendClientMessage(playerid, CINZA, "USE: /rp [TEXTO]");
format(CELULAS, sizeof(CELULAS), "Chat Prof - %s: %s", pName, result);
SendMessageToGroove(AZUL,CELULAS);
}
if(Ballas(playerid) >= 1)
{
GetPlayerName(playerid, pName, sizeof pName);
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)) return SendClientMessage(playerid, CINZA, "USE: /rp [TEXTO]");
format(CELULAS, sizeof(CELULAS), "Chat Prof - %s: %s", pName, result);
SendMessageToBallas(AZUL,CELULAS);
}
return 1;
}
//No fim do GM
stock Groove(playerid)
{
new Groove1;
Groove1 = Orgs[playerid][pGroove];
return Groove1;
}
stock Ballas(playerid)
{
new Ballas1;
Ballas1 = Orgs[playerid][pBallas];
return Ballas1;
}
forward SendMessageToGroove(color,const string[]);
public SendMessageToGroove(color,const string[])
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i) == 1)
{
if(Groove(i) >= 1)
{
SendClientMessage(i, color, string);
}
}
}
return 1;
}
forward SendMessageToBallas(color,const string[]);
public SendMessageToBallas(color,const string[])
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i) == 1)
{
if(Ballas(i) >= 1)
{
SendClientMessage(i, color, string);
}
}
}
return 1;
}
Ae se tiver alguma coisa errada avisa ae, pq tbm to aprendendo.