JumpSlime

  • 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.

FabricioSouza

Well-Known Member
Mar 15, 2018
267
3
0
25
Well, I'm making a minigames server and I'm willing to do that system when a player steps on a slime. It's played only forward. I do not want the player to be pushed to the right, left, or back side, but to the front desk, like the HYPIXEL, in the skywars lobby (the old lobby) has a plate place on the right and left side and I wanted it that way. Also if someone help me do it for me with a speed system, please.
 
code_language.skript:
on step on slimeblock:
    push player forwards with speed 5
(Untested)
 
If you want that you cant even go to the right or left that it just goes forward you might need to use ToolAPI's make player look to east
or make the player ride a invisible saddled pig and when the push stops kill the pig

i think you need skript like this.
This might not work, because i can´t test skripts atm

code_language.skript:
on step on 165:
  set {_pushing} to 1
  push player upwards at speed 2
  push player forwards at speed 5
  wait 1 tick
  make player ride a saddled pig
  set {_push} to last spawned pig 
  push {_push} upwards at speed 2
  push {_push} forwards at speed 5
  wait 10 ticks
  kill {_push}
  wait 1 second
  delete {_push}
  set {_pushing} to 0

on vehicle exit:
  if {_pushing} = 1:
    cancel event


Thanks

-Peivi
 
For this problem to be solved, I need at least to have those particles equal to the hypixel in the Slime where the player is played to the npc.
 
For this problem to be solved, I need at least to have those particles equal to the hypixel in the Slime where the player is played to the npc.
are you incapable of doing anything yourself? if you aren't going to put in any work then use the requests section
 
Status
Not open for further replies.