SA-MP Forums Archive
Why is not working ? [HELP +REP] - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Why is not working ? [HELP +REP] (/showthread.php?tid=541788)



Why is not working ? [HELP +REP] - MasonSFW - 14.10.2014

What wrong code, When i clicked compiled i saw nothing error, And i came in game i did /items i can't use items

pawn Код:
stock ShowInventory(playerid)
{
    gItemList="";
    for(new item;item<MAX_ITEMS;item++)
    {
        if(!strlen(_GetItemNamePVar(playerid,item))||!_GetItemAmountPVar(playerid,item))continue;
        format(gItemList,sizeof(gItemList),"%s\n%s (%d)",gItemList,_GetItemNamePVar(playerid,item), _GetItemAmountPVar(playerid,item));
    }
    format(gItemList,sizeof(gItemList),"Amount\t\tItem Name%s",gItemList);
    ShowPlayerDialog(playerid,INV_DIALOG_ID,DIALOG_STYLE_LIST,"Your Inventory",gItemList,"Use","Close");
    SetPVarInt(playerid,"PUSINGDIALOG",1);
}

InventoryOnDialogResponse(playerid, dialogid, response, inputtext[])
{
    if(dialogid!=INV_DIALOG_ID)return 1;
    if(!GetPVarInt(playerid,"PUSINGDIALOG"))return 1;
    if(!response)return 1;
    if(!strcmp(inputtext,"Amount",true,6))
    {
        ShowInventory(playerid);
        return 1;
    }
    format(gItemList,MAX_ITEM_NAME,inputtext[strfind(inputtext,"\t")+2]);
    if(CallLocalFunction("OnPlayerUseItem","is",playerid,gItemList)) SaveInventory(playerid);
    else SetPVarInt(playerid,"PUSINGDIALOG",0);
    return 1;
}

public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
        InventoryOnDialogResponse(playerid, dialogid, response, inputtext[]);
        return 1;
}

CMD:items(playerid, params[])
{
        ShowInventory(playerid);
        return 1;
}



Re: Why is not working ? [HELP +REP] - MasonSFW - 14.10.2014

??


Re: Why is not working ? [HELP +REP] - MasonSFW - 15.10.2014

BUMP ! NO HELP ?


Re: Why is not working ? [HELP +REP] - MasonSFW - 15.10.2014

? 2 days ago no help this shit ?


Re: Why is not working ? [HELP +REP] - CoaPsyFactor - 15.10.2014

I think you should create array that contains all items, and not use
pawn Код:
format(gItemList,MAX_ITEM_NAME,inputtext[strfind(inputtext,"\t")+2]);
to determine item name, probably your bug lies here


BTW FYI you'll be warned for triple posting