WolvSK (1.8-1.16.1)

Addon WolvSK (1.8-1.16.1) 1.7.2

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

Can someone please help me getting the sk to successfully dm someone? I have tried loads of things, but none seem to work. Please reply with a working dm skript. thanks!
 
Can someone please help me getting the sk to successfully dm someone? I have tried loads of things, but none seem to work. Please reply with a working dm skript. thanks!

"dm"? as in like demote for like a ranking system? If thats the case I may have an idea
 
steer not fount in 1.11
[Skript] can't understand this event: 'on vehicle steer' (SSpetes.sk, line 113: on vehicle steer:')
HELP :c
 
Yeah i have this
Oh I didn't watch your code in details. The steer event didn't work like with RandomSK, there is an event per direction:
Code:
on vehicle steer left:
on vehicle steer right:
on vehicle steer forward:
on vehicle steer backward:
on vehicle steer jump:
 
Oh I didn't watch your code in details. The steer event didn't work like with RandomSK, there is an event per direction:
Code:
on vehicle steer left:
on vehicle steer right:
on vehicle steer forward:
on vehicle steer backward:
on vehicle steer jump:
Oooohhhh thanks You smucho
Oh I didn't watch your code in details. The steer event didn't work like with RandomSK, there is an event per direction:
Code:
on vehicle steer left:
on vehicle steer right:
on vehicle steer forward:
on vehicle steer backward:
on vehicle steer jump:
Oooohhhh thanks You so muuuuch❤❤❤❤❤❤❤❤
 
Oh I didn't watch your code in details. The steer event didn't work like with RandomSK, there is an event per direction:
Code:
on vehicle steer left:
on vehicle steer right:
on vehicle steer forward:
on vehicle steer backward:
on vehicle steer jump:
Hi :c i'm taking a mob how my vehicle, how i can do to this move when i press "A" "S" "D" "W"?
sorry :c
 
You can use push:
Example:
Code:
on vehicle steer forward:
   vehicle of player is on ground
   push vehicle of player horizontally forward at speed 1
on vehicle steer backward:
   vehicle of player is on ground
   push vehicle of player horizontally backwards at speed 0.1
 
Hey "if player is afk" works but "if player is not afk" doesn't work can u fix that?
Also can u add on sethome and on home teleport events?
[doublepost=1497998585,1497200203][/doublepost]Can you add "delete cooldown %text% of %player%" ? Because it doesn't finish every 5 second it gives me test message :emoji_grinning: (Or maybe you can add on cooldown finish: event instead of every 5 second: event?)
code_language.skript:
every 5 second:
    loop all players:
        if cooldown "loop-player" is set:
            if cooldown "%loop-player%" of loop-player is finish:
                send "test" to loop-player
 
Hello, I have a problem with askyblock expressions:

When I do this:

code_language.skript:
command /iu:
    trigger:
        set {_o} to askyblock owner of island at player's location
        set {_miembros::*} to askyblock members of team of {_o}
            if {_miembros::*} contains player:
                send "You are on your island" to player

It doesn't work and it shows a console error: https://pastebin.com/1f9wcexE


However, if I do this, it doesn't show any error:

code_language.skript:
command /iu:
    trigger:
        set {_o} to askyblock owner of island at player's location
        set {_miembros::*} to askyblock members of team of {_o}
        send "Your team members: %{_miembros::*}%" to player

It seems like conditional doesn't work.
 
Nashoba updated WolvSK (1.8 to 1.12) with a new update entry:

WolvSK 1.5.6

  • Fix a bug with the lobby of minigames in unloaded worlds
  • Set the minimum of player to 1 for minigames
  • Fix an error with ASkyBlock

Read the rest of this update entry...
[doublepost=1499161932,1499161817][/doublepost]
Hello, I have a problem with askyblock expressions:

When I do this:

code_language.skript:
command /iu:
    trigger:
        set {_o} to askyblock owner of island at player's location
        set {_miembros::*} to askyblock members of team of {_o}
            if {_miembros::*} contains player:
                send "You are on your island" to player

It doesn't work and it shows a console error: https://pastebin.com/1f9wcexE


However, if I do this, it doesn't show any error:

code_language.skript:
command /iu:
    trigger:
        set {_o} to askyblock owner of island at player's location
        set {_miembros::*} to askyblock members of team of {_o}
        send "Your team members: %{_miembros::*}%" to player

It seems like conditional doesn't work.
Try the new version: 1.5.6
 
Hey "if player is afk" works but "if player is not afk" doesn't work can u fix that?
Also can u add on sethome and on home teleport events?
[doublepost=1497998585,1497200203][/doublepost]Can you add "delete cooldown %text% of %player%" ? Because it doesn't finish every 5 second it gives me test message :emoji_grinning: (Or maybe you can add on cooldown finish: event instead of every 5 second: event?)
code_language.skript:
every 5 second:
    loop all players:
        if cooldown "loop-player" is set:
            if cooldown "%loop-player%" of loop-player is finish:
                send "test" to loop-player
Any idea?
 
Hey "if player is afk" works but "if player is not afk" doesn't work can u fix that?
Also can u add on sethome and on home teleport events?
[doublepost=1497998585,1497200203][/doublepost]Can you add "delete cooldown %text% of %player%" ? Because it doesn't finish every 5 second it gives me test message :emoji_grinning: (Or maybe you can add on cooldown finish: event instead of every 5 second: event?)
code_language.skript:
every 5 second:
    loop all players:
        if cooldown "loop-player" is set:
            if cooldown "%loop-player%" of loop-player is finish:
                send "test" to loop-player
Sorry for the delay... I'm very busy and demotivated at the moment :emoji_confused:
I'll add negation for conditions.
The events "on sethome" and "on home teleport" doesn't exist in Essentials. You can use the "on command" event.

I'll add the delete cooldown effect but your skript seems false. Try this:
code_language.skript:
every 5 second:
    loop all players:
        if cooldown "test" of loop-player is finish:
            send "test" to loop-player


It doesn't work neither.
It shows null for player who has not connected recently.
Maybe the problem come from ASkyBlock?
 
Sorry for the delay... I'm very busy and demotivated at the moment :emoji_confused:
I'll add negation for conditions.
The events "on sethome" and "on home teleport" doesn't exist in Essentials. You can use the "on command" event.

I'll add the delete cooldown effect but your skript seems false. Try this:
code_language.skript:
every 5 second:
    loop all players:
        if cooldown "test" of loop-player is finish:
            send "test" to loop-player



Maybe the problem come from ASkyBlock?
I know another addon which returns none instead of null, so it doesn't produce an error.