Skript icon indicating copy to clipboard operation
Skript copied to clipboard

`on form` event does not fire

Open fucksophie opened this issue 1 year ago • 2 comments

Skript/Server Version

[02:35:47 INFO]: [Skript] Skript's aliases can be found here: https://github.com/SkriptLang/skript-aliases
[02:35:47 INFO]: [Skript] Skript's documentation can be found here: https://skriptlang.github.io/Skript
[02:35:47 INFO]: [Skript] Server Version: git-Paper-387 (MC: 1.18.2)
[02:35:47 INFO]: [Skript] Skript Version: 2.6.2
[02:35:47 INFO]: [Skript] Installed Skript Addons: 
[02:35:47 INFO]: [Skript]  - skript-gui v1.3 (https://github.com/APickledWalrus/skript-gui)
[02:35:47 INFO]: [Skript]  - skDragon v0.17-alex-MC1.18-hack-4
[02:35:47 INFO]: [Skript] Installed dependencies: 
[02:35:47 INFO]: [Skript]  - Vault v1.7.3-b131
[02:35:47 INFO]: [Skript]  - WorldGuard v7.0.7+216b061

Bug Description

on form of cobblestone:

just doesn't fire for whatever reason.. cobblestone gens are basically impossible to run because of that

Expected Behavior

the on form of cobblestone to fire

Steps to Reproduce

on form of cobblestone:
 broadcast "hi!"

this will not work :(

Errors or Screenshots

there are no actual errors from skript

Other

there is a very good workaround for this

on block physics:
    set {actually.prev} to {previous.block}
    set {previous.block} to event-block

    if {actually.prev} is flowing lava:
        if event-block is cobblestone block:
            chance of 30%:
                set event-block to coal ore
                stop

but this wouldn't work for anything other than cobblestone

also, yes this is a duplicate of #63 but because that's been closed for ages and won't be responded on I have decided to make a new issue

Agreement

  • [X] I have read the guidelines above and affirm I am following them with this report.

fucksophie avatar Sep 14 '22 02:09 fucksophie

So @yourfriendoss, I'm unable to reproduce this issue. It worked as intended on 2.6.2 and same on 2.6.3. Have you tried updating to 2.6.3? That is the current latest release might fix your issue. If not are you reloading the correct file and is it saving before you reload?

Fusezion avatar Sep 14 '22 02:09 Fusezion

I'm not sure what happened! This sometimes works,, sometimes doesn't.. Just.. I don't know.. Restart your server if you run into this?

fucksophie avatar Sep 19 '22 10:09 fucksophie

Can you provide your plugin list. You may have a plugin manipulating the event.

TheLimeGlass avatar Sep 24 '22 08:09 TheLimeGlass

You can also change Skript's event priority to highest. That way Skript reads the event before other plugins.

TheLimeGlass avatar Sep 24 '22 08:09 TheLimeGlass

Now thinking about it, I probably did. Allthouuughh, I didn't have many plugins running on my setup. Only skript and some addons.. I've since switched over to a fully java setup so I can't really do anything :(

fucksophie avatar Sep 26 '22 04:09 fucksophie