|
You last visited: Today at 12:29
Advertisement
[Release] Complete VSRO Server Files
Discussion on [Release] Complete VSRO Server Files within the SRO PServer Guides & Releases forum part of the SRO Private Server category.
04/04/2012, 18:29
|
#1231
|
elite*gold: 0
Join Date: Mar 2012
Posts: 245
Received Thanks: 101
|
Quote:
Originally Posted by Chernobyl*
Going to search for some more minor stuff on my old HDD, maybe, will get something more to release.
|
i waiting the new release xD
|
|
|
04/06/2012, 13:29
|
#1232
|
elite*gold: 0
Join Date: Dec 2011
Posts: 76
Received Thanks: 11
|
Quote:
Originally Posted by Chernobyl*
So, epvp didn't pass the test, (some guy really understood, it was a test for you, guys). But anyway, i'm releasing this because i just keep my promises.
Nothing in this archive is nor modified, nor edited, those are original server files i've leaked from vsro servers. Yes, those are official files, which are running on official servers. It's not any kind of emulator.
========server files====================
Part1 : 
Part2 : 
Part3 :
========Database dumps================
Link :
========Changeset obt 247 - 249==========
Link :
========Xtrap update files===============
Link :
=======Billing asp scripts=================
Link :
=======Drew's custom cert===============
Link :  (you have to modify settings, try doing it on your own)
=======Latest SMC (update removed)=======
Don't forget to turn off data execution prevention system before trying to launch any of server modules...
Almost forgot, the password is "fortheworstcommunityever".
Fun stuff :
Simple registration page (php)
index.php
Code:
<?php
/* Simple registration page for silkroad server, by Chernobyl
* Settings are at _inc/config.php
* If you get an mssql connection error, while defining totally correct data
* Just use older ntwdblib.dll for your webserver
*/
require_once('_inc/security.class.php');
require_once('_inc/config.php');
if(!isset($_POST['submit']))
{
echo "<table border='1'>
<form method='post'>
<td>Username</td><td><input type='text' name='username' maxlength='16'></td><tr/>
<td>Password[1]</td><td><input type='password' name='pw1' maxlength='32'></td><tr/>
<td>Password[2]</td><td><input type='password' name='pw2' maxlength='32'></td><tr/>
<td></td><td><input type='submit' name='submit' value='Register'></td>
</form>
</table>";
}
else
{
if(strlen($_POST['username']) < 3) $msg[] = "Username too short";
if(strlen($_POST['username']) > 16)$msg[] = "Username too long";
if(strlen($_POST['pw1']) < 6) $msg[] = "Password [1] too short";
if(strlen($_POST['pw1']) > 32)$msg[] = "Password [1] too long";
if(strlen($_POST['pw2']) < 6) $msg[] = "Password [2] too short";
if(strlen($_POST['pw']) > 32) $msg[] = "Password [2] too long";
if($_POST['pw1'] != $_POST['pw2']) $msg[] = "Passwords are not the same";
$sec = new security();
if($sec->is_secure($_POST['username']) == false) $msg[] = "Username contains forbidden symbols";
if($sec->is_secure($_POST['pw1']) == false) $msg[] = "Password [1] contains forbidden symbols";
if($sec->is_secure($_POST['pw2']) == false) $msg[] = "Password [2] contains forbidden symbols";
if(count($msg) > 0)
{
for($i = 0; $i < count($msg); $i++)
{
echo $msg[$i]."<br/>";
}
return;
}
else
{
//checking damn mssql stuff
$accountExists = mssql_num_rows(mssql_query("select StrUserID from TB_User where StrUserID='$_POST[username]'"));
if($accountExists > 0) echo "Account with such username already exists<br/>";
else
{
$pwd = md5($_POST['pw1']);
mssql_query("insert into TB_User(StrUserID,password,sec_primary,sec_secondary) values('$_POST[username]','$pwd','3','3')");
echo "Account successfully created<br/>";
}
}
}
_inc/security.class.php
Code:
<?php
class security
{
function is_secure($string)
{
$pattern = "#[^a-zA-Z0-9_\-]#";
if(preg_match($pattern,$string)==true)return false;
else
return true;
}
}
?>
_inc/config.php
Code:
<?php
$cfg['sql_host'] = ".\SQLEXPRESS";
$cfg['sql_user'] = "sa";
$cfg['sql_pass'] = "1234";
$cfg['sql_db'] = "SRO_VT_ACCOUNT";
$sqlLink = mssql_connect($cfg[sql_host],$cfg[sql_user],$cfg[sql_pass]);
if(!$sqlLink) die("MSSQL server is not accessable, why should we try to select database ?");
else
{
mssql_select_db($cfg[sql_db],$sqlLink);
}
?>
More stuff comes a bit later
=================================================
And no, i'm not Chernobyl from rz  .
|
Thx For This links but Links vsro files not work i hope to upload vsro files on mediafire....
|
|
|
04/17/2012, 16:46
|
#1233
|
elite*gold: 0
Join Date: Mar 2010
Posts: 733
Received Thanks: 87
|
Finally Mlutupload links fixed
|
|
|
04/28/2012, 05:42
|
#1234
|
elite*gold: 260
Join Date: Sep 2010
Posts: 1
Received Thanks: 0
|
hello everybody,
I would love to help you guys, & i hate ppl who uses ppl,
here is the password : fortheworstcommunityever
|
|
|
04/29/2012, 16:40
|
#1235
|
elite*gold: 0
Join Date: Sep 2007
Posts: 405
Received Thanks: 198
|
Hello ******** community i would appriciate if u can help me with this:
For 3 days i tryed all the ways to fix it and nothing so i decide to post maybe someone will help me.
My ip (if u say i did something wrong)
FTP working...
Compile working:
Custom Cert working
AND I GET THIS ERROR ALL THE TIME AND I TRYED LIKE 20 TIMES IN DIFFERENT WAYS DIFFERENT CFG s patchez...and nothing
this:
2. My Settings (server.cfg ini...)
server.cfg
Code:
Common {
debug_option_debugger_present {
DEBUG_OPTION_ASSERT_SHOW_MESSAGEBOX_OKCANCEL,
DEBUG_OPTION_ASSERT_ADVANCE_BREAK,
DEBUG_OPTION_ASSERT_CANCEL_EXIT
}
debug_option_stand_alone {
DEBUG_OPTION_ASSERT_DONOT_SHOW_MESSAGEBOX ,
DEBUG_OPTION_ASSERT_WRITE_MINIDUMP
}
netengine_debug_option_debugger_present {
DEBUG_OPTION_ASSERT_DONOT_SHOW_MESSAGEBOX ,
DEBUG_OPTION_ASSERT_WRITE_MINIDUMP
}
netengine_debug_option_stand_alone {
DEBUG_OPTION_ASSERT_DONOT_SHOW_MESSAGEBOX ,
DEBUG_OPTION_ASSERT_WRITE_MINIDUMP
}
}
////////////////////////////////////////////////////////////////////////////////////////////
GlobalManager {
// Certification "10.67.15.85 ", 32001
Certification "10.67.15.85 ", 32001
LoginFailureTolerance 3 // ÃÖ´ë ·Î±×ÀÎ ÆÐ½º¿öµå ¿À·ù Çã¿ëÄ¡
IBUVFailureTolerance 3 // ÃÖ´ë À̹ÌÁö ÀÎÁõ ¿À·ù Çã¿ëÄ¡
LoginFailureBlockTimeMin 10 // ºí·° ½Ã°£(ºÐ) - ·Î±×ÀÎ ÆÐ½º¿öµå ¿À·ù
IBUVFailureBlockTimeMin 10 // ºí·° ½Ã°£(ºÐ) - À̹ÌÁö ÀÎÁõ ¿À·ù
AutomatedPunisher "AutomatedPunisher" // ºí·° ÁÖü À̸§ (±âÁ¸ ºí·°Àº gm ¸í)
LoginPunishmentGuide "Blocked for 10 minutes due to incorrect password entered 3 times" // ÆÐ½º¿öµå ¿À·ù¿¡ ´ëÇÑ ºí·° °¡À̵å
LoginPunishmentDescription "Blocked for 10 minutes due to incorrect password entered 3 times" // ÆÐ½º¿öµå ¿À·ù¿¡ ´ëÇÑ ºí·° ¼³¸í
IBUVPunishmentGuide "Blocked for 10 minutes due to incorrect code entered 3 times" // À̹ÌÁö ÀÎÁõ ¿À·ù¿¡ ´ëÇÑ ºí·° °¡À̵å
IBUVPunishmentDescription "Blocked for 10 minutes due to incorrect code entered 3 times" // À̹ÌÁö ÀÎÁõ ¿À·ù¿¡ ´ëÇÑ ºí·° ¼³¸í
}
GatewayServer {
LastFullVersion_SR_Client 130
Certification "10.67.15.85 ", 32000
IBUVQueueReserveCount 20000 // IBUV¸¦ À§ÇØ ¹Ì¸® »ý¼ºÇØ ³õÀ» À̹ÌÁö °¹¼ö
IBUVQueuePrepareRatio 0.05 // ¾ÆÀ̵é ŸÀÓ¿¡ À̹ÌÁö »ý¼ºÇÒ ºñÀ²
IBUVFailureIPTolerance 0 // ÇÑ IP´ç IBUV ½ÇÆÐ¸¦ Çã¿ëÇÒ ÃÖ´ë ¿À·ù Çã¿ëÄ¡, 0ÀÌ¸é ºí·° ¾ÈÇϰڴٴ °ÅÁö.
// Ãß°¡µÈ ³ÑÀÌ´Ù!!!!!
//////////////////////////////////////////////////////////
IBUVStringSize 6 // ÇÑ±Û Ä³¸¯Åͼ »ç¿ë ½Ã 3, ¾ËÆÄºª ij¸¯ÅÍ ¼Â¸¸ »ç¿ëÇÏ´Â °æ¿ì 6 À¸·Î ¼¼ÆÃÇÑ´Ù.
IBUVCharacterSet "ABCDEFGHLMNQRTabdehimn2345678"
//////////////////////////////////////////////////////////
}
DownloadServer {
Certification "10.67.15.85 ", 32000
}
FarmManager {
Certification "10.67.15.85 ", 32000
}
AgentServer {
Certification "10.67.15.85 ", 32004
}
MachineManager {
Certification "10.67.15.85 ", 32000
}
SR_GameServer {
Certification "10.67.15.85 ", 32004
ExpRatio 100
ExpRatioParty 100
DropItemRatio 0,1
DropGoldAmountCoef 0,1
//WINTER_EVENT_2009 EVENT_ON // 2009³â °Ü¿ï À̺¥Æ®
//EUBUSINESS_EVENT EVENT_ON
//GOLDEN_PIG_FEBRUARY_EVENT EVENT_ON
//THANKS_GIVING_EVENT EVENT_ON
//LIBERATION_EVENT EVENT_ON
LOCALE LOCALE_VIETNAM // for Helper mark
//#ifdef OPEN_MARKET_SYSTEM
SET_FEE_RATE "0,5,5,5"
SELL_FEE_RATE "0,10,10,10"
//#endif OPEN_MARKET_SYSTEM
}
SR_ShardManager {
Certification "10.67.15.85 ", 32004
BILLING_SERVER_URL "http://10.67.15.85:8080/"
CREST_FTP_URL "ftp://crest:[email protected] /"
ExtraExpRatio 0.1
ChristmasEvent2007 0
//SERVER_EVENT_SYSTEM ON
LOCALE LOCALE_VIETNAM
FlagEvent 0
FlagEvent 1
HourForMeterRateLevelFirst 22
HourForMeterRateLevelSecond 23
BattleArenaRandom 1
BattleArenaParty 1
BattleArenaGuild 1
BattleArenaJob 1
ArenaMatchOccupy 1
ArenaMatchFlag 1
ArenaMatchPoint 1
}
srGlobalService.ini
Code:
[global]
count=1
[entry0]
operation_type=22
name=SRO_Vietnam_TestLocal
query=DRIVER={SQL Server};SERVER=HMM1-PC\SQLEXPRESS;DSN=SRO_VT_ACCOUNT;UID=sa;PWD=fcrapidu;DATABASE=SRO_VT_ACCOUNT
global_manager_node_id=697
srNodeType.ini
Code:
[global]
count=2
[global]
count=8
[entry0]
id=335
operation_type=22
name=Main_machine
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=699
[entry1]
id=336
operation_type=22
name=2nd_machine
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=701
[entry2]
id=338
operation_type=17
name=GWS1
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=699
[entry3]
id=339
operation_type=17
name=FMGS1
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=0
[entry4]
id=340
operation_type=17
name=SDMGS1
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=706
[entry5]
id=341
operation_type=17
name=SD1AGS1
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=708
[entry6]
id=344
operation_type=17
name=SD1GAS1
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=714
[entry7]
id=133
operation_type=0
name=Certification Manager
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=0
[entry8]
id=343
operation_type=17
name=SD1AGS3
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=712
[entry9]
id=344
operation_type=17
name=SD1GAS1
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=714
[entry10]
id=345
operation_type=17
name=SD1GAS2
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=716
[entry11]
id=386
operation_type=17
name=SDMGS2
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=801
[entry12]
id=387
operation_type=17
name=SD2AGS1
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=803
[entry13]
id=388
operation_type=17
name=SD2AGS2
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=805
[entry14]
id=389
operation_type=17
name=SD2AGS3
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=807
[entry15]
id=390
operation_type=17
name=SD2GAS1
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=809
[entry16]
id=391
operation_type=17
name=SD2GAS2
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=811
[entry17]
id=392
operation_type=17
name=SDMGS3
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=813
[entry18]
id=393
operation_type=17
name=SD3AGS1
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=815
[entry19]
id=394
operation_type=17
name=SD3AGS2
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=817
[entry20]
id=395
operation_type=17
name=SD3AGS3
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=819
[entry21]
id=396
operation_type=17
name=SD3GAS1
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=821
[entry22]
id=397
operation_type=17
name=SD3GAS2
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=823
[entry23]
id=401
operation_type=17
name=SDMGS4
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=837
[entry24]
id=402
operation_type=17
name=SD4AGS1
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=839
[entry25]
id=403
operation_type=17
name=SD4AGS2
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=841
[entry26]
id=404
operation_type=17
name=SD4AGS3
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=843
[entry27]
id=405
operation_type=17
name=SD4GAS1
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=845
[entry28]
id=406
operation_type=17
name=SD4GAS2
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=847
[entry29]
id=446
operation_type=17
name=SDMGS5
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=950
[entry30]
id=447
operation_type=17
name=SD5AGS1
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=952
[entry31]
id=448
operation_type=17
name=SD5AGS2
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=954
[entry32]
id=449
operation_type=17
name=SD5AGS3
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=956
[entry33]
id=450
operation_type=17
name=SD5GAS1
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=958
[entry34]
id=451
operation_type=17
name=SD5GAS2
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=960
[entry35]
id=819
operation_type=17
name=SD1GAS3
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=1901
[entry36]
id=820
operation_type=17
name=SD2GAS3
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=1902
[entry37]
id=821
operation_type=17
name=SD3GAS3
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=1903
[entry38]
id=822
operation_type=17
name=SD4GAS3
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=1904
[entry39]
id=823
operation_type=17
name=SD5GAS3
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=1905
[entry40]
id=824
operation_type=17
name=SDMGS6
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=1913
[entry41]
id=825
operation_type=17
name=SD6AGS1
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=1914
[entry42]
id=826
operation_type=17
name=SD6AGS2
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=1915
[entry43]
id=828
operation_type=17
name=SD6AGS3
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=1916
[entry44]
id=829
operation_type=17
name=SD6GAS1
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=1917
[entry45]
id=830
operation_type=17
name=SD6GAS2
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=1918
[entry46]
id=831
operation_type=17
name=SD6GAS3
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=1919
[entry47]
id=133
operation_type=0
name=Certification Manager
wip=10.67.15.85
nip=10.67.15.85
machine_manager_node_id=0
srShard.ini
Code:
[global]
count=1
[entry0]
id=64
global_operation_id=20
operation_type=22
name=Server1
query=DRIVER={SQL Server};SERVER=HMM1-PC\SQLEXPRESS;DSN=SRO_VT_SHARD_INIT;UID=sa;PWD=fcrapidu;DATABASE=SRO_VT_SHARD_INIT
query_log=DRIVER={SQL Server};SERVER=HMM1-PC\SQLEXPRESS;DSN=Log_DB;UID=sa;PWD=fcrapidu;DATABASE=Log_DB
capacity=2300
shard_manager_node_id=705
u1=240
u2=208
u3=17
u4=1
u5=0
u6=0
u7=0
and from DBconnect.asp
Code:
<%
Dim DBConnA, strConnectA
Set DBConnA = Server.CreateObject("ADODB.Connection")
strConnectA = "Provider=SQLOLEDB;Data Source=HMM1-PC\SQLEXPRESS;Initial Catalog=SRO_VT_ACCOUNT;user ID=sa;password=fcrapidu;"
DBConnA.Open strConnectA
%>
firewall is off
database restore done
ftp done
privileged ip done
pw id (md5) done
ODBC Data Source Administrator done
windows features done
Ireally dont get it where i did wrong...someone please explain, share ur knowledge with me.
i just wanna make a server to play with my dormitory friends...
|
|
|
04/29/2012, 19:19
|
#1236
|
elite*gold: 0
Join Date: Jul 2009
Posts: 992
Received Thanks: 194
|
GlobalManager {
// Certification "10.67.15.85 ", 32001
Certification "10.67.15.85 ", 32001
Change 32001 to 32000.
Download a server.cfg from somewhere, you have all the ports changed to probably other ports then your certification server use.
|
|
|
04/29/2012, 19:31
|
#1237
|
elite*gold: 0
Join Date: Sep 2007
Posts: 405
Received Thanks: 198
|
not working i downloaded server.cfg from cernobyl`s post and i did like u said..and still not working same thing...dammit
thx alot anyways im opened to any other suggestion
|
|
|
05/07/2012, 12:25
|
#1238
|
elite*gold: 325
Join Date: Dec 2008
Posts: 14,545
Received Thanks: 8,720
|
Added download links from this thread:
Closed the other to prevent multiple threads.
Thanks LastThief* for those links.
|
|
|
05/22/2012, 20:30
|
#1239
|
elite*gold: 0
Join Date: Dec 2011
Posts: 10
Received Thanks: 0
|
Quote:
Originally Posted by Chernobyl*
So, epvp didn't pass the test, (some guy really understood, it was a test for you, guys). But anyway, i'm releasing this because i just keep my promises.
Nothing in this archive is nor modified, nor edited, those are original server files i've leaked from vsro servers. Yes, those are official files, which are running on official servers. It's not any kind of emulator.
========server files====================
Part1 :
Multi: 
Deposit:
Part2 :
Multi: 
Deposit:
Part3 :
Multi: 
Deposit:
========Database dumps================
Link :
========Changeset obt 247 - 249==========
Link :
========Xtrap update files===============
Link :
=======Billing asp scripts=================
Link :
=======Drew's custom cert===============
Link :  (you have to modify settings, try doing it on your own)
=======Latest SMC (update removed)=======
And some epic ff amv hhh
Don't forget to turn off data execution prevention system before trying to launch any of server modules...
Almost forgot, the password is "fortheworstcommunityever".
Fun stuff :
Simple registration page (php)
index.php
Code:
<?php
/* Simple registration page for silkroad server, by Chernobyl
* Settings are at _inc/config.php
* If you get an mssql connection error, while defining totally correct data
* Just use older ntwdblib.dll for your webserver
*/
require_once('_inc/security.class.php');
require_once('_inc/config.php');
if(!isset($_POST['submit']))
{
echo "<table border='1'>
<form method='post'>
<td>Username</td><td><input type='text' name='username' maxlength='16'></td><tr/>
<td>Password[1]</td><td><input type='password' name='pw1' maxlength='32'></td><tr/>
<td>Password[2]</td><td><input type='password' name='pw2' maxlength='32'></td><tr/>
<td></td><td><input type='submit' name='submit' value='Register'></td>
</form>
</table>";
}
else
{
if(is_array($_POST['username'])) die("Username can't be array.");
if(is_array($_POST['pw1'])) die("Password [1] can't be array.");
if(is_array($_POST['pw2'])) die("Password [2] can't be array.");
if(strlen($_POST['username']) < 3) $msg[] = "Username too short";
if(strlen($_POST['username']) > 16)$msg[] = "Username too long";
if(strlen($_POST['pw1']) < 6) $msg[] = "Password [1] too short";
if(strlen($_POST['pw1']) > 32)$msg[] = "Password [1] too long";
if(strlen($_POST['pw2']) < 6) $msg[] = "Password [2] too short";
if(strlen($_POST['pw']) > 32) $msg[] = "Password [2] too long";
if($_POST['pw1'] != $_POST['pw2']) $msg[] = "Passwords are not the same";
$sec = new security();
if($sec->is_secure($_POST['username']) == false) $msg[] = "Username contains forbidden symbols";
if($sec->is_secure($_POST['pw1']) == false) $msg[] = "Password [1] contains forbidden symbols";
if($sec->is_secure($_POST['pw2']) == false) $msg[] = "Password [2] contains forbidden symbols";
if(count($msg) > 0)
{
for($i = 0; $i < count($msg); $i++)
{
echo $msg[$i]."<br/>";
}
return;
}
else
{
//checking damn mssql stuff
$accountExists = mssql_num_rows(mssql_query("select StrUserID from TB_User where StrUserID='$_POST[username]'"));
if($accountExists > 0) echo "Account with such username already exists<br/>";
else
{
$pwd = md5($_POST['pw1']);
mssql_query("insert into TB_User(StrUserID,password,sec_primary,sec_secondary) values('$_POST[username]','$pwd','3','3')");
echo "Account successfully created<br/>";
}
}
}
_inc/security.class.php
Code:
<?php
class security
{
function is_secure($string)
{
$pattern = "#[^a-zA-Z0-9_\-]#";
if(preg_match($pattern,$string)==true)return false;
else
return true;
}
}
?>
_inc/config.php
Code:
<?php
$cfg['sql_host'] = ".\SQLEXPRESS";
$cfg['sql_user'] = "sa";
$cfg['sql_pass'] = "1234";
$cfg['sql_db'] = "SRO_VT_ACCOUNT";
$sqlLink = mssql_connect($cfg[sql_host],$cfg[sql_user],$cfg[sql_pass]);
if(!$sqlLink) die("MSSQL server is not accessable, why should we try to select database ?");
else
{
mssql_select_db($cfg[sql_db],$sqlLink);
}
?>
More stuff comes a bit later
=================================================
And no, i'm not Chernobyl from rz  .
|
man the Downloads it`s not working 22.May.2912 9:30 PM
|
|
|
05/29/2012, 10:16
|
#1240
|
elite*gold: 0
Join Date: Feb 2011
Posts: 3
Received Thanks: 0
|
reup part 3 plssssss!!!
|
|
|
05/29/2012, 12:33
|
#1241
|
elite*gold: 62
Join Date: Mar 2011
Posts: 602
Received Thanks: 2,955
|
TORRENT (files, dbs, billing, obt changeset) added.
|
|
|
05/29/2012, 14:23
|
#1242
|
elite*gold: 0
Join Date: May 2011
Posts: 425
Received Thanks: 25
|
so what about ksro files ahaha
|
|
|
05/30/2012, 20:39
|
#1243
|
elite*gold: 0
Join Date: May 2012
Posts: 1
Received Thanks: 0
|
Quote:
Originally Posted by Chernobyl*
TORRENT (files, dbs, billing, obt changeset) added.

|
These are the files of sro? new link?
|
|
|
05/31/2012, 02:40
|
#1244
|
elite*gold: 1
Join Date: May 2012
Posts: 127
Received Thanks: 11
|
Nich schlecht Herr Specht!
|
|
|
06/01/2012, 02:53
|
#1245
|
elite*gold: 0
Join Date: Sep 2010
Posts: 59
Received Thanks: 1
|
gameserver mistake does not work
Help please
|
|
|
Similar Threads
|
[Release] Complete vSRO Files
10/09/2011 - SRO Private Server - 26 Replies
trolololol
|
[Release]Some vSro Server Files
09/12/2011 - SRO Private Server - 77 Replies
Releasing that files
http://i.imgur.com/n8C2U.png
But don't forget you still need some files.
Link : Get VSro_Server_Files.rar on Wupload.com
Alternative : http://hotfile.com/dl/129573492/a102efc/VSro_Serve r_Files.rar.html
|
[Release]Vsro Server Files.
09/11/2011 - SRO Private Server - 13 Replies
So i have decided to release the server files for making your own servers...
f**k you greedy motherf**kers for not releasing them...
http://doiop.com/fsaxf21sx
|
[RELEASE]Vsro Server Files
09/09/2011 - SRO Private Server - 11 Replies
This is Link to Vsro Server Files:
vietnamtest_0104_2010-11-29-01.zip torrent download free
Don't Forgot To Thanks :D:D
|
All times are GMT +1. The time now is 12:30.
|
|