ShopGUIPlus - Command error

Status
This thread has been locked.

Zumax

Banned
Feedback score
0
Posts
3
Reactions
1
Resources
0
As the title says I'm having issues linking a command to my shop i did what was described on their website however i keep getting an error! I'm trying to add this command within the /shop GUI where you can pick subjects.

Minecraft Version: 1.8
ShopGUIplus Version: 1.8


Console Error: >
[08:09:56 WARN]: [ShopGUIPlus] Invalid item type specified for shopMenuItems > 11 (config.yml), item not loaded.

Config.YML:
11:
type: command
item:
material: mob_spawner
quantity: 1
damage: 0
commands:
- "say Hello, %PLAYER%!"
slot: 31
 
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Zumax

Banned
Feedback score
0
Posts
3
Reactions
1
Resources
0
type an

so like this?

item:
Config.YML:
11:
type: command
item: mob_spawner
material: mob_spawner
quantity: 1
damage: 0
commands:
- "say Hello, %PLAYER%!"
slot: 31[DOUBLEPOST=1600813933][/DOUBLEPOST]
You have an item registered but not declared. That's like working in a hotel and someone telling you "Go clean room." What room? Where is the room?
Thank you for that response it was extremely useful
 
Banned forever. Reason: Creating Multiple Accounts (Dexter113, https://builtbybit.com/members/dexter113.117648/)

Chrono54

Feedback score
3
Posts
64
Reactions
11
Resources
0
I may have something useful.


2:
type: command
item:
material: WITHER_ROSE
name: '&a&lRefund Kills'
quantity: 1
commands:
- "setblock -934 23 -214 minecraft:redstone_block"
- "setblock -936 23 -216 minecraft:redstone_block"
slot: 23

This is how I have one of mine set up. Here are a few things to try.

- mob_spawner is actually "spawner" or in the newest updates, "mobspawner"
- Remove "mob_spawner" after item:
- Capitalize mob_spawner as "SPAWNER"

Most importanly, mob_spawner isn't an item. You're problem isn't not declaring an item as that's what "material" is there for. item: is to say you want the command to be runnable by an item, so you need to declare the material (SPAWNER) or (MOBSPAWNER) and name of the item, and the amount (quantity).

Hope this helps
 
Last edited:
Status
This thread has been locked.
Top