Jump to content

Pepe_Sad_Frog

Member
  • Posts

    33
  • Joined

  • Last visited

Posts posted by Pepe_Sad_Frog

  1. Just now, Koroonotchii said:

    Are there any errors when reloading the Script? If there aren't, then delete all of the Scripts for this and just have one of your choice, the skQuery one or the TuSKe one. If that doesn't work then unfortunately I am not too sure.

    oh ya you are right I'll see if it will work with skQuery thank you again. It has no errors btw

    • Like 1
  2. 10 hours ago, Koroonotchii said:

    Did you put the TuSKe Skript in without deleting the skQuery skript? Because that may be the problem

    Nvm didn't work. I guess I will try something else with the grant skript but tysm for having the time :,)

     

  3. 14 hours ago, Pure said:

    Hello! My name is Pure, an upcoming server-owner. I am here today to introduce myself to the MineHut community. I am a friendly user looking to create a server based around peoples suggestions. I am looking forward to working/playing alongside all others. 

    Channel Art.png

     Welcome ;D Hope you won't regret your time here as we have a lot of skygens,pvp,survival,minigames,prison,roleplay servers ❤️

  4. 10 hours ago, Koroonotchii said:

    Did you put the TuSKe Skript in without deleting the skQuery skript? Because that may be the problem

    First I did it without SkQuery addon. After I did it with it nothing worked. I have something on my mind im going to test and I'll tell you if my problem gets solved.

     

    Thank you for having the time and try to help me 😄

     

     

  5. 11 hours ago, Koroonotchii said:

    I would personally use TuSKe GUIs instead because skQuery GUIs (the addon that you are using) isn't very efficient nor reliable. 

    To fix your problem with your Skript, try adding ticks to your first menu, it may do the trick, also do the same with your second menu. Here is an example:
     

    
    command /grant <player>:
      permission: grant.*
      permission message: "&cNo perms"
      trigger:
        wait 2 ticks
        open chest with 3 rows named "&c&l             Grant         " to player
        wait 3 ticks
        format slot 12 of player with paper named "&3&lRanks" to close then run [execute console command "/rank %arg-1%"]
        format slot 14 of player with paper named "&b&lPermissions" to close then run [execute console command "/permissions %arg-1%"]
        
    command /rank <player>:
      permission: grant.*
      permission message: "&cNo perms"
      trigger:
        wait 2 ticks
        open chest with 6 rows named "&c&l             Ranks         " to player
        wait 3 ticks
        format slot 13 of player with golden apple named "&4&lOwner" to close then run [execute console command "/manuadd %arg 1% Owner"]
        format slot 20 of player with nether star named "&c&lAdmin" to close then run [execute console command "/manuadd %arg 1% Admin"]
        format slot 24 of player with redstone named "&4&lDeveloper" to close then run [execute console command "/manuadd %arg 1% Developer

    ^ This is the method I used when I made GUIs with skQuery.

    Additionally, I wouldn't recommend using commands to open other GUIs, yes it may do the trick, but it's not a very good way of scripting. Instead, use Functions. Here is an example with TuSKe GUIs. 
     

    
    command /grant <player>:
      permission: grant.*
      permission message: "&cNo perms"
      trigger:
        open virtual chest inventory with size 6 named "&c&l             Grant         " to player
        format gui slot 12 of player with paper named "&3&lRanks" to run:
            openRanksGUI(player, arg 1)
        format gui slot 14 of player with paper named "&b&lPermissions" to run:
            openPermissionsGUI(player, arg 1)
            
    function openRanksGUI(p: player, arg: player):
        open virtual chest inventory with size 6 named "&c&l             Ranks         " to {_p}
        format gui slot 13 of {_p} with golden apple named "&4&lOwner" to close then execute console command "/manuadd %{_arg}% Owner"
        format gui slot 20 of {_p} with nether star named "&c&lAdmin" to close then execute console command "/manuadd %{_arg}% Admin"
        format gui slot 24 of {_p} with redstone named "&4&lDeveloper" to close then execute console command "/manuadd %{_arg}% Developer"
        
    function openPermissionsGUI(p: player, arg: player):
        # follow the same steps as above
        
        

    If you would like further guidance on using TuSKe for GUIs then I would hugely recommend this tutorial by Trent and Michael

     

    oh btw the commands are not working do you know why?

  6. 1 hour ago, Koroonotchii said:

    I would personally use TuSKe GUIs instead because skQuery GUIs (the addon that you are using) isn't very efficient nor reliable. 

    To fix your problem with your Skript, try adding ticks to your first menu, it may do the trick, also do the same with your second menu. Here is an example:
     

    
    command /grant <player>:
      permission: grant.*
      permission message: "&cNo perms"
      trigger:
        wait 2 ticks
        open chest with 3 rows named "&c&l             Grant         " to player
        wait 3 ticks
        format slot 12 of player with paper named "&3&lRanks" to close then run [execute console command "/rank %arg-1%"]
        format slot 14 of player with paper named "&b&lPermissions" to close then run [execute console command "/permissions %arg-1%"]
        
    command /rank <player>:
      permission: grant.*
      permission message: "&cNo perms"
      trigger:
        wait 2 ticks
        open chest with 6 rows named "&c&l             Ranks         " to player
        wait 3 ticks
        format slot 13 of player with golden apple named "&4&lOwner" to close then run [execute console command "/manuadd %arg 1% Owner"]
        format slot 20 of player with nether star named "&c&lAdmin" to close then run [execute console command "/manuadd %arg 1% Admin"]
        format slot 24 of player with redstone named "&4&lDeveloper" to close then run [execute console command "/manuadd %arg 1% Developer

    ^ This is the method I used when I made GUIs with skQuery.

    Additionally, I wouldn't recommend using commands to open other GUIs, yes it may do the trick, but it's not a very good way of scripting. Instead, use Functions. Here is an example with TuSKe GUIs. 
     

    
    command /grant <player>:
      permission: grant.*
      permission message: "&cNo perms"
      trigger:
        open virtual chest inventory with size 6 named "&c&l             Grant         " to player
        format gui slot 12 of player with paper named "&3&lRanks" to run:
            openRanksGUI(player, arg 1)
        format gui slot 14 of player with paper named "&b&lPermissions" to run:
            openPermissionsGUI(player, arg 1)
            
    function openRanksGUI(p: player, arg: player):
        open virtual chest inventory with size 6 named "&c&l             Ranks         " to {_p}
        format gui slot 13 of {_p} with golden apple named "&4&lOwner" to close then execute console command "/manuadd %{_arg}% Owner"
        format gui slot 20 of {_p} with nether star named "&c&lAdmin" to close then execute console command "/manuadd %{_arg}% Admin"
        format gui slot 24 of {_p} with redstone named "&4&lDeveloper" to close then execute console command "/manuadd %{_arg}% Developer"
        
    function openPermissionsGUI(p: player, arg: player):
        # follow the same steps as above
        
        

    If you would like further guidance on using TuSKe for GUIs then I would hugely recommend this tutorial by Trent and Michael

     

    Omg thank you so much I'll try that with Tuske you are the best ❤️

    • Like 1
  7.   Hello

    I want to ask for help for a grant skript I am making.

     

     

    command /grant <player>:
      permission: grant.*
      permission message: "&cNo perms"
      trigger:
        open chest with 3 rows named "&c&l             Grant         " to player
        format slot 12 of player with paper named "&3&lRanks" to close then run [execute console command "/rank %arg-1%"]
        format slot 14 of player with paper named "&b&lPermissions" to close then run [execute console command "/permissions %arg-1%"]


     

    command /rank <player>:
      permission: grant.*
      permission message: "&cNo perms"
      trigger:
        send "aaa" to player
        wait 1 second
        open chest with 6 rows named "&c&l             Ranks         " to player
        format slot 13 of player with golden apple named "&4&lOwner" to close then run [execute console command "/manuadd %arg 1% Owner"]
        format slot 20 of player with nether star named "&c&lAdmin" to close then run [execute console command "/manuadd %arg 1% Admin"]
        format slot 24 of player with redstone named "&4&lDeveloper" to close then run [execute console command "/manuadd %arg 1% Developer

     

    It has no errors but it doesnt show the second menu when I click "Ranks"

    Do I need to skript more for it or install an addon ;;-;;

     

    Thanks for having the time reading this

  8. Fixed Usage and Aliases 
     

     

      command /punish <player>: 
      usage: /punish <player> 
      aliases: /p
      permission: temp.punish.command
      permission message: "&cYou have no perms for that"
      trigger:
        wait 1 tick
        open chest with 3 rows named "&4Tempbans     Mutes     Kicks" to player
        wait 1 tick
        format slot 2 of player with bedrock named "&4Hack client" with lore "&830d" to close then run [execute console command "/tempban %arg 1% 30d Hack Client"] 
        format slot 13 of player with diamond named "&4Racism" with lore "&83h" to close then run [execute console command "/mute %arg 1% 3h Racism"]
        format slot 24 of player with coal block named "&4Swearing 1st Warning" with lore "&8Kick" to close then run [execute console command "/kick %arg 1% Swearing 1st Warning"]
        format slot 11 of player with quartz block named "&4Disrespectful against staff/players" with lore "&840m" to close then run [execute console command "/tempban %arg 1% 40m Disrespectful against staff/players"]
        format slot 4 of player with gold block named "&4Spamming" with lore "&81h" to close then run [execute console command "/mute %arg 1% 1h Spamming"]
        format slot 15 of player with emerald block named "&4Disrespectful against staff/players" with lore "&8Kick" to close then run [execute console command "/kick %arg 1% Disrespectful against staff/players"]
        format slot 20 of player with purpur block named "&4Autoclicker" with lore "&830d" to close then run [execute console command "/tempban %arg 1% 30d Autoclicker"]
        format slot 22 of player with obsidian block named "&4Swearing" with lore "&82h" to close then run [execute console command "/mute %arg 1% 2h Swearing"]
        format slot 6 of player with ice named "&4Spamming 1st Warning" with lore "&8Kick" to close then run [execute console command "/kick %arg 1% Spamming 1st Warning"]

     

  9.       So this one of my other skripts. Its a censor chat skript. I wont put the bad words I put btw so staff wont hate me 😜 

     

    on chat:
        replace "put a bad word here" with "love" in message

    on chat: 
            replace "put a bad word here" with "the best" in message

    on chat:
            replace all "put a bad word here" with "body part" in message


    on chat:
            replace "put a bad word here" with "Im not racist" in message

    on chat:
            replace "put a bad word here" with "You are better than me" in message

    on chat:
      replace "put a bad word here" with "Ilysm" on chat


    You can change it and tell me what you added ;D. Btw its very funny when people are mad and they saying one of these bad words. Like today before one of my staff was mad at me and said f*ck you but bcs I made this skript it shown love u xD yeah I have 0 sense of humour

    • Like 2
  10.             Hello, today I wanna share with you my 3rd but my 1st big skript. Its a ban system with a menu. Its not a hard skript but not very easy for biginners I think. You can change things if you want and please tell me if you use it. I will be glad too 😜  Also if you want me to change the blocks and you dont know how contact me thru discord : Pepe_Sad_Frog#0787 or msg me here. 

     

       command /punish <player>: 
      usage: /temppunish <player> 
      aliases: /tp 
      permission: temp.punish.command
      permission message: "&cYou have no perms for that"
      trigger:
        wait 1 tick
        open chest with 3 rows named "&4Tempbans     Mutes     Kicks" to player
        wait 1 tick
        format slot 2 of player with bedrock named "&4Hack client" with lore "&830d" to close then run [execute console command "/tempban %arg 1% 30d Hack Client"] 
        format slot 13 of player with diamond named "&4Racism" with lore "&83h" to close then run [execute console command "/mute %arg 1% 3h Racism"]
        format slot 24 of player with coal block named "&4Swearing 1st Warning" with lore "&8Kick" to close then run [execute console command "/kick %arg 1% Swearing 1st Warning"]
        format slot 11 of player with quartz block named "&4Disrespectful against staff/players" with lore "&840m" to close then run [execute console command "/tempban %arg 1% 40m Disrespectful against staff/players"]
        format slot 4 of player with gold block named "&4Spamming" with lore "&81h" to close then run [execute console command "/mute %arg 1% 1h Spamming"]
        format slot 15 of player with emerald block named "&4Disrespectful against staff/players" with lore "&8Kick" to close then run [execute console command "/kick %arg 1% Disrespectful against staff/players"]
        format slot 20 of player with purpur block named "&4Autoclicker" with lore "&830d" to close then run [execute console command "/tempban %arg 1% 30d Autoclicker"]
        format slot 22 of player with obsidian block named "&4Swearing" with lore "&82h" to close then run [execute console command "/mute %arg 1% 2h Swearing"]
        format slot 6 of player with ice named "&4Spamming 1st Warning" with lore "&8Kick" to close then run [execute console command "/kick %arg 1% Spamming 1st Warning"]
        

    2020-01-05_21.23.16.png

  11. command /temppunish <offlineplayer>:
      usage: /temppunish <offlineplayer>
      aliases: /tp 
      permission: temp.punish.command
      permission message: "&cYou have no perms for that"
      trigger:
        wait 1 tick
        open chest with 3 rows named "&4Punish" to player
        wait 1 tick
        format slot 0 of player with bedrock named "&0Hack client" with lore "&830d" to close then run [execute player command "/tempban <player> 30d Hack Client"]

  12. Hello person, How are u person? Hope you are okay person, person I need help tho ;-;. Im making a custom ban punish skript. The skript has no errors and it works fine with the menu. The only problem is that when I do /temppunish player example /temppunish Pepe_Sad_Frog it shows me a menu with the things I want but when I click the block I chose to ban the player for 30d for Hack Client is says "No player found" like BRUH pls someone help me ;-;

  13. Hello!!!

    I am writing this topic to tell you that i would like to have an experience builder.My server is not ready, so i would need help for builds.

    ~~Need better spawn

    ~~Want an active builder

    ~~Know how to build good

    Now to be a builder you need to go to my discord server,apply and after if i like your application i will give you a build test. Why you need to apply? Because we have seen a lot of griefers trying to grief our server and we can't trust players that easily.

    Need one developer.

    ~ Need to have experiences as developer

    ~If you do sometimes mistakes its okay

    ~I will think about the payment so dont come to me if u want to have payments

    How to be developer? You have to show me atleast 3 skripts / Apply on discord/

×
×
  • Create New...