Jump to content

Bassouli

Member
  • Posts

    26
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Bassouli

  1. On 8/7/2021 at 12:08 PM, RazoBlast said:

    DUD I SAID SERVER WAS BOTTED BECUZ OF BOTS THEN THAT IS CALLED THREAT ACTS?!? SORRY NOOBS MOVING ONTO ARTENOS

    WAS MUTED IN LOBBY FOR SAYING XD AFTER EVERY RESPONSE WHAT ON FREAKING EARTH IS THAT???

    PLUS DISCORD MUTE IS 6 MONTHS? DO YOU THINK ILL WAIT THAT LONG???

    Hello, I am sorry, you must be pretty frustrated at the moment. I am sure that your punishment was a clear mistake by one of the Minehut moderators, but do not worry, you may appeal and you will get a response within 24 hours:

    https://forums.minehut.com/application/form/3-player-appeals/

     

     

  2. Hello, This is Bassouli

    This did take place 3 months ago, and you were muted for 6 hours. But due to an issue with the bot at the time, the mute was forever. I have unmuted you.

    This topic is to be locked

  3. On 7/8/2021 at 10:52 PM, EpilepticGrandma said:

    do you guys like mcdonalds ice cream? if not whats your favorite fast food ice cream?

    mcdonalds ice cream >

  4. As you all know, between the years 2016 to 2020, almost all mcdonald's Ice crea machines were broken and dysfunctional, I couldnt get my mcflurry or the cone thing for so long :(. Now in 2021 this is no longer the issue, but I want your input, what do you guys thing happened? What was their problem? and how did they find a solution by the end of 2020?

    • Like 1
  5. 1 hour ago, StarBunnie said:

    You are actively rating a skript right now someone made for MC if they wanted to expand to other coding languages they would've asked that specifically and overall other languages differ quite a lot from skript so in theory you would need to make a looot of changes.

    I do not understand most of your past 2 messages

  6. 18 minutes ago, StarBunnie said:

    Using stop is completely unnecessary due to the code already stopping because it reached the end of the code block there is literally nothing happening after with the else. Else is better because you can add a lot more code because your stop variant is only usable in this circumstance. The performance difference between "else:" and "else if ...:" is literally so little it doesn't matter I agree that you can kinda swipe the if due to it already being tested but it really doesn't matter.

    it matters a lot when you try expanding to other languages

  7. 1 hour ago, emopediaMC said:

    i got muted for death wishes lmao. i totally deserve it, just saying so don't go off at me in the comments for "complaining about a punishment" 🙂

    Screenshot 2021-07-02 6.10.53 PM.png

    Yay Congratulations

  8. 2 hours ago, Reqar said:

    Title explains it all ^_^ 
    Just curious and extremely bored.

    8 years ago we had a family friend named bassel, he gave my brother his minecraft account Which was called Bassouli(something undisclosed), Because Bassouli was his nickname. We shared the account then, but he had to move away abroad, so in memory of him and because I didnt know what other better name, while buying my new mc account, I chose Bassouli to be my name.

    • Like 3
  9. Hi, is your server on 1.17? that might be a problem

    Also I think you might be misspelling /skript reload, a common mistake is to type "/skript relaod" instead of "reload"

    Also, maybe your /spawn is not working due to there being errors on the skript, but you cant view the errors because of your troubles reloading

    If all of my steps dont work, try switching your server to paper 1.16.5
    If that doesn't work either, try contacting the Help channel on forums, community-help on the discord, (discord.gg/minehut), or contacting formal support on minehut

  10. Hi, I have not checked out most of the skript but already I can see a very bad practice, not only did you constantly use else, you also used "else if" with the condition that is negative to the condition you are reversing, for example on the line: 

    `

     else if {warps::%arg-1%} is set:

    `

    You do not need to put the condition "if {warps::%arg-1%} is set:" because you are already confirming it is true by declaring else, this takes up server data, a little bit but most importantly it is a TERRIBLE practice

    Also, another thing, I would recommend to change your code from "else" to using stop, for example:

     

    before:

    `

    command /createwarp <string>:
        permission: {@warp_create}
        trigger:
            if arg-1 is set:
                if {warps::%arg-1%} is not set:
                    set {warps::%arg-1%} to location of player
                    send "{@prefix}&a Successfully created %arg-1% warp."
                else if {warps::%arg-1%} is set:
                    send "{@prefix}&c This warp already exist!"
            if arg-1 is not set:
                send "{@prefix} &cUsage: /createwarp <warp>"

    `

    After

    `

    command /createwarp <string>:
        permission: {@warp_create}
        trigger:
            if arg-1 is set:
                if {warps::%arg-1%} is set:
                    send "{@prefix}&c This warp already exist!"
                    stop
                set {warps::%arg-1%} to location of player
                send "{@prefix}&a Successfully created %arg-1% warp."
                stop
            send "{@prefix} &cUsage: /createwarp <warp>"
    

    `
    As you can see, both of the code variants do the exact same thing, except one is much more cleaner, a bit practice in general, and takes less server power.

    Keep in mind I am not making fun of you, I just want you to improve, I am just making a note of this in case you think so.

    If you wish to stop using else and switch to "stop" you may contact me on my discord Bassouli#0069 and I would be happy to help you

    About the rest of the skript, I do not have time to see that yet so I will view it later, have a good day!

  11. Hi, I am not new to forums but I have never posted an Introduction. 

    I am Bassouli, some of you may know me from discord. I really enjoy star wars and I do a lot of skripting.

    I will try to stay active on forums, atleast for a bit until I get bored.

    Cya around.

    • Like 3
×
×
  • Create New...