28 lines
1.1 KiB
Markdown
28 lines
1.1 KiB
Markdown
# PolygonDLLUtilities
|
|
Manages DLLs for extending game client/server functionality
|
|
|
|
Based off [ndoesstuff/JoinScriptUrlImpl](https://github.com/ndoesstuff/JoinScriptUrlImpl) as per the MIT license
|
|
|
|
Test trust check:
|
|
> Insert a new brick with decal
|
|
> Try setting decal ID to http://tadah.rocks - Should succeed
|
|
> Try setting decal ID to http://tadah.rocks@example.com - Should fail
|
|
|
|
Test signature check:
|
|
> Run `loadfile("rbxasset://signatureinvalid.txt")()` - Should throw an exception
|
|
> Run `loadfile("rbxasset://signatureoverflow.txt")()` - Should throw an exception
|
|
|
|
Test command line parameter reimplementation (2010/2011 builds only):
|
|
> `> RobloxApp.exe -a http://polygondev.pizzaboxer.xyz/login/negotiate.ashx -t 0 -j http://polygondev.pizzaboxer.xyz/game/visit.ashx`
|
|
|
|
Test DataModel creation (Arbiter builds only):
|
|
> Run `print("NewGame")` - Should create a new DataModel with an executed script
|
|
|
|
# vcpkg
|
|
```
|
|
> git clone https://github.com/microsoft/vcpkg
|
|
> .\vcpkg\bootstrap-vcpkg.bat
|
|
> .\vcpkg\vcpkg integrate install
|
|
> .\vcpkg\vcpkg integrate project
|
|
```
|