έχω μια ερώτηση έχω site και δουλεύει με php file και θέλω να κάνει cone σε server τι πρέπει να κάνω.?
πχ εγώ έβαλα την ip του server εδώ
<?php
$L2JBS_config["mysql_host"]=181.40.129.100; // MySQL IP <---- και δεν κάνει cone
$L2JBS_config["mysql_port"]=3306; // MySQP port
$L2JBS_config["mysql_db"]="L2jdb"; // l2jdb or your lineage 2 server database name
$L2JBS_config["mysql_login"]="server"; // MySQL Login name
$L2JBS_config["mysql_password"]="123456789"; // MySQL Password
"Warning: mysql_connect() [function.mysql-connect]: Lost connection to MySQL server at 'reading initial communication packet', system error: 111 in /public_html/freya/config/_config_procs.php on line 3
Couldn't connect to MySQL"
ayto mou leei sto site
[mysqld]
user=mysql
bind-address=181.40.129.100 <--server IP αντί to 127.0.0.1
έβαλα την ip του server εδώ και κάνει κανονικά σύνδεση το site με τον server αλλα ο gameserver κολλάει και σταματάει την εργασία του στο msql
σας παρακαλώ οποιος γνωρίζει κάτι για αυτό το θέμα να με βοηθήσει
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Hello.
This code works well. It removes buff with double click, but If you preffer remove buff with ALT + mouse click, place this code in AbnormalStatusWnd.uc
function OnLButtonDown(WindowHandle a_WindowHandle, int X, int Y)
{
local Rect windowBounds;
local int targetRow;
local int targetCol;
local StatusIconInfo info;
local SkillInfo skillInfo;
if (IsKeyDown(IK_alt) == false)
return;
// Find window position
windowBounds = Me.GetRect();
// Process clicks outside of window frame only
if (X > (windowBounds.nX + NSTATUSICON_FRAMESIZE))
{
// Calc row and col of targeted icon
targetRow = (Y - windowBounds.nY) / NSTATUSICON_SIZE;
targetCol = (X - windowBounds.nX - NSTATUSICON_FRAMESIZE) / NSTATUSICON_SIZE;
// Store status info of targeted icon
StatusIcon.GetItem(targetRow, targetCol, info);
// Store actual skill info and make sure it is exists
if (GetSkillInfo(info.ClassID, info.Level, skillInfo))
{
// Request server to stop skill effect
// Usage: _dispel:<int:skill_id>,<int :skill_level>
// Example: _dispel:313,8
RequestBypassToServer ( "_dispel:" $ string ( skillInfo. SkillID ) $ "," $ string ( skillInfo. SkillLevel ) ) ) ;
}
}
}
Question
newDevGR
έχω μια ερώτηση έχω site και δουλεύει με php file και θέλω να κάνει cone σε server τι πρέπει να κάνω.?
πχ εγώ έβαλα την ip του server εδώ
<?php
$L2JBS_config["mysql_host"]=181.40.129.100; // MySQL IP <---- και δεν κάνει cone
$L2JBS_config["mysql_port"]=3306; // MySQP port
$L2JBS_config["mysql_db"]="L2jdb"; // l2jdb or your lineage 2 server database name
$L2JBS_config["mysql_login"]="server"; // MySQL Login name
$L2JBS_config["mysql_password"]="123456789"; // MySQL Password
"Warning: mysql_connect() [function.mysql-connect]: Lost connection to MySQL server at 'reading initial communication packet', system error: 111 in /public_html/freya/config/_config_procs.php on line 3
Couldn't connect to MySQL"
ayto mou leei sto site
[mysqld]
user=mysql
bind-address=181.40.129.100 <--server IP αντί to 127.0.0.1
έβαλα την ip του server εδώ και κάνει κανονικά σύνδεση το site με τον server αλλα ο gameserver κολλάει και σταματάει την εργασία του στο msql
σας παρακαλώ οποιος γνωρίζει κάτι για αυτό το θέμα να με βοηθήσει
ο server δουλεύει πάνω σε linux Debian
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.