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

This release fix some bugs, and add Skript version to Metrics.
Fix error not showing in sections
Fix ExprMarkerWithID bug
Fix ExprAreaWithID bug
✨ Add Skript Version to Metrics
Update version to 1.2.2
Reformat code
Remove test command
Link: https://github.com/Skylyxx/skdynmap/releases/tag/1.2.2
SkDynmap v1.2.1 adds support of Skript 2.6-alpha1, but also some bug fixes and optimizations.

Link: https://github.com/Skylyxx/skdynmap/releases/tag/1.2.1
SkDynmap v1.2 adds support of chunks for areas locations, with the corners of %chunks% expression. This version add also players visibility support. Finally, it add an event to detect renders.

Adding support of chunks:
corners of %chunks%
Code:
    command /makechunks:
        trigger:
            make area:
                set id of area to "chunk_id"
                set name of area to "Chunks"
                set locations of area to corners of {chunk::*}
            create area from last area
            send "Ok!"
Adding support of players visibility:
%player's% visibility
Code:
command /show:
    trigger:
        set player's visibility to true
        send "You are now visible on the map!"
%player% is visible
Code:
command /isvisible <player>:
    trigger:
        if arg-1 is visible:
            send "yes"
        else:
            send "no"
Adding event that detects renders
[on] [[sk]dynmap] [map] render:
Code:
on render:
    if  {skdynmap-disable}  is  true:
        cancel event
        send "The render event has been cancelled !"  to console
For others questions, you can contact me on Skript Chat's discord: https://discord.gg/uetAHQc

Download: https://github.com/Skylyxx/skdynmap/releases/tag/1.2
Documentation: https://skripthub.net/docs/?addon=SkDynmap or https://docs.skunity.com/syntax/search/addon:Skdynmap