|
You last visited: Today at 11:53
Advertisement
[SRX] Tutorials + GM Commands
Discussion on [SRX] Tutorials + GM Commands within the SRO PServer Guides & Releases forum part of the SRO Private Server category.
08/30/2011, 10:41
|
#46
|
elite*gold: 0
Join Date: Jan 2010
Posts: 1
Received Thanks: 0
|
Have been searching SRO simulator for years. Eventually, found SRX project.
It's a great project, thank you guys!
As a Chinese player, I wonder if there is a way to let player using foreign language input method?
SRO International Client only allow English typing. So when I playing SRO with friends on sremu, we can't communicate with each other, I've tried Silkroad Online Chinese Client on edxSilkroadLoader5.exe, it won't stat.
I reckon there must be some foreign players have same thoughts(:
If you could consider about this issue, I'll appreciate it.
And sorry for my disfluent English expression.
|
|
|
08/30/2011, 16:27
|
#47
|
elite*gold: 0
Join Date: Jul 2008
Posts: 118
Received Thanks: 22
|
Any One have the Client 1.320?
|
|
|
09/09/2011, 15:33
|
#48
|
elite*gold: 0
Join Date: Jul 2008
Posts: 67
Received Thanks: 13
|
[ERROR] Code for: lsro does not match what i need to do
|
|
|
09/09/2011, 21:19
|
#49
|
elite*gold: 0
Join Date: Apr 2007
Posts: 11
Received Thanks: 0
|
can you compile and upload 1.322 files please?
|
|
|
09/10/2011, 08:51
|
#50
|
elite*gold: 0
Join Date: Dec 2009
Posts: 392
Received Thanks: 54
|
i have tis problem please help in solving
|
|
|
09/11/2011, 13:37
|
#51
|
elite*gold: 0
Join Date: Apr 2007
Posts: 11
Received Thanks: 0
|
maybe, write the valid database informations, for example change YOUR_DATABASE with the database name you use
|
|
|
09/11/2011, 13:41
|
#52
|
elite*gold: 0
Join Date: Sep 2011
Posts: 136
Received Thanks: 5
|
miért raktad fel ? tele van hibával...én probáltam :P>egyébként a szerkesztőnek van vsro file ja szerintem lefogja ezt szarni .)<---
people dont download have some bug..and creator have vsro file...ak=project dead xD
|
|
|
09/17/2011, 01:58
|
#53
|
elite*gold: 0
Join Date: Sep 2011
Posts: 8
Received Thanks: 0
|
Quote:
Originally Posted by killercom
i have tis problem please help in solving

|
follow me:
Goto %windir%\php.ini ( open it )
press Ctrl+f and write: php_mssql
search will mark it, ";extension=php_mssql.dll" delete the first symbol ";" line will be like that, "extension=php_mssql.dll"
copy ur reg page to the next path
%windir%\AppServ\www\ ............. and open it with any text editor
Clear it and copy this and paste it in the reg.php
Code:
<style type="text/css">
<!--
body,td,th {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #FFFFFF;
}
body {
background-color: #000000;
}
-->
</style>
<?php
$mssql = array(
'host' => "Your_User_Name\SQLEXPRESS", //Your mssql host goes here
'user' => "sa", //Dont change it
'pass' => "123123" //Your mssql password goes here
// IMPORTANT !!! PRESS CTRL + R , REPLACE: , replace YOUR_DATABASE_NAME00 with your database name!
);
function anti_injection($sql) {
$sql = preg_replace(sql_regcase("/(from|select|insert|delete|where|drop table|show tables|#|\*|--|\\\\)/"),"",$sql);
$sql = trim($sql);
$sql = strip_tags($sql);
$sql = addslashes($sql);
return $sql;
}
if($_POST['activ'] == '1') {
$accname = anti_injection($_POST['accname']);
$accpass1 = anti_injection($_POST['accpass1']);
$accpass2 = anti_injection($_POST['accpass2']);
$con = mssql_connect($mssql['host'],$mssql['user'],$mssql['pass']);
$result1 = mssql_query("SELECT * FROM YOUR_DATABASE_NAME00.dbo.users WHERE id = '".$accname."'",$con);
$row1 = mssql_num_rows($result1);
if(empty($accname) || empty($accpass1) || empty($accpass2)|| empty($accname)) {
echo "<br>You didnt fill in all fields<a href='javascript:history.back()'>Go Back</a>";
} elseif($row1 > '0' || $row2 > '0') {
echo "<br>This Account name already exists.<a href='javascript:history.back()'>Go Back</a>";
} elseif($accpass1 != $accpass2) {
echo "<br>The passwords did not match<a href='javascript:history.back()'>Go Back</a>";
} elseif($accpass1 == $accname) {
echo "<br>Account name and password are the same.<a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/^[0-9a-zA-Z]{3,15}$/i", $accname)) {
echo "<br>Enter a account name only with 0-9 , a-z and A-Z.<a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/^[0-9a-zA-Z]{3,15}$/i", $accpass1)) {
echo "<br>Enter a password only with 0-9 , a-z and A-Z.<a href='javascript:history.back()'>Go Back</a>";
} elseif(strlen($accname) < 3 || strlen($accname) > 15) {
echo "<br>Username Must be above 3 and lower then 15 <a href='javascript:history.back()'>Go Back</a>";
} elseif(strlen($accpass1) < 3 || strlen($accpass1) > 15) {
echo "<br>Password Must be above 3 and lower then 15 .<a href='javascript:history.back()'>Go Back</a>";
} else {
$accpass = md5($accpass1);
$con = mssql_connect($mssql['host'],$mssql['user'],$mssql['pass']);
mssql_query("INSERT INTO YOUR_DATABASE_NAME00.dbo.users (
id,
password,
online,
banreason,
ban,
silk,
gold,
checkinfo
)
VALUES (
'".$accname."',
'".$accpass."',
'0',
'0',
'0',
'0',
'0',
'0'
)",$con);
?>
<center>
<table width="500">
<tr>
<td colspan='2' align='center'><img src="top.jpg" width="500" height="300" /></td>
</tr>
<tr>
<td colspan="2" align="center" bgcolor="#333333">
Welcome to srevolution! Below are your details! Keep them safe!
</td>
</tr>
<tr>
<td bgcolor="#666666">
Account name:
</td>
<td bgcolor="#666666">
<b><?php echo "".$accname.""; ?></b>
</td>
</tr>
<tr>
<td bgcolor="#333333">
Your password:
</td>
<td bgcolor="#333333">
<b><?php echo "".$accpass1.""; ?></b>
</td>
</tr>
</table>
</center>
<?php
}
} else {
$con = mssql_connect($mssql['host'],$mssql['user'],$mssql['pass']);
$result1 = mssql_query("SELECT * FROM YOUR_DATABASE_NAME00.dbo.users",$con);
$row1 = mssql_num_rows($result1);
?>
<form action='reg.php' method='POST'>
<center>
<table width="500">
<tr>
<td colspan='2' align='center'>
<img src="top.jpg" width="500" height="300" />
</td>
</tr>
<tr>
<td bgcolor="#333333">Account Name</td>
<td bgcolor="#333333">
<input type='text' name='accname' maxlength='12'>
</td>
</tr>
<tr>
<td bgcolor="#666666">Password</td>
<td bgcolor="#666666">
<input type='password' name='accpass1' maxlength='12'>
</td>
</tr>
<tr>
<td bgcolor="#333333">Again pass.</td>
<td bgcolor="#333333">
<input type='password' name='accpass2' maxlength='12'>
</td>
</tr>
<tr>
<td align='center' bgcolor="#666666">
</td>
<td align='right' bgcolor="#666666">
<input type='hidden' name='activ' value='1' />
<input name="submit" type='submit' value='Create Account' />
</td>
</tr>
</table>
</center>
</form>
<?php
}
?>
ok now how to get ur user name?
open SQL Server Management Studio Express
and u will find when u open it Server Name, copy it and paste it instead of Your_User_Name
then press Ctrl + H and write in find what field: YOUR_DATABASE_NAME00 and replace it with your database name what ever u choosed, in the tutorial database name is: silk
then save, close, and try it. 
===================================
i need help, when i login to server it says: Request user information
and it's dont login and dont dc
what could i do??
please bro help, thanks.
Modi
Please help!!
i think this what is making the requesting user information???
Answer me please  (
|
|
|
11/07/2011, 01:47
|
#54
|
elite*gold: 0
Join Date: May 2011
Posts: 2
Received Thanks: 0
|
Thanks alot ..
|
|
|
11/07/2011, 17:01
|
#55
|
elite*gold: 0
Join Date: Sep 2011
Posts: 5
Received Thanks: 0
|
Nice Man..
keep going
|
|
|
11/10/2011, 15:12
|
#56
|
elite*gold: 0
Join Date: Apr 2011
Posts: 5
Received Thanks: 0
|
All greetings, at me an error, whether it is possible to correct it?

I try to load SRX_1.320 the server on гайду, but login server can't find game server but when I change on login server and game server I change айпи on 127.0.0.1 all works, help plz.
|
|
|
12/03/2011, 20:24
|
#57
|
elite*gold: 0
Join Date: Jul 2009
Posts: 209
Received Thanks: 369
|
Quote:
Originally Posted by Slasherkrit
All greetings, at me an error, whether it is possible to correct it?

I try to load SRX_1.320 the server on гайду, but login server can't find game server but when I change on login server and game server I change айпи on 127.0.0.1 all works, help plz.

|
Change your system language to English.
|
|
|
12/15/2011, 17:53
|
#58
|
elite*gold: 0
Join Date: Oct 2008
Posts: 18
Received Thanks: 1
|
Hey I Have An Big Problem i Already Set Up All Buth When Im Wanna Start The Gameserver its says its dont working yet i have w7 already try to run with admin Help me pls
|
|
|
12/19/2011, 16:55
|
#59
|
elite*gold: 5
Join Date: Dec 2011
Posts: 325
Received Thanks: 190
|
thx
|
|
|
12/19/2011, 17:01
|
#60
|
elite*gold: 0
Join Date: May 2011
Posts: 812
Received Thanks: 701
|
Quote:
Originally Posted by ™_HeMa_™
thx
|
WHY DO YOU BUMP A THREAD THAT IS SO FUCKNG OLD?JUST CLICK THE FKCING THANKS BUTTON OMFG
|
|
|
Similar Threads
|
[Sammeltopic]CrossFire Hack programming - Codes, Tutorials, PTC-Commands...
06/12/2011 - CrossFire Hacks, Bots, Cheats & Exploits - 172 Replies
Hi Leute,
ich habe beschlossen hier einen Thread zu eröffnen der alle bekannten Offsets, PTC-Befehle, Codes und Tutorials enthält.
Ich werde den Thread täglich updaten falls neues dazukommt oder gepatcht wird.
Wenn ihr Befehle oder Offsets habt die hier noch nicht stehen, schreibt sie und ich werde sie editieren.
Hinweis: Die PTC-Commands sind jetzt alle gepatcht!
Stand: 16.12.2010
patched Stuff:
|
All times are GMT +1. The time now is 11:54.
|
|