Skip to content
View PakL's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report PakL

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

  1. TTVStreamerTool TTVStreamerTool Public

    TTVST is an application aimed at Twitch streamer.

    TypeScript 3 1

  2. ttvst-chatbot ttvst-chatbot Public

    Chatbot for TTVST

    JavaScript

  3. ProcessAffinityWatcher ProcessAffinityWatcher Public

    Watch processes and automatically set processor affinity.

    C#

  4. savegame_manager savegame_manager Public

    Savegame manager (primarily meant for DD2)

    Rust 1

  5. Nightbot command to roll dice Nightbot command to roll dice
    1
    Simple Nightbot command to roll any number of any kind of dice
    2
    
                  
    3
    ```
    4
    $(eval var i=parseInt,d=[],e='$(provider)'=='twitch'?'melziiD20':'🎲20',j=0,l,m='$(query)'.match(/^(([0-9]+)\s+)?(([0-9]+)?d([0-9]+)|([0-9]+))$/)??{},c=i(m[2]??1),n=i(m[4]??1),s=i(m[5]??m[6]??20);c=c>20?20:(c<1||!c?1:c);n=(n<1?1:n);s=(s<1?1:s);for(;j<c;j+=1){d.push(Math.round(n*(s-1)*Math.random())+n)}r=`$(user) rolled ${d.join(', ')} with ${n<2?'a ':n+'×'}🎲`+s;l=r.lastIndexOf(',');(l<0?r:r.substr(0,l)+' and'+r.substr(l+1)).replace(/( |🎲)20(,| |$)/g,` ${ e } $2`))
    5
    ```