[FilterScript] Furniture System-Carring the furniture and place it to your house,garden and everywhere
#8

Quote:
Originally Posted by [uL]Pottus
View Post
I'm looking at the code for this and I don't really like what I'm seeing, DINI and poor dynamic design the system looks pretty good but I would change this up.

1.) Use sqlite - I recommend https://sampforum.blast.hk/showthread.php?tid=303682
2.) Redesign the dynamic element there should be two functions CreateFurniture() DestroyFurniture()
3.) Use y_iterate to create a custom iterator for your furnature array this is a perfect application
4.) Use zcmd having all your commands in one callback is messy (I don't care even if it's one command do it)
5.) y_inline/y_dialog allows you to integrate dialogs directly into functions
(Quick Example)

pawn Code:
else if(Object_Clear_Click == clickedid)
        {
            if(CostumeData[playerid][p_CObjectID][CurrCostumeEditSlot[playerid]] != 0)
            {
                inline Response(pid, dialogid, response, listitem, string:text[])
                {
                    #pragma unused listitem, dialogid, pid, text
                    if(response)
                    {
                        RemoveAttachedObject(playerid, CurrCostumeEditSlot[playerid]);
                        PlayerTextDrawSetString(playerid, Object_Info_Player[playerid], "Cleared object from selected slot");
                    }
                    else PlayerTextDrawSetString(playerid, Object_Info_Player[playerid], "Cancelled clear object");
                }
                Dialog_ShowCallback(playerid, using inline Response, DIALOG_STYLE_MSGBOX, "Costume Editor", "Are you sure you want to clear this object?", "Ok", "Cancel");
            }
        }
Doesn't that look at more natural?

Those are my suggestions, otherwise the coding looks fairly decent but if you can make my proposed improvements the system will be much more extensible if someone decides to implement a custom edit and for your own updates.
Thanks for your valuable suggestion.
Reply


Messages In This Thread
Furniture System-Carring the furniture and place it to your house,garden and everywhere - by chencong - 17.10.2013, 14:17
Re: Furniture System-Carring the furniture and place it to your house,garden and everywhere - by FailerZ - 17.10.2013, 14:23
Re: Furniture System-Carring the furniture and place it to your house,garden and everywhere - by jakejohnsonusa - 17.10.2013, 14:25
Re: Furniture System-Carring the furniture and place it to your house,garden and everywhere - by JimmyCh - 17.10.2013, 14:38
Re: Furniture System-Carring the furniture and place it to your house,garden and everywhere - by LeMoi - 17.10.2013, 18:09
Re: Furniture System-Carring the furniture and place it to your house,garden and everywhere - by Pottus - 17.10.2013, 18:37
Re: Furniture System-Carring the furniture and place it to your house,garden and everywhere - by Plix - 17.10.2013, 18:47
Re: Furniture System-Carring the furniture and place it to your house,garden and everywhere - by jin_zhi - 18.10.2013, 03:25
Re: Furniture System-Carring the furniture and place it to your house,garden and everywhere - by Pottus - 18.10.2013, 04:54
Re: Furniture System-Carring the furniture and place it to your house,garden and everywhere - by Krakuski - 24.10.2013, 03:05
Re: Furniture System-Carring the furniture and place it to your house,garden and everywhere - by TheChimpJr - 24.10.2013, 03:19
Re: Furniture System-Carring the furniture and place it to your house,garden and everywhere - by FiReMaNStone - 25.10.2013, 08:19
Re: Furniture System-Carring the furniture and place it to your house,garden and everywhere - by Jankingston - 25.10.2013, 08:34
Re: Furniture System-Carring the furniture and place it to your house,garden and everywhere - by chencong - 25.10.2013, 14:13
Re: Furniture System-Carring the furniture and place it to your house,garden and everywhere - by DouglasRamirez - 25.10.2013, 17:22
Re: Furniture System-Carring the furniture and place it to your house,garden and everywhere - by Krakuski - 25.10.2013, 22:13
Re: Furniture System-Carring the furniture and place it to your house,garden and everywhere - by VinPure - 12.05.2014, 03:20
Re: Furniture System-Carring the furniture and place it to your house,garden and everywhere - by iBots - 13.05.2014, 11:53
Re: Furniture System-Carring the furniture and place it to your house,garden and everywhere - by SWAT4 - 13.05.2014, 12:09

Forum Jump:


Users browsing this thread: 4 Guest(s)