Warning: mssql_connect() [function.mssql-connect]: message: Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection. (severity 14) in C:\xampp\htdocs\osds\PHP\config\install.php on line 94
Warning: mssql_connect() [function.mssql-connect]: Unable to connect to server: in C:\xampp\htdocs\osds\PHP\config\install.php on line 94
Warning: mssql_select_db() [function.mssql-select-db]: message: Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection. (severity 14) in C:\xampp\htdocs\osds\PHP\config\install.php on line 95
Warning: mssql_select_db() [function.mssql-select-db]: Unable to connect to server: in C:\xampp\htdocs\osds\PHP\config\install.php on line 95
Warning: mssql_select_db() [function.mssql-select-db]: A link to the server could not be established in C:\xampp\htdocs\osds\PHP\config\install.php on line 95
Warning: mssql_query() [function.mssql-query]: message: Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection. (severity 14) in C:\xampp\htdocs\osds\PHP\config\install.php on line 96
Warning: mssql_query() [function.mssql-query]: Unable to connect to server: in C:\xampp\htdocs\osds\PHP\config\install.php on line 96
Warning: mssql_query() [function.mssql-query]: A link to the server could not be established in C:\xampp\htdocs\osds\PHP\config\install.php on line 96
IF you see this message without any errors, it means everyhting went ok
and i've added the Reborn to user_character for the reborn system.
You are now ready to enter OsDs Gm Control Panel.
And ... i've deleted the install.php for your safty, but .... just to be safe, you better take a look.
Warning: mssql_connect() [function.mssql-connect]: message: Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection. (severity 14) in C:\xampp\htdocs\osds\PHP\config\install.php on line 94
Warning: mssql_connect() [function.mssql-connect]: Unable to connect to server: in C:\xampp\htdocs\osds\PHP\config\install.php on line 94
Warning: mssql_select_db() [function.mssql-select-db]: message: Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection. (severity 14) in C:\xampp\htdocs\osds\PHP\config\install.php on line 95
Warning: mssql_select_db() [function.mssql-select-db]: Unable to connect to server: in C:\xampp\htdocs\osds\PHP\config\install.php on line 95
Warning: mssql_select_db() [function.mssql-select-db]: A link to the server could not be established in C:\xampp\htdocs\osds\PHP\config\install.php on line 95
Warning: mssql_query() [function.mssql-query]: message: Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection. (severity 14) in C:\xampp\htdocs\osds\PHP\config\install.php on line 96
Warning: mssql_query() [function.mssql-query]: Unable to connect to server: in C:\xampp\htdocs\osds\PHP\config\install.php on line 96
Warning: mssql_query() [function.mssql-query]: A link to the server could not be established in C:\xampp\htdocs\osds\PHP\config\install.php on line 96
IF you see this message without any errors, it means everyhting went ok
and i've added the Reborn to user_character for the reborn system.
You are now ready to enter OsDs Gm Control Panel.
And ... i've deleted the install.php for your safty, but .... just to be safe, you better take a look.
Login failed for user '(null)'
you didnt fill in the mssql host
Quote:
Originally Posted by Powerblade
You can use this as your preview site if you wish..
Tell me if it works
Hmm but it is not working. I mean only two things from Modify Character not working not all. Not working when you try to edit Stats points and Skill points. Just not editing those two things. And yes, I have downloaded the update.
Not working is when you try to change values of stat points or skill points and it is not changing.No errors, nothing. You see that all was succesfull changed, but when you check again, you see that stat points and skill points were not changed.
<tr>
<td align='left' colspan='3'>
<input type='hidden' name='select' value='2'>
<input type='hidden' name='char_no' value='".$row2[0]."'>
<input type='hidden' name='user_no' value='".$row2[1]."'>
<input type='hidden' name='char_name' value='".$_POST['charname']."'>
<input type='submit' value='Set new Character Stats'>
</td>
</tr>
</table>
</form></center>";
}
} elseif($_POST['select'] == '2') {
$ms_con = mssql_connect($mssql['host'],$mssql['user'],$mssql['pass']);
$result1 = mssql_query("SELECT login_flag FROM account.dbo.USER_PROFILE WHERE user_no = '".$_POST['user_no']."'",$ms_con);
$row1 = mssql_fetch_row($result1);
if($row1[0] == '1100') {
$result2 = mssql_query("SELECT character_no FROM character.dbo.user_character WHERE user_no = '".$_POST['user_no']."' ORDER by login_time DESC",$ms_con);
$row2 = mssql_fetch_row($result2);
}
if($row1[0] == '1100' && $row2[0] == $_POST['char_no']) {
echo "<br>This character can not currently be edited, since it is online.<br><a href='javascript:history.back()'>Go Back</a>";
echo "<br>The new character's name is not just letters and numbers or is shorter than 3 characters or longer than 20 characters.<br><a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/[0-9]?/", $_POST['new_exp'])) {
echo "<br>Experience does not only consist of numbers.<br><a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/[0-9]?/", $_POST['new_lvl'])) {
echo "<br>The level indication does not only consist of numbers.<br><a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/[0-9]?/", $_POST['new_str'])) {
echo "<br>The data points Str consists not only of numbers.<br><a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/[0-9]?/", $_POST['new_dex'])) {
echo "<br>The Dex data points is not just numbers.<br><a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/[0-9]?/", $_POST['new_con'])) {
echo "<br>The Con data points is not just numbers.<br><a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/[0-9]?/", $_POST['new_spr'])) {
echo "<br>The Spr data points is not just numbers.<br><a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/[0-9]?/", $_POST['new_inv_money'])) {
echo "<br>The new DIL Inventory consists not only of numbers.<br><a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/[0-9]?/", $_POST['new_war_money'])) {
echo "<br>The new DIL Warehouse does not only consist of numbers.<br><a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/[0-9]?/", $_POST['new_ret_x'])) {
echo "<br>The new return point X is not just numbers.<br><a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/[0-9]?/", $_POST['new_ret_y'])) {
echo "<br>The new return point Y is not just numbers.<br><a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/[0-9]?/", $_POST['new_stats'])) {
echo "<br>The stats point is not just numbers.<br><a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/[0-9]?/", $_POST['new_skill'])) {
echo "<br>The skill points is not just numbers.<br><a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/[0-9]?/", $_POST['new_pk'])) {
echo "<br>The PK count is not just numbers.<br><a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/[0-9]?/", $_POST['new_chaotic'])) {
echo "<br>The Chaotic level does not only consist of numbers.<br><a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/[0-9]?/", $_POST['new_reborn'])) {
echo "<br>Invalid Reborn Number<br><a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/[0-9]?/", $_POST['new_skillreset'])) {
echo "<br>Invalid Skill Reset Number Can only be 1 of 0<br><a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/[0-9]?/", $_POST['new_statreset'])) {
echo "<br>Invalid Stats Reset Number Can only be 1 of 0<br><a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/[0-9]?/", $_POST['new_adv'])) {
echo "<br>The Adv count is not just numbers.<br><a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/[0-9]?/", $_POST['new_hp'])) {
echo "<br>The HP count is not just numbers.<br><a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/[0-9]?/", $_POST['new_mp'])) {
echo "<br>The MP count is not just numbers.<br><a href='javascript:history.back()'>Go Back</a>";
} elseif(!preg_match("/[0-9]?/", $_POST['new_shield'])) {
echo "<br>The Shield count is not just numbers.<br><a href='javascript:history.back()'>Go Back</a>";
echo "<br>".$_POST['new_charname']." Edited!<br> Remember the changes successfully when you are new in the account has logged.";
}
} else {
echo "<br>This function does not exist.";
}
Thought you might like this,
janvier123 has done so much for the ppl here in pvpers so I wanted to
post this here.
I did not see it anywhere in pvpers so if it is sorry..
steps to add new copied monsters
"#1. Monster.csv, copy and rename colomn (A) to w/e exple 1907 to 5070."
#2. Action folder/monster. rename it to the same new monster # you gave it from Colomn (A).
"step 2. open the new monster edit and in Colomn (B) ""monster"""
give it the same new monster # exaple 1907 to 5070
"#3. ""list"" in ""action"" folder. open it."
step 2.Copy monster and add it to a line name it to Exaple 1907 to 5070.
"#4. share/ai/""info"" add monsters here Exaple 1907 to 5070."
"#5. Open share/""list"" and change like this action\monster\blaberusqueen.act.1907.csv"
action\monster\blaberusqueen.act.5070.csv
Monster\blaberus.act.5071.csv
You can change all there stats in the monsters.csv
Not working is when you try to change values of stat points or skill points and it is not changing.No errors, nothing. You see that all was succesfull changed, but when you check again, you see that stat points and skill points were not changed.
are you logged into the account of the character you are trying to change :/
[MY FINAL RELEASE] CONTROL PANEL SERVER 06/08/2013 - CO2 PServer Guides & Releases - 10 Replies My Last Release
Please read the README File as it does give credits to a few... and says my last good byes =]]
anyway no if you message me saying you want the whole thing you can wait a billion years you wont get reply..
email [email protected] << MY FRIEND he can help with C# and lotf but mostly lotf he told me that
to learn how to send him a message read the README file..
[RELEASE] NEW XAMPP Control Panel 03/18/2010 - Flyff Hacks, Bots, Cheats, Exploits & Macros - 2 Replies Hiermit veröffentliche ich meinen selbst geschriebenen XAMPP Control Panel
Installationspfad : C:\XAMPP
Setup : Vorhanden ( automatisch )
Version : 2.0
Convertiert zur : exe
Scriptsprache : BATCH
Sprache : Englisch oder Deutsch
Was ist so besonders an den Neuen XAMPP Control Panel ?
[RELEASE] Control Panel for TQ Binary 09/22/2009 - CO2 PServer Guides & Releases - 25 Replies Ok this wasnt made by me it was made by a friend, id like you guys to have it to, its a control panel which auto types in the commands you're client must be in full screen, If you have any problems let me know il guide you, Also if this isnt allowed mod please remove it, Thanks!