GUI Shop

GUI Shop based on Economics. Supports NPC

Total Downloads: 11,482 - First Release: Aug 29, 2015 - Last Update: May 3, 2018

5/5, 38 likes
  1. thanks :)
     
  2. please help i dont want npc shop i want players to do /shop from where ever they are
     

    Attached Files:

  3. Code:
        "Shop - Shop Icon Url": "",
        "Shop - Shop List": {
            "chat": {
                "buy": [
    Like the above from what I have been told :)
     
  4. I'm trying to figure out how to add items to the shop and where to put them, i'm using notepad++ but i literally cannot figure out where to write the list in...
     
  5. Check the post above from PryMary
     
  6. now how do i view the items in my shop, do i have to restart my server or do i have to find an npc or? and if its an npc can i just use the /shop command and avoid npcs
     
  7. Code:
    "Shop - Shop List": {
        "1234567": {
          "buy": [
            "Apple",
            "BlueBerries",
            "Assault Rifle",
            "Bolt Action Rifle"
          ],
          "description": "You currently have {0} coins to spend in this farmers market",
          "name": "Fruit Market",
          "sell": [
            "Apple",
            "BlueBerries",
            "Assault Rifle",
            "Bolt Action Rifle"
          ]
        },
        "5498734": {
          "buy": [
            "Assault Rifle",
            "Bolt Action Rifle"
          ],
          "description": "You currently have {0} coins to spend in this weapons shop",
          "name": "Weaponsmith Shop",
          "sell": [
            "Assault Rifle",
            "Bolt Action Rifle"
          ]
        },
        "chat": {
          "buy": [
            "12 Gauge Buckshot",
            "12 Gauge Slug",
            "4x Zoom Scope",
            "5.56 Rifle Ammo",
            "Acoustic Guitar",
            "Animal Fat",
            "Anti-Radiation Pills"
          ],
          "description": "You currently have {0} coins to spend in this builders shop",
          "name": "Build",
          "sell": [
            "12 Gauge Buckshot",
            "12 Gauge Slug",
            "4x Zoom Scope",
            "5.56 Rifle Ammo",
            "Armored Door"
        ]
        }
      }
    So, to explain you a bit, in the above code 1234567 & 5498734 are npc id, that here you have to put item you want to display from npc
    The "chat", is the list for the command, you have to fill the buy list to allow your player to buy those items, and add items to sell list to allow your players to seel items add to this list
     
  8. so if i sent you my guishop file would you be able to set it up for me <3
     
  9. Good evening
    I am looking for a tutorial for the GUI SHOP plugin
    Without using NPCs
    Because that of the site is more up to date :(
     
  10. selling stuff is bugged for me. I just sold a bolt action, i got the $2500 but the gun wasnt removed from my inventory. please help
     

    Attached Files:

  11. You do know you are buying/selling things that are not defined in items yeah? Everything in the Buy / Sell "list" has to be in the Items "list" too ;)

    For instance you have:

    "High External Stone Gate",
    "High External Stone Wall",
    "High External Wooden Gate",
    "High External Wooden Wall",

    but none of which are defined in the items list above, could be a issue ;-)
     
  12. hiya how would i setup a command on a new npc i want to add it to spawn tanks i have the command here but where and how would i add this so when i player gose to a npc and hits e it would spawn on a set xyz
     
    Last edited by a moderator: Jul 15, 2017
  13. Is there no Data File that shows all the Items each Player bought?
     
  14. it is possible to have a number of NPC's sell from the same shop?
     
  15. hi, I have looked at a lot of the messages on here and I can't get my one to work can you tell me what is up with it?
    [DOUBLEPOST=1500367030][/DOUBLEPOST]and i do not want a NPC just the /shop one
     

    Attached Files:

  16. where your npc id is change it to a 0 like this
    Code:
    "0": {
          "buy": [
               "",
               "",
               "",
               "",
               ""
          ],
          "description": "You currently have {0} coins to spend in this farmers market",
          "name": "SHOP NAME",
          "sell": [
               "",
               "",
               "",
               "",
               ""
          ]
        },
     
  17. o ok thank you very much
     
  18. I did it but it does not work still...
     
  19. instead of "0" use "chat"