12.08.2010, 23:26
Boa noite Galeraaaaaa! BLZA?
Another Problem....
Quando eu uso esse meu CMD q fiz, tpw, ele so funfa com o id 0. Posso digitar 1, 5, 3, mas o player q sofre a acзгo й sempre o zero. PF, me ajudem:
obrigado desde jб
Another Problem....
Quando eu uso esse meu CMD q fiz, tpw, ele so funfa com o id 0. Posso digitar 1, 5, 3, mas o player q sofre a acзгo й sempre o zero. PF, me ajudem:
pawn Код:
//----------------------------------[Forзar Refazer Tutorial]-----------------------------------------------
if(strcmp(cmd, "/forcartutorial", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if (PlayerInfo[playerid][pAdmin] >= 1)
{
if(admtrabalhando[playerid] < 1)
{
SendClientMessage(playerid, COR_GRAD1, "Vocк nгo estб no Modo Administrador! (/trabalhar)");
return 1;
}
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COR_GRAD1, "Forma de Uso: /forcartutorial [ID do Jogador ou Nome do Jogador] [Motivo]");
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, COR_GRAD2, "Forma de Uso: /forcartutorial [ID do Jogador ou Nome do Jogador] [Motivo]");
return 1;
}
if(IsPlayerConnected(giveplayerid))
{
GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
PlayerInfo[giveplayerid][pTut] = 2;
ShowPlayerDialog(giveplayerid, 9, DIALOG_STYLE_MSGBOX, "•••• [Boas Vindas] ••••", "•Olб! Antes de Comeзarmos o Tutorial do Brazilian Way of Life[RPG BRASIL], iremos a uma breve explicaзгo.\n•Apуs essa explicaзгo, comeзara o Tutorial.\n•Poderб sair do Tutorial a qualquer Momento, apertando o botгo ‘Sair do SV’ Poderб sair do Tutorial a qualquer Momento, apertando o botгo ‘Sair do SV’.\n•Clique em Prуximo para Prosseguir ou em Sair do SV para voltar mais tarde.", "Confirma", "Sair do Sv");
format(string, sizeof(string), "* O Administrador %s [ID:%d] forзou o Jogador %s [ID:%d] a Refazer o Tutorial do BWL!!. O Motivo foi: %s", sendername, playerid, giveplayer, giveplayerid, (result));
SendClientMessageToAll(COR_LIGHTBLUE,string);
}
else
{
SendClientMessage(playerid, COR_GRAD1, "O Jogador estб Offline");
}
}
else
{
SendClientMessage(playerid, COR_GREY, "Vocк nгo й um Administrador!");
}
}
return 1;
}