[Duvida]Conversгo de tmp em sscanf. - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Duvida]Conversгo de tmp em sscanf. (
/showthread.php?tid=282733)
[Duvida]Conversгo de tmp em sscanf. -
Sergio_MOW - 12.09.2011
Boa noite, estou aprendendo a usar zcmd+ sscanf e tenho uma duvida, como converto tmp, no caso esse code abaixo para zcmd e sscanf?
Ja tentei usar um code com params[0] mas o servidor se desligou ao executar esse comando, estranho...
pawn Код:
if (strcmp(cmd, "/resetarconta", true)==0)
{
if((IsPlayerAdmin(playerid)))
{
new string[40];
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_WHITE, "USE: /resetarconta [Nome_Sobrenome]");
return 1;
}
GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
GetPlayerName(playerid, sendername, sizeof(giveplayer));
format(string, sizeof(string),"Arquivos/%s.ini",tmp);
dini_Remove(string);
}
return 1;
}
Re: [Duvida]Conversгo de tmp em sscanf. -
[R] ousenber [K] - 12.09.2011
PHP код:
CMD:resetarconta(playerid, params[])
{
if((IsPlayerAdmin(playerid)))
{
new string[40],
conta[MAX_PLAYER_NAME];
if(sscanf(params, "s[24]", conta)) return SendClientMessage(playerid, -1, "Correto: /resetarconta [Conta]");
format(string, sizeof(string),"Arquivos/%s.ini",conta);
dini_Remove(string);
}
else return SendClientMessage(playerid, -1, "Noob HAHA");
return true;
}
Nem sei se ta muito certo ;s
Re: [Duvida]Conversгo de tmp em sscanf. -
Sergio_MOW - 12.09.2011
Obrigado por esclarecer minha duvida ousen, funfou