Jump to content

kxden

Member
  • Posts

    8
  • Joined

  • Last visited

Posts posted by kxden

  1. SkRayfall could be out of date, im not sure, but the command works fine even without SkRayfall. Are the skripts reloading or is it the command  you made with skript isnt working? i made this and it worked fine.

    command /tester:
        trigger:
            give player cookie

  2. Hello! right now im making a skript that has throwable explosive jalapenos (which are ink sacs), but it wont work if the player is holding more than one of the jalapenos, and will only work if your holding 1. Here is the skript: 

     

    on right click:
        if player is holding ink sac named "jalapeno popper":
            shoot egg at speed 1.5
            remove ink sac named "jalapeno popper" from player
        
    on damage:
        if attacker has ink sac named "jalapeno popper":
            create a safe explosion of force 5 at victim

     

    if anyone could help that would be awesome thanks

  3. Hello! Right now im making a skript thats a reloadable gun with mags, but every time i reload it, it reloads more than one mag when the skript says to remove 1 mag. The iron nuggets are supposed to be mags, so its supposed to take one mag every time it reloads but it takes more than one.

     

    variables:
        {%player%.pistol} = 0
        
    on left click:
        if player is holding iron horse armor named "gun":
            cancel event
        if player does not have iron nuggets named "mag":
            message "&e&lWARNING: &cYou are out of ammo!"
            stop
        if {%player%.pistol} is not 10:
            play sound "ENTITY_ZOMBIE_ATTACK_WOODEN_DOOR" to player
            shoot snowball 
            add 1 to {%player%.pistol}
            stop
        if {%player%.pistol} is 10:
            cancel event
            send action bar "&4&lRELOADING" to player
            wait 3 seconds        
            send action bar "" to player
            set {%player%.pistol} to 0
            remove 1 iron nugget named "mag" from player 
            stop

            

            If anyone could help that would be awesome thanks 🙂

  4. So after awhile, i came back today from a long break off MC and i hopped onto my server with all of the scripts i have written, and none of them, all of a sudden, no longer work at all. No errors after i reloaded them, no errors in console, everything seems to be okay but all of my scripts are not working at all. Im pretty sure this happened before, and it might be the reason I stopped playing for awhile, because i couldn't write scripts, but ive checked everything and theres no errors or anything it just has like no effect to the server. Not even the scripts with commands show up as commands when you type them in, they just say unknown command. If someone could help me out on this that would be awesome thanks. 🙂

     

    Edit: ive also checked to see if it needed any updates, including the addons, and they don't need an update.

×
×
  • Create New...