|
You last visited: Today at 12:00
Advertisement
[Release]Wanted System working 100%
Discussion on [Release]Wanted System working 100% within the SRO PServer Guides & Releases forum part of the SRO Private Server category.
09/16/2014, 04:04
|
#1
|
elite*gold: 0
Join Date: Jun 2014
Posts: 90
Received Thanks: 40
|
[Release]Wanted System working 100%
Hello Elitepvpers
Too many ppl was searching for this system .. i decided to release it working 100% and it's tested too .. i think it was released before on other forum but it wasn't full .. anyway here we go
Quote:
USE [SRO_VT_SHARDLOG]
GO
/****** Object: StoredProcedure [dbo].[_Wanted] Script Date: 9/15/2014 6:57:19 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
Create procedure [dbo].[_Wanted]
@CharID int,
@EventID tinyint,
@Desc varchar(128)
as
Declare @Kc int
Declare @CharName VARCHAR(52) = (SELECT CharName16 FROM SRO_VT_SHARD.dbo._Char WHERE CharID = @CharID)
DECLARE @K_Name VARCHAR(512) = @Desc
SELECT @K_Name = REPLACE(@K_Name, LEFT(@K_Name, CHARINDEX('(', @K_Name)), '')
SELECT @K_Name = REPLACE(@K_Name, RIGHT(@K_Name, CHARINDEX(')', REVERSE(@K_Name))), '')
----- Killed CharID
DECLARE @K_CharID INT =(SELECT CharID FROM [SRO_VT_SHARD].[dbo].[_Char] WHERE CharName16 = @K_Name)
------
-- Ip Config
DECLARE @IP_Secure VARCHAR(MAX) = (SELECT IP FROM SRO_VT_SHARDLOG.dbo._IPLogs WHERE CharID = @K_CharID)
DECLARE @IP_Secure_2 VARCHAR(MAX) = (select IP from SRO_VT_SHARDLOG.dbo._IPLogs WHERE CharID = @CharID)
-- Limits
-- Check if he kills the char more than 3 times
DECLARE @PKill int = (select COUNT(*) from _RowKills where KillerID = @CharID and KilledID = @K_CharID)
DECLARE @MaxK int = (select COUNT(Kills) from _RowKills where KillerID = @CharID and Kills = '1')
IF ( @PKill <= '2' and @MaxK <= '50' )
BEGIN
IF (@IP_Secure != @IP_Secure_2)
BEGIN
INSERT INTO _RowKills (KillerID , KilledID , Kills) VALUES (@CharID , @K_CharID,'1')
END
END
----- End inserting
SET @Kc = (SELECT COUNT(Kills) FROM _RowKills WHERE KillerID = @CharID and Kills = '1' )--and Recived = 'OFF')
--- if he kills 10 in row give him the buff -- give Wanted level 1
IF @Kc = '10' AND NOT EXISTS (SELECT * FROM SRO_VT_SHARD.dbo._TimedJob where CharID = @CharID and JobID = '33862' or CharID = @CharID and JobID between '50021' and '50024')
BEGIN
INSERT INTO SRO_VT_SHARD.dbo._TimedJob (CharID ,Category , JobID , TimeToKeep , Data1 , Data2 , Data3 , Data4 , Data5 , Data6, Data7 , Data8 , Serial64 , JID )
---- Values
VALUES (@CharID , 0 , 33862 , 3600 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 72339069015696862 , 0 )
INSERT INTO PlusNotice VALUES ('0',+@CharName+' : is Wanted "Hero Mode - 10Kills in row [Wanted Lv1]"',GETDATE(),'8')
END
--- if he kills 20 in row give him the buff -- give Wanted level 2
IF @Kc = '20' AND NOT EXISTS (SELECT * FROM SRO_VT_SHARD.dbo._TimedJob where CharID = @CharID and JobID between '50021' and '50024')
BEGIN
INSERT INTO PlusNotice VALUES ('0',+@CharName+' : is Wanted "Hero Mode - 20Kills in row [Wanted Lv2]"',GETDATE(),'8')
IF EXISTS (SELECT * FROM SRO_VT_SHARD.dbo._TimedJob where CharID = @CharID and JobID = '33862')
BEGIN
DELETE FROM SRO_VT_SHARD.dbo._TimedJob where CharID = @CharID and JobID = '33862'
INSERT INTO SRO_VT_SHARD.dbo._TimedJob (CharID ,Category , JobID , TimeToKeep , Data1 , Data2 , Data3 , Data4 , Data5 , Data6, Data7 , Data8 , Serial64 , JID ) VALUES (@CharID , 0 , 50021 , 3600 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 72339069015696862 , 0 )
END
ElSE IF NOT EXISTS (SELECT * FROM SRO_VT_SHARD.dbo._TimedJob where CharID = @CharID and JobID = '33862')
BEGIN
INSERT INTO SRO_VT_SHARD.dbo._TimedJob (CharID ,Category , JobID , TimeToKeep , Data1 , Data2 , Data3 , Data4 , Data5 , Data6, Data7 , Data8 , Serial64 , JID ) VALUES (@CharID , 0 , 50021 , 3600 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 72339069015696862 , 0 )
END
END
--- if he kills 30 in row give him the buff -- give Wanted level 3
IF @Kc = '30' AND NOT EXISTS (SELECT * FROM SRO_VT_SHARD.dbo._TimedJob where CharID = @CharID and JobID between '50022' and '50024')
BEGIN
INSERT INTO PlusNotice VALUES ('0',+@CharName+' : is Wanted "Hero Mode - 30Kills in row [Wanted Lv3]"',GETDATE(),'8')
IF EXISTS (SELECT * FROM SRO_VT_SHARD.dbo._TimedJob where CharID = @CharID and JobID = '50021' or CharID = @CharID and JobID = '33862')
BEGIN
DELETE FROM SRO_VT_SHARD.dbo._TimedJob where CharID = @CharID and JobID = '50021' or CharID = @CharID and JobID = '33862'
INSERT INTO SRO_VT_SHARD.dbo._TimedJob (CharID ,Category , JobID , TimeToKeep , Data1 , Data2 , Data3 , Data4 , Data5 , Data6, Data7 , Data8 , Serial64 , JID ) VALUES (@CharID , 0 , 50022 , 3600 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 72339069015696862 , 0 )
END
ElSE IF NOT EXISTS (SELECT * FROM SRO_VT_SHARD.dbo._TimedJob where CharID = @CharID and JobID = '50021' or CharID = @CharID and JobID = '33862')
BEGIN
INSERT INTO SRO_VT_SHARD.dbo._TimedJob (CharID ,Category , JobID , TimeToKeep , Data1 , Data2 , Data3 , Data4 , Data5 , Data6, Data7 , Data8 , Serial64 , JID ) VALUES (@CharID , 0 , 50022 , 3600 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 72339069015696862 , 0 )
END
END
--- if he kills 40 in row give him the buff -- give Wanted level 4
IF @Kc = '40' AND NOT EXISTS (SELECT * FROM SRO_VT_SHARD.dbo._TimedJob where CharID = @CharID and JobID between '50023' and '50024')
BEGIN
INSERT INTO PlusNotice VALUES ('0',+@CharName+' : is Wanted "Hero Mode - 40Kills in row [Wanted Lv4]"',GETDATE(),'8')
IF EXISTS (SELECT * FROM SRO_VT_SHARD.dbo._TimedJob where CharID = @CharID and JobID = '50022' or CharID = @CharID and JobID = '33862' or CharID = @CharID and JobID = '50021')
BEGIN
DELETE FROM SRO_VT_SHARD.dbo._TimedJob where CharID = @CharID and JobID = '50022' or CharID = @CharID and JobID = '33862' or CharID = @CharID and JobID = '50021'
INSERT INTO SRO_VT_SHARD.dbo._TimedJob (CharID ,Category , JobID , TimeToKeep , Data1 , Data2 , Data3 , Data4 , Data5 , Data6, Data7 , Data8 , Serial64 , JID ) VALUES (@CharID , 0 , 50023 , 3600 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 72339069015696862 , 0 )
END
ElSE IF NOT EXISTS (SELECT * FROM SRO_VT_SHARD.dbo._TimedJob where CharID = @CharID and JobID = '50022' or CharID = @CharID and JobID = '33862' or CharID = @CharID and JobID = '50021')
BEGIN
INSERT INTO SRO_VT_SHARD.dbo._TimedJob (CharID ,Category , JobID , TimeToKeep , Data1 , Data2 , Data3 , Data4 , Data5 , Data6, Data7 , Data8 , Serial64 , JID ) VALUES (@CharID , 0 , 50023 , 3600 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 72339069015696862 , 0 )
END
END
--- if he kills 50 in row give him the buff -- give Wanted level 5
IF @Kc = '50' AND NOT EXISTS (SELECT * FROM SRO_VT_SHARD.dbo._TimedJob where CharID = @CharID and JobID = '50024')
BEGIN
INSERT INTO PlusNotice VALUES ('0',+@CharName+' : is Wanted "Hero Mode - 50Kills in row [Wanted Lv5]"',GETDATE(),'8')
DELETE FROM _RowKills WHERE KillerID = @CharID
IF EXISTS (SELECT * FROM SRO_VT_SHARD.dbo._TimedJob where CharID = @CharID and JobID = '50023' or CharID = @CharID and JobID = '33862' or CharID = @CharID and JobID = '50021' or CharID = @CharID and JobID = '50023')
BEGIN
DELETE FROM SRO_VT_SHARD.dbo._TimedJob where CharID = @CharID and JobID = '50023' or CharID = @CharID and JobID = '33862' or CharID = @CharID and JobID = '50021' or CharID = @CharID and JobID = '50023'
INSERT INTO SRO_VT_SHARD.dbo._TimedJob (CharID ,Category , JobID , TimeToKeep , Data1 , Data2 , Data3 , Data4 , Data5 , Data6, Data7 , Data8 , Serial64 , JID ) VALUES (@CharID , 0 , 50024 , 3600 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 72339069015696862 , 0 )
END
ElSE IF NOT EXISTS (SELECT * FROM SRO_VT_SHARD.dbo._TimedJob where CharID = @CharID and JobID = '50023' or CharID = @CharID and JobID = '33862' or CharID = @CharID and JobID = '50021' or CharID = @CharID and JobID = '50023')
BEGIN
INSERT INTO SRO_VT_SHARD.dbo._TimedJob (CharID ,Category , JobID , TimeToKeep , Data1 , Data2 , Data3 , Data4 , Data5 , Data6, Data7 , Data8 , Serial64 , JID ) VALUES (@CharID , 0 , 50024 , 3600 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 72339069015696862 , 0 )
END
END
|
It just requires some little edits like :
1- Creating skills and replacing their ids
2- creating _PlusNotice Table on Log_DB ..
3- creating _IPLogs Table on LOG_DB to avoid cheating .. that's all
Haters gonna hate .
press thanks if i helped.
|
|
|
09/16/2014, 06:23
|
#2
|
elite*gold: 0
Join Date: Mar 2013
Posts: 169
Received Thanks: 82
|
Then Where Media Lines / Date Files
How It Work ?
If I Am GM How To Use It ?
Plus
This Error Appear To Me When i execute it
Msg 102, Level 15, State 1, Procedure _Wanted, Line 101
Incorrect syntax near '5'.
|
|
|
09/16/2014, 07:09
|
#3
|
elite*gold: 28
Join Date: Aug 2014
Posts: 4,096
Received Thanks: 2,653
|
I am not against sharing but stop sharing people's work...
If they want to share it then they will
|
|
|
09/16/2014, 08:47
|
#4
|
elite*gold: 0
Join Date: Nov 2011
Posts: 80
Received Thanks: 8
|
hmm.. not working .. can u explain more ?
|
|
|
09/22/2014, 08:39
|
#5
|
elite*gold: 0
Join Date: Aug 2014
Posts: 66
Received Thanks: 29
|
You Forget Wanted Effect Scroll !! Which Appeared When Toke The Skill Level 1 Like GM Logo !
|
|
|
09/22/2014, 13:55
|
#6
|
elite*gold: 20
Join Date: May 2010
Posts: 503
Received Thanks: 69
|
where Database Lines+data+media+particles+AddLogChar+Tables LoL Fail
|
|
|
09/22/2014, 14:43
|
#7
|
elite*gold: 0
Join Date: Nov 2009
Posts: 1,514
Received Thanks: 891
|
Trash.
|
|
|
09/22/2014, 16:36
|
#8
|
elite*gold: 0
Join Date: Feb 2014
Posts: 76
Received Thanks: 8
|
Quote:
Originally Posted by funkynagy
where Database Lines+data+media+particles+AddLogChar+Tables LoL Fail 
|
I said you have to create refobjcommon-refobjitem-refskill by yourselfes .. _AddLogChar ? i didn't knew about that  anyway im going to get it as soon as i have a free time ..
Tables????????????????????? Wanted system needs Tables??????????????? i suggest you edit ur reply and delete tables..
Quote:
Originally Posted by funkynagy
where Database Lines+data+media+particles+AddLogChar+Tables LoL Fail 
|
Quote:
Originally Posted by ahmed4ever2u
Trash.
|
Iam not sure if it's full or not .. i hope you tell me what's remaining so i can share it
|
|
|
09/22/2014, 17:42
|
#9
|
elite*gold: 0
Join Date: Apr 2008
Posts: 110
Received Thanks: 7
|
and need add skill in media, database, scroll. i have the 100% work in all database.
|
|
|
09/22/2014, 20:56
|
#10
|
elite*gold: 0
Join Date: Aug 2014
Posts: 66
Received Thanks: 29
|
RefSkill
& Skilldataenc_xxx
PHP Code:
1 80054 60031 SKILL_SKALIDOR_WANTED_S_02 ?:??? ? SKILL_SKALIDOR_WANTED_S_2 0 2 1 0 99999999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 0 0 0 0 0 255 255 255 255 skill\china\wanted.ddj SN_SKILL_SKALIDOR_WANTED_S_2 xxx SN_SKILL_SKALIDOR_WANTED_S_2_TT_DESC SN_SKILL_SKALIDOR_WANTED_S_2_STUDY 0 0 3 1667396966 1851946342 1685418593 3600000 6582901 2 2 1868849522 2 2 25970 0 2 26738 0 2 1819632491 2 1634493301 1 1937011305 2 0 1768846441 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
1 80055 60031 SKILL_SKALIDOR_WANTED_S_03 ?:??? ? SKILL_SKALIDOR_WANTED_S_3 0 3 1 0 99999999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 0 0 0 0 0 255 255 255 255 skill\china\wanted.ddj SN_SKILL_SKALIDOR_WANTED_S_3 xxx SN_SKILL_SKALIDOR_WANTED_S_3_TT_DESC SN_SKILL_SKALIDOR_WANTED_S_3_STUDY 0 0 3 1667396966 1851946342 1685418593 3600000 6582901 3 3 1868849522 3 3 25970 0 3 26738 0 3 1819632491 3 1634493301 1 1937011305 3 0 1768846441 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
1 80056 60031 SKILL_SKALIDOR_WANTED_S_04 ?:??? ? SKILL_SKALIDOR_WANTED_S_4 0 4 1 0 99999999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 0 0 0 0 0 255 255 255 255 skill\china\wanted.ddj SN_SKILL_SKALIDOR_WANTED_S_4 xxx SN_SKILL_SKALIDOR_WANTED_S_4_TT_DESC SN_SKILL_SKALIDOR_WANTED_S_4_STUDY 0 0 3 1667396966 1851946342 1685418593 3600000 6582901 4 4 1868849522 4 4 25970 0 4 26738 0 4 1819632491 4 1634493301 1 1937011305 3 0 1768846441 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
1 80057 60031 SKILL_SKALIDOR_WANTED_S_05 ?:??? ? SKILL_SKALIDOR_WANTED_S_5 0 5 1 0 99999999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 0 0 0 0 0 255 255 255 255 skill\china\wanted.ddj SN_SKILL_SKALIDOR_WANTED_S_5 xxx SN_SKILL_SKALIDOR_WANTED_S_5_TT_DESC SN_SKILL_SKALIDOR_WANTED_S_5_STUDY 0 0 3 1667396966 1851946342 1685418593 3600000 6582901 5 5 1868849522 5 5 25970 0 5 26738 0 5 1819632491 5 1634493301 1 1937011305 3 0 1768846441 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
|
09/22/2014, 21:59
|
#11
|
elite*gold: 0
Join Date: Feb 2014
Posts: 76
Received Thanks: 8
|
Quote:
Originally Posted by Jon.Gamexen
RefSkill
& Skilldataenc_xxx
PHP Code:
1 80054 60031 SKILL_SKALIDOR_WANTED_S_02 ?:??? ? SKILL_SKALIDOR_WANTED_S_2 0 2 1 0 99999999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 0 0 0 0 0 255 255 255 255 skill\china\wanted.ddj SN_SKILL_SKALIDOR_WANTED_S_2 xxx SN_SKILL_SKALIDOR_WANTED_S_2_TT_DESC SN_SKILL_SKALIDOR_WANTED_S_2_STUDY 0 0 3 1667396966 1851946342 1685418593 3600000 6582901 2 2 1868849522 2 2 25970 0 2 26738 0 2 1819632491 2 1634493301 1 1937011305 2 0 1768846441 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
1 80055 60031 SKILL_SKALIDOR_WANTED_S_03 ?:??? ? SKILL_SKALIDOR_WANTED_S_3 0 3 1 0 99999999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 0 0 0 0 0 255 255 255 255 skill\china\wanted.ddj SN_SKILL_SKALIDOR_WANTED_S_3 xxx SN_SKILL_SKALIDOR_WANTED_S_3_TT_DESC SN_SKILL_SKALIDOR_WANTED_S_3_STUDY 0 0 3 1667396966 1851946342 1685418593 3600000 6582901 3 3 1868849522 3 3 25970 0 3 26738 0 3 1819632491 3 1634493301 1 1937011305 3 0 1768846441 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
1 80056 60031 SKILL_SKALIDOR_WANTED_S_04 ?:??? ? SKILL_SKALIDOR_WANTED_S_4 0 4 1 0 99999999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 0 0 0 0 0 255 255 255 255 skill\china\wanted.ddj SN_SKILL_SKALIDOR_WANTED_S_4 xxx SN_SKILL_SKALIDOR_WANTED_S_4_TT_DESC SN_SKILL_SKALIDOR_WANTED_S_4_STUDY 0 0 3 1667396966 1851946342 1685418593 3600000 6582901 4 4 1868849522 4 4 25970 0 4 26738 0 4 1819632491 4 1634493301 1 1937011305 3 0 1768846441 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
1 80057 60031 SKILL_SKALIDOR_WANTED_S_05 ?:??? ? SKILL_SKALIDOR_WANTED_S_5 0 5 1 0 99999999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 0 0 0 0 0 255 255 255 255 skill\china\wanted.ddj SN_SKILL_SKALIDOR_WANTED_S_5 xxx SN_SKILL_SKALIDOR_WANTED_S_5_TT_DESC SN_SKILL_SKALIDOR_WANTED_S_5_STUDY 0 0 3 1667396966 1851946342 1685418593 3600000 6582901 5 5 1868849522 5 5 25970 0 5 26738 0 5 1819632491 5 1634493301 1 1937011305 3 0 1768846441 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
thank you
|
|
|
09/22/2014, 23:31
|
#12
|
elite*gold: 20
Join Date: May 2010
Posts: 503
Received Thanks: 69
|
Quote:
Originally Posted by kingmoka
I said you have to create refobjcommon-refobjitem-refskill by yourselfes .. _AddLogChar ? i didn't knew about that  anyway im going to get it as soon as i have a free time ..
Tables????????????????????? Wanted system needs Tables??????????????? i suggest you edit ur reply and delete tables..
Iam not sure if it's full or not .. i hope you tell me what's remaining so i can share it 
|
Yeah RowKill TAble :3
|
|
|
09/24/2014, 05:29
|
#13
|
elite*gold: 0
Join Date: Jul 2010
Posts: 9
Received Thanks: 0
|
who help ??
|
|
|
09/24/2014, 05:41
|
#14
|
elite*gold: 0
Join Date: Aug 2014
Posts: 66
Received Thanks: 29
|
Quote:
Originally Posted by kingmoka
thank you 
|
Your Welcome And If U Check The Other Topic will Found Wanted Effect Scroll With Fixed.
|
|
|
09/25/2014, 21:59
|
#15
|
elite*gold: 0
Join Date: Jul 2010
Posts: 9
Received Thanks: 0
|
someone I can spend or add the program to decrypt the Skilldataenc_xxx txt
|
|
|
 |
|
Similar Threads
|
[PVP Server] EmergencySRO | Cap 110 | Wanted System | Coin System and more
09/13/2014 - SRO PServer Advertising - 19 Replies
http://im66.gulfup.com/V7g729.png
------------------------------------------------- ---
We are glad to announce to you our server " EmergencySRO "
------------------------------------------------- ---
Website|Download|Registration|Facebook|Forum
http://i.epvpimg.com/nMCph.png|http://s14.directu pload.net/images/140122/wqc4kxi2.png|http://s14.di rectupload.net/images/140122/fnq6eumq.png|http://i .epvpimg.com/QNpqc.png|http://s1.directupload.net/ images/140124/idlkx3j6.png...
|
Dark Heaven || Completely Redone || 110Cap | Wanted System | New Jobbing System
07/13/2014 - SRO PServer Advertising - 268 Replies
http://i.epvpimg.com/VP6dd.png
Prologue
Here we go guys. A completely re-imagined server. We are here to announce the launch of Dark Heaven Online. We on the Dark Heaven team wanted to bring to those that remember the original SRO and the feeling of community, yet add spice to the game and focus on the major things that made Silkroad, the game that we all loved.
- Our goal of creating such game server is to establish a decent, stable, fun and self sufficient server for those who are...
|
[wanted Release] Change Password Script (with recapcha and working)
01/10/2010 - EO PServer Hosting - 7 Replies
well guys
a lot of persones want this kind of script
and here it is then
it worked for me and now you can use it to
and if i can ask
please leave credits or give atleast a thank you for fixing it :P
please note :
|
All times are GMT +1. The time now is 12:01.
|
|