Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[RELEASE] New Server seal online

Newbie Spellweaver
Joined
Sep 29, 2005
Messages
78
Reaction score
14
Re: New Server seal online




why i can't run channel PK when channel normal is running
if i shutdown channel normal then run channel PK it's run



there is some translated item mall database in english
just restore the sql file to tb item_default



Low to ram linux Vmware
 
Newbie Spellweaver
Joined
Apr 18, 2011
Messages
7
Reaction score
0
Re: New Server seal online

can some one teach me how to setting the database in this new server ?
 
Newbie Spellweaver
Joined
Aug 11, 2011
Messages
7
Reaction score
0
Re: New Server seal online

Maav pake b indo...

Gan mw nanya..gg ane koq gx bisa yah kalo gx online...padahal host yg di etc udah ane ganti ke ip lokal 192.168.1.107...dari vmware ping ke ip itu juga udah bisa gan...masuk ke game jg bisa tp harus online pas di GG nya...knapa yah kira2 gan...

Trus pas udah masuk game itu GM COMMAND nya gmana yah gan??
 
Experienced Elementalist
Joined
Dec 1, 2009
Messages
224
Reaction score
20
Re: New Server seal online

Low to ram linux Vmware

i have up the ram to 1GB but still can't run the channel
is that 1 GB not enough??:(::(:


Maav pake b indo...

Gan mw nanya..gg ane koq gx bisa yah kalo gx online...padahal host yg di etc udah ane ganti ke ip lokal 192.168.1.107...dari vmware ping ke ip itu juga udah bisa gan...masuk ke game jg bisa tp harus online pas di GG nya...knapa yah kira2 gan...

Trus pas udah masuk game itu GM COMMAND nya gmana yah gan??

di page sebelumnya udah dijelasin sama saya..coba diliat..

---------- Post added at 11:14 AM ---------- Previous post was at 11:08 AM ----------

secara default kedua chanel bisa jalan bersamaan.
Code:
cd /home/seal99/Login
./ls_up

cd /home/seal99
./ggg_all2
cd /home/seal99/2xian/seal
./ggg_pk
kalo gw di copy aja file ggg_pk ke folder cahnel1 trus rename jadi ggg_all2, kemudian di chmod.
backup file asli
Code:
mv /home/seal99/ggg_all2 /home/seal99/ggg_all2.original
copy file pk
Code:
cp /home/seal99/2xian/seal/ggg_pk /home/seal99/ggg_all2
Code:
chmod +x /home/seal99/ggg_all2
atau
Code:
chmod +777 /home/seal99/ggg_all2
jadinya chanel 1 bisa pvp di colo, tpi gak bisa pvp pakai skill.

pvp/PK??
kalo channel normal pake file channel PK jadi bisa PK donk??
chmod dimana ya??saya lom pernah nemu..
oh iya GM command disini apa ya??
saya udah obrak abrik pake hex edit ga ketemu2..
 
Experienced Elementalist
Joined
Dec 1, 2009
Messages
224
Reaction score
20
Re: New Server seal online

translated register page in Indonesian Language
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Aug 11, 2011
Messages
7
Reaction score
0
Re: New Server seal online

trus untuk gm command dan list barang gimana kk??

jadi kk stiap maen harus online juga yah??
 
Newbie Spellweaver
Joined
Apr 18, 2011
Messages
7
Reaction score
0
Re: New Server seal online

can someone upload the seal clean that used in that video ?
 
Newbie Spellweaver
Joined
Aug 11, 2011
Messages
7
Reaction score
0
Re: New Server seal online

saya jg lom nemu GM command..
list barang kan ada..liad di page2 sebelumnya..
klo saya iya..

owhh jadi gitu yah...kalo mw sih bisa di unpack itu make olydb tp ane gx tw caranya...jd gameguardnya ilang...

oia knapa ane gx bisa konek ke item mall yah??
jadi setiap beli item mall itu eror...gx bisa..knapa yah..

skalian ada yg punya skill list dan map list gx??
 
Last edited:
Experienced Elementalist
Joined
Dec 1, 2009
Messages
224
Reaction score
20
Re: New Server seal online

owhh jadi gitu yah...kalo mw sih bisa di unpack itu make olydb tp ane gx tw caranya...jd gameguardnya ilang...

oia knapa ane gx bisa konek ke item mall yah??
jadi setiap beli item mall itu eror...gx bisa..knapa yah..

skalian ada yg punya skill list dan map list gx??

sayangnya ane ga jago pake olydb..wkwk

server item mallnya ada yang error??
 
Newbie Spellweaver
Joined
Sep 27, 2008
Messages
29
Reaction score
6
Re: New Server seal online

help can make register page in php

:tongue:Example from me :thumbup1:
PHP:
$db_host = ???;
$db_user = ???;
$db_pass = ???

$objConnect = mysql_connect($db_host,$db_user,$db_pass) or die("Error Connect to Database");
$objDB = mysql_select_db("seal_member");

function fncInsertRecord($strTable,$strField,$strValue)
{
	$strSQL = "INSERT INTO $strTable ($strField) VALUES ($strValue) ";
	return @mysql_query($strSQL);
}

$TextUser = strtolower(trim($_POST[TextUser]));
$password1 = strtolower(trim($_POST[password1]));
$sex = trim($_POST[sex]);
$nl = trim($_POST[nl]);
$csny = trim($_POST[csny]);
$sfzh = trim($_POST[sfzh]);
$email = trim($_POST[email]);
if ( $TextUser == "" ||  $password1 == "" || $sex == "" || $nl == "" || $csny == "" || $sfzh == "" || $email == ""){
	echo "Empty data";
	exit();
}

if (ereg('[^A-Za-z]', substr($TextUser,0,1))) {
	echo "First character must be letter a-z";
	exit();
}
$today = date("Y-m-d H:i:s");
$strTable = "idtable1"; //Which idtable? i don't know. If you know tell me please.
$strField = "id,passwd,reg_date,birthday,email,trueId,sex,age";
$strValue = " '".mysql_real_escape_string($TextUser)."',PASSWORD('$password1'),'$today','$csny','$email','$sfzh','$sex','$nl' ";
$objInsert = fncInsertRecord($strTable,$strField,$strValue);
if(!$objInsert){
	echo "Insert data error.";
}else{
	echo "Oh Yeh";
}
@mysql_close($objConnect);
 
Experienced Elementalist
Joined
Dec 1, 2009
Messages
224
Reaction score
20
Re: New Server seal online

:tongue:Example from me :thumbup1:
PHP:
$db_host = ???;
$db_user = ???;
$db_pass = ???

$objConnect = mysql_connect($db_host,$db_user,$db_pass) or die("Error Connect to Database");
$objDB = mysql_select_db("seal_member");

function fncInsertRecord($strTable,$strField,$strValue)
{
	$strSQL = "INSERT INTO $strTable ($strField) VALUES ($strValue) ";
	return @mysql_query($strSQL);
}

$TextUser = strtolower(trim($_POST[TextUser]));
$password1 = strtolower(trim($_POST[password1]));
$sex = trim($_POST[sex]);
$nl = trim($_POST[nl]);
$csny = trim($_POST[csny]);
$sfzh = trim($_POST[sfzh]);
$email = trim($_POST[email]);
if ( $TextUser == "" ||  $password1 == "" || $sex == "" || $nl == "" || $csny == "" || $sfzh == "" || $email == ""){
	echo "Empty data";
	exit();
}

if (ereg('[^A-Za-z]', substr($TextUser,0,1))) {
	echo "First character must be letter a-z";
	exit();
}
$today = date("Y-m-d H:i:s");
$strTable = "idtable1"; //Which idtable? i don't know. If you know tell me please.
$strField = "id,passwd,reg_date,birthday,email,trueId,sex,age";
$strValue = " '".mysql_real_escape_string($TextUser)."',PASSWORD('$password1'),'$today','$csny','$email','$sfzh','$sex','$nl' ";
$objInsert = fncInsertRecord($strTable,$strField,$strValue);
if(!$objInsert){
	echo "Insert data error.";
}else{
	echo "Oh Yeh";
}
@mysql_close($objConnect);

nice one.. :thumbup::thumbup:
 
Initiate Mage
Joined
Apr 12, 2011
Messages
1
Reaction score
0
Re: New Server seal online

hardly believe it, so many indonesian ppl here.. :D

n so do i :eek:

anyway, me n my friends talks about opening seal private for indo, since we all now playing in chinese server, which is in chinese language and i cant read a poop :))

first of all, we prepared the host, or maybe at least we already have the budget for rent up some vps.

all we need actually is knowledge, about the client, the server files, anything related with the game itself.

could we use indo/english client? coz AFAIK there aren't private server exist except the chinese.. n i really dont know why, no idea at all :p

so, i think we should make a little conference, indo ppl with one purpose should gather together right :D we can offer everything we have n help each other, it's not a bad idea at all ;)
 
Newbie Spellweaver
Joined
Sep 30, 2008
Messages
15
Reaction score
0
Re: New Server seal online

thanks for share this server
 
Experienced Elementalist
Joined
Dec 1, 2009
Messages
224
Reaction score
20
Re: New Server seal online

hardly believe it, so many indonesian ppl here.. :D

n so do i :eek:

anyway, me n my friends talks about opening seal private for indo, since we all now playing in chinese server, which is in chinese language and i cant read a poop :))

first of all, we prepared the host, or maybe at least we already have the budget for rent up some vps.

all we need actually is knowledge, about the client, the server files, anything related with the game itself.

could we use indo/english client? coz AFAIK there aren't private server exist except the chinese.. n i really dont know why, no idea at all :p

so, i think we should make a little conference, indo ppl with one purpose should gather together right :D we can offer everything we have n help each other, it's not a bad idea at all ;)

mine is in indonesian :D::D:
 
Back
Top