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
/* | |
Made by: SymboliXDEV | |
Edited by: Rochet2 | |
Work %: Untested | |
Compile: Success | |
*/ | |
#include "ScriptPCH.h" | |
static const uint32 buffIdstools[] = { 43223, 5862, 33377, 33779, 31305, 70692, 42995 }; |
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
//script made by SymbolixDEV | |
#include "ScriptPCH.h" | |
class login_script : public PlayerScript | |
{ | |
public: | |
login_script() : PlayerScript("login_script") { } | |
void OnLogin(Player* player) | |
{ | |
std::string msg; |
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
/************************************ | |
* Custom Commands * | |
* * | |
* RealityNetGaming * | |
************************************* | |
*/ | |
#include "ScriptPCH.h" | |
#include "Chat.h" |
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
// Unknown creator | |
// Some errors fixed by CyBeR-PrO | |
// Edited by Rochet2 | |
#include "ScriptPCH.h" | |
#include "Channel.h" | |
// only use lowercase letters | |
// The strings are trimmed of whitespace and compared lowercase | |
// To add more checks, just add a new line to the checks array |
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
// Test solution2.cpp : Defines the entry point for the console application. | |
// | |
#include "stdafx.h" | |
#include <algorithm> | |
#include <assert.h> | |
#include <chrono> | |
#include <iostream> | |
#include <math.h> | |
#include <map> |
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
'worldserver.exe' (Win32): Loaded 'E:\Cores\Fork\BUILD\bin\Debug\worldserver.exe'. Symbols loaded. | |
'worldserver.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ntdll.dll'. Cannot find or open the PDB file. | |
'worldserver.exe' (Win32): Loaded 'C:\Windows\SysWOW64\kernel32.dll'. Cannot find or open the PDB file. | |
'worldserver.exe' (Win32): Loaded 'C:\Windows\SysWOW64\KernelBase.dll'. Cannot find or open the PDB file. | |
'worldserver.exe' (Win32): Loaded 'C:\Windows\SysWOW64\user32.dll'. Cannot find or open the PDB file. | |
'worldserver.exe' (Win32): Loaded 'C:\Windows\SysWOW64\gdi32.dll'. Cannot find or open the PDB file. | |
'worldserver.exe' (Win32): Loaded 'C:\Windows\SysWOW64\advapi32.dll'. Cannot find or open the PDB file. | |
'worldserver.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msvcrt.dll'. Cannot find or open the PDB file. | |
'worldserver.exe' (Win32): Loaded 'C:\Windows\SysWOW64\sechost.dll'. Cannot find or open the PDB file. | |
'worldserver.exe' (Win32): Loaded 'C:\Windows\SysWOW64\rpcrt4.dll'. Cannot find or open the PDB file. |
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
#ifndef STACK_INTERFACE_64 | |
#define STACK_INTERFACE_64 | |
#include "wrap64.h" | |
#include "sol.hpp" | |
namespace sol { | |
template <> struct lua_size<int64> : std::integral_constant<int, 1> {}; | |
template <> struct lua_size<uint64> : std::integral_constant<int, 1> {}; | |
template <> struct lua_type_of<int64> : std::integral_constant<sol::type, sol::type::userdata> {}; |
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
local run = false | |
local tabid = 1 | |
local talentid = 1 | |
local learned = false | |
local GetFreeTalentPoints = GetUnspentTalentPoints or GetNumUnspentTalents | |
assert(GetFreeTalentPoints, "No function set for getting unspent talents!") | |
local function ONUPDATE(self, diff) |
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
enum LuaTypeTag | |
{ | |
TNIL, | |
TSTRING, | |
TTABLE, | |
TBOOL, | |
TNUMBER, | |
}; | |
class LuaVal; |
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; | |
using System.Security.Cryptography; | |
using System.Text; | |
using System.Numerics; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Globalization; | |
public static class SRP6CryptoHasher { | |
private static readonly RNGCryptoServiceProvider rngCsp = new RNGCryptoServiceProvider(); |