-
Find the Discord channel in which you would like to send commits and other updates
-
In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using UnityEngine.Serialization; | |
using System; | |
using Unity.Collections; | |
using LiteNetLib; | |
using LiteNetLibManager; | |
using LiteNetLib.Utils; | |
using ReadOnlyAttribute = Unity.Collections.ReadOnlyAttribute; | |
#if UNITY_EDITOR | |
using UnityEditor; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using UnityEngine; | |
using LiteNetLib; | |
using LiteNetLibManager; | |
using LiteNetLib.Utils; | |
using Cysharp.Threading.Tasks; | |
using UnityEngine.Networking; | |
using System; | |
namespace MultiplayerARPG.MMO |
Following the documentation on online.net would get IPv6 to work only in a simple system installation but won't get IPv6 to work with virtualization environment (Exp. Proxmox) as It's missing some IPv6 forwards and proxies on sysctl.conf.
- Change Module Options to Enable IPv6:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function getUncheckedInt32($r) { | |
$r = $r & 0xFFFFFFFF; | |
if ($r & 0x80000000) | |
{ | |
$r = $r & ~0x80000000; | |
$r = -2147483648 + $r; | |
} | |
return $r; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import sys | |
import os | |
import re | |
import subprocess | |
def get_files_subs(file): | |
file = file.rstrip('\n') | |
qfile = quote(file) |