Skip to content
View JulianDicken's full-sized avatar
🦐
🦐
  • Sweden
  • 20:15 (UTC +02:00)

Highlights

  • Pro
Block or Report

Block or report JulianDicken

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Broadcast Broadcast Public archive

    An Event Handling library written in gml.

    Game Maker Language 13

  2. FastSM FastSM Public

    Game Maker Language 6 1

  3. A UUID4 String Generator for GML A UUID4 String Generator for GML
    1
    function generate_uuid4_string() {
    2
        //As per https://www.cryptosys.net/pki/uuid-rfc4122.html
    3
        //FIXME - Do this without random()/choose() calls
    4
        var _UUID = sha1_string_utf8(string(current_time) + string(date_current_datetime()) + string(random(0xFFFFFF)));
    5
            _UUID = string_set_byte_at(_UUID, 9,  0x2D)