Hallo habe einen Befehl wenn dieser eingegeben wird kommt in den Logs folgende Medlung:
Zitat
[23:47:16] [Befehl] von ABC (ID:4): /startduell 2 deagle 1
[23:47:16] sscanf warning: Strings without a length are deprecated, please add a destination size.
[23:47:16] sscanf warning: Format specifier does not match parameter count.
es fehlt eine String angabe habe eine schon gesetzt bei "isi" aber anscheinend falsch wo muss ich noch eine string angabe einsetzen?
dcmd_startduell(playerid, params[])
{
new
giveplayerid,
weapon[128],
price;
new string[256];
new sendername[MAX_PLAYER_NAME];
new giveplayername[MAX_PLAYER_NAME];
if (sscanf(params, "isi[168]", giveplayerid,weapon,price))
{
SendClientMessage(playerid, COLOR_YELLOW, " Benutze: /startduell ");
SendClientMessage(playerid, COLOR_YELLOW, " Duell Waffen: deagle, mp5, shotgun, sdpistol");
return 1;
}
else
{