This file contains 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
namespace NAMESPACE | |
{ | |
public enum WindowsMessage | |
{ | |
WM_NULL = 0x0000, | |
WM_CREATE = 0x0001, | |
WM_DESTROY = 0x0002, | |
WM_MOVE = 0x0003, | |
WM_SIZE = 0x0005, | |
WM_ACTIVATE = 0x0006, |
This file contains 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
{ "GetWantBlocking", "", 4096, "", 0, { } } | |
{ "GetDistance", "", 4097, "", 1, { "ObjectReferenceID", } } | |
{ "AddItem", "", 4098, "", 5, { "ObjectID", "Count", "Flag (Optional)", "Level (Optional)", "Equip (Optional)", } } | |
{ "SetEssential", "", 4099, "", 2, { "Actor Base", "Integer (Optional)", } } | |
{ "Rotate", "", 4100, "", 2, { "Axis", "Speed", } } | |
{ "GetLocked", "", 4101, "", 0, { } } | |
{ "GetPos", "", 4102, "", 1, { "Axis", } } | |
{ "SetPos", "", 4103, "", 2, { "Axis", "Float", } } | |
{ "GetAngle", "", 4104, "", 1, { "Axis", } } | |
{ "SetAngle", "", 4105, "", 2, { "Axis", "Float", } } |
This file contains 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
# -*- coding: utf-8 -*- | |
""" | |
Данные с адресом, логином, паролем хранятся в конфигурационном файле следующего вида: | |
[Router] | |
ip_addr = 192.168.1.1:8080 | |
login = admin | |
passw = anyPassword |
This file contains 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
REM Delete eval folder with licence key and options.xml which contains a reference to it | |
for %%I in ("WebStorm", "IntelliJ", "CLion", "Rider", "GoLand", "PhpStorm", "Resharper", "PyCharm") do ( | |
for /d %%a in ("%USERPROFILE%\.%%I*") do ( | |
rd /s /q "%%a/config/eval" | |
del /q "%%a\config\options\other.xml" | |
) | |
) | |
REM Delete registry key and jetbrains folder (not sure if needet but however) | |
rmdir /s /q "%APPDATA%\JetBrains" |