[RELEASE]How to Ban IP By CharName :D 09/06/2016 - SRO PServer Guides & Releases - 10 Replies :mofo: Credits to :handsdown:@Caipi:handsdown:
query to create table to store the ip of the players
USE Log_DB
CREATE TABLE _IPLogs (
int IDENTITY(1,1) PRIMARY KEY,
int,
varchar(max),
varchar(max),
datetime
CharName IP Ban 05/24/2014 - Shaiya PServer Guides & Releases - 3 Replies * To ban all accounts on IP of a char name*
SELECT um.UserIp INTO #Temp FROM PS_GameData.dbo.Chars c
INNER JOIN PS_UserData.dbo.Users_Master um ON um.UserUID=c.UserUID
WHERE c.CharName = 'ExactNameHere' AND c.Del = 0
UPDATE PS_UserData.dbo.Users_Master
SET = -1
WHERE UserIp IN (SELECT UserIp FROM #Temp)
How to Ban IP By CharName 08/05/2012 - SRO PServer Guides & Releases - 7 Replies Press Thnx if work
My Query to Ban Player
--By Leandro ( nukertube ) --
USE
GO
--------------------------------
DECLARE @ChrID INT;
[Help]Charname need to have.... 02/14/2009 - Dekaron Private Server - 4 Replies Ok i editet soem stuff and dont get the massage
XXXXX
and then i get the massage Charakter need to have atleast 4 charaters in it.
Anyone can help me or gimme a hint how i can pass that ?
->or need i any programms like OllyDbG ?
greets and thx
DLL's to Read Charname, Level, Arrows, HP, Etc... 04/05/2008 - CO2 Exploits, Hacks & Tools - 6 Replies Hello people!
i have made finally my DLL to read all information,
COMemReader.dll and COHPReader.dll
this is for COMemreader.dll:
here i show you how to make it work if you want to use this DLL:
you need to put this DLL's as References to your project :)