Can't understand this condition/effect

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

Rares1337

New Member
Jan 27, 2021
6
0
1
23
so i have this script that opens a store gui if you time /storeblocks
It gives me an error
How do i fix?

Code:
Code:
command /storeblocks:
   trigger:
       open chest with 3 rows named "&bStore - Blocks" to player
       format slot 11 of player with wood named "&6Wood" to close then run [make player execute "storebuywood"]
       format slot 12 of player with endstone named "&eEndStone" to close then run [make player execute "storebuyendstone"]
       format slot 13 of player with sand named "&aSand" to close then run [make player execute "storebuysand"] 
       format slot 14 of player with obsidian named "&0Obsidian" to close then run [make player execute "storebuyobsidian"]
       format slot 15 of player with barrier named "&4Leave" to close then run [make player execute "store"]
 
command /storeblocks:
trigger:
open chest with 3 rows named "&bStore - Blocks" to player
format slot 11 of player with wood named "&6Wood" to close:
make player execute command "/storbuywood"
format slot 12 of player with endstone named "&eEndStone" to close:
make player execute command "/storbuyendstone"
format slot 13 of player with sand named "&aSand" to close:
make player execute command "/storebuysand"
format slot 14 of player with obsidian named "&0Obsidian" to close:
make player execute command "/storebuyobsidian"
format slot 15 of player with barrier named "&4Leave" to close:
make player execute command "/store"
[doublepost=1611775558,1611775509][/doublepost]that should work : ) pls rate me!
 
command /storeblocks:
trigger:
open chest with 3 rows named "&bStore - Blocks" to player
format slot 11 of player with wood named "&6Wood" to close:
make player execute command "/storbuywood"
format slot 12 of player with endstone named "&eEndStone" to close:
make player execute command "/storbuyendstone"
format slot 13 of player with sand named "&aSand" to close:
make player execute command "/storebuysand"
format slot 14 of player with obsidian named "&0Obsidian" to close:
make player execute command "/storebuyobsidian"
format slot 15 of player with barrier named "&4Leave" to close:
make player execute command "/store"
[doublepost=1611775558,1611775509][/doublepost]that should work : ) pls rate me!
That wouldn't work, as:
1. The user does not have skquery installed (format slot is skquery syntax)
2. to run: is from tuske, not skquery
3. Don't use skquery for guis, they're buggy. Here are some links to what guis you can use
https://forums.skunity.com/threads/vanilla-guis.8939/
https://skripthub.net/tutorials/3
 
Status
Not open for further replies.