Share Mị Lực Vô Song bản chuẩn - Trang 7
Hello & Welcome to our community. Is this your first visit? Đăng Ký
Follow us on
Follow us on Facebook Follow us on Twitter Linked In Flickr Watch us on YouTube My Space Blogger
 
Trang 7 của 13 Đầu tiênĐầu tiên ... 5 6 7 8 9 ... CuốiCuối
Kết quả 61 đến 70 của 125
  1. #61
    ⚔ Nà Ní Team ⚔ ZhouJieLun's Avatar
    Ngày tham gia
    Dec 2012
    Đang ở
    Đà Lạt city
    Bài viết
    1,996
    Thanks
    221
    Thanked 1,001 Times in 389 Posts

    Ðề: Share Mị Lực Vô Song bản chuẩn

    Trích dẫn Gửi bởi Tuan565 [Only registered and activated users can see links. ]
    Có viettel bị ảnh hưởng nặng rồi sáng giờ web nước ngoài đơ lòi mắt
    Toàn phải xem đi xem lại mấy bộ cũ trong máy ))
    [Only registered and activated users can see links. ]
    Vẫn yêu đời
    [Only registered and activated users can see links. ] 2008
    [Only registered and activated users can see links. ] 2013
    [Only registered and activated users can see links. ] english
    [Only registered and activated users can see links. ] 2010 windows 1click

  2. #62
    Thành Viên chip2016's Avatar
    Ngày tham gia
    Apr 2015
    Bài viết
    144
    Thanks
    18
    Thanked 54 Times in 10 Posts

    Ðề: Share Mị Lực Vô Song bản chuẩn

    pác nào còn giữ tool share mình với, chẵng qua là muốn khám phá sâu hơn về tựa game hấp dẫn này
    Khách viếng thăm hãy cùng chip2016 xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  3. #63
    Thành Viên GameZone xfree1234's Avatar
    Ngày tham gia
    May 2016
    Bài viết
    10
    Thanks
    1
    Thanked 1 Time in 1 Post

    Ðề: Share Mị Lực Vô Song bản chuẩn

    Cho bác nào thích mở online
    Cách 1: Xuất VM của bác tuấn ra định dạng OVF rồi import thẳng vào VPS (nếu bên cho thuê hỗ trợ)
    Cách 2: cài từ đầu. Chuẩn bị 1 sever centos 6 (x64)
    B1: Cài các thư viện, MYSQL & APACHE
    Code:
    #!/bin/bash
    #--MI LUC VO SO AUTO INSTALL SCRIPT --#
    svip=`hostname -I | awk '{print $1}'`
    mysqlpw=`date +%s | sha256sum | base64 | head -c 12 ; echo`
    echo $mysqlpw > /root/mysql_password.txt
    #1 - Add User
    useradd tianjie -m 
    groupadd -r cyops
    usermod -a -G cyops tianjie
    echo "%i ALL=(ALL) ALL" >> /etc/sudoers
    
    #2-- Cai dat cac thu vien can thiet --#
    yum -y install epel-release >/dev/null 2>&1
    yum -y install nano wget >/dev/null 2>&1
    echo "cai dat thu vien can thiet...."
    yum -y install dialog ntp vixie-cron vim-enhanced gcc gcc-c++ flex bison autoconf automake glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel libtool* zlib-devel libxml2-devel libjpeg-devel libpng-devel libtiff-devel fontconfig-devel freetype-devel libXpm-devel gettext-devel curl curl-devel pam-devel e2fsprogs-devel krb5-devel libidn libidn-devel openssl openssl-devel openldap openldap-devel vim* lrzsz screen nss_ldap openldap-clients openldap-servers patch sysstat dstat iftop mlocate ntp iptraf unzip which gdb pstack >/dev/null 2>&1
    echo "Cac thu vien cai dat da xong!"
    yum -y install git >/dev/null 2>&1
    #-- Tai source va build --#
    #-- Goi cai dat bao gom:
    # protobuf-2.4.1.tar.gz, apr-1.4.5.tar.gz, apr-util-1.3.12.tar.gz, log4cxx-0.10.0.zip -##
    
    mkdir -p /usr/local/src/
    cd /usr/local/src/
    cd /usr/local/src/MLVS
    unzip apache-log4cxx-0.10.0.zip
    tar -xzf protobuf-2.4.1.tar.gz
    tar -xzf apr-1.4.5.tar.gz
    tar -xzf apr-util-1.3.12.tar.gz
    rm -f apr-1.4.5.tar.gz apr-util-1.3.12.tar.gz protobuf-2.4.1.tar.gz apache-log4cxx-0.10.0.zip 
    
    cd /usr/local/src/MLVS/protobuf-2.4.1
    ./configure --prefix=/usr/local/protobuf
    make && make install
    ln -s /usr/local/protobuf/bin/protoc /usr/bin/
    echo "/usr/local/protobuf/lib/" >> /etc/ld.so.conf
    echo "/usr/local/lib/" >> /etc/ld.so.conf
    ldconfig
    
    cd /usr/local/src/MLVS/apr-1.4.5
    ./configure --prefix=/usr/local/apr
    make && make install
    
    cd /usr/local/src/MLVS/cd apr-util-1.3.12
    ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr
    make && make install
    
    cd /usr/local/src/MLVS/apache-log4cxx-0.10.0
    chmod -R 777 *
    chmod +x configure
    ./configure --prefix=/usr/local --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --with-charset=utf-8
    make && make install
    ln -s /usr/lib64/libssl.so.1.0.1e /usr/lib64/libssl.so.6
    ln -s /usr/lib64/lib******.so.1.0.1e /usr/lib64/lib******.so.6
    ln -s /usr/lib64/libcurl.so.4.1.1 /usr/lib64/libcurl.so.3
    cd /root/
    
    yum -y install mysql mysql-server
    service mysqld start
    chkconfig --level 235 mysqld on
    
    DATABASE_PASS=$(cat /root/mysql_password.txt)
    mysqladmin -u root password "$DATABASE_PASS"
    # Make sure that NOBODY can access the server without a password
    mysql -u root -p"$DATABASE_PASS" -e "UPDATE mysql.user SET Password=PASSWORD('$DATABASE_PASS') WHERE User='root'"
    # Kill the anonymous users
    mysql -u root -p"$DATABASE_PASS" -e "DELETE FROM mysql.user WHERE User='root' AND Host NOT IN ('localhost', '127.0.0.1', '::1')"
    mysql -u root -p"$DATABASE_PASS" -e "DELETE FROM mysql.user WHERE User=''"
    # Kill off the demo database
    mysql -u root -p"$DATABASE_PASS" -e "DELETE FROM mysql.db WHERE Db='test' OR Db='test\_%'"
    # Make our changes take effect
    mysql -u root -p"$DATABASE_PASS" -e "FLUSH PRIVILEGES"
    
    
    yum -y install httpd 
    service httpd start
    yum -y install php php-pear php-python php-mysql php-mbstring
    service httpd restart
    service iptables stop
    chkconfig iptables off
    
    echo "cai dat hoan tat"
    echo "Mat khau root cua SQL: /root/mysql_password.txt"
    B2:
    Dùng Navicat tạo USER, DB và import db vào
    B3: Copy Sever, source vào, sửa IP và chạy :V
    Code:
    Search "192.168.200.100" (11 hits in 3 files)
      D:\mlvs\html\index.php (1 hit)
    	Line 12: 			$url = 'http://192.168.200.100/login.html?auth='.$auth1.'&sign='.$sign.'&rolename=';
      D:\mlvs\html\login.html (9 hits)
    	Line 39:         flashvars.cdn = "http://192.168.200.100/resource";
    	Line 40:         flashvars.loginsvr = "192.168.200.100";
    	Line 42:         flashvars.webaddr = "192.168.200.100";
    	Line 45:         var loadadr = "http://192.168.200.100/resource/PerLoading.swf" + "?" + t;
    	Line 64:         var url = "http://192.168.200.100:2900/";
    	Line 91:             neww = window.open('http://192.168.200.100/');
    	Line 96:             neww = window.open('http://192.168.200.100/');
    	Line 100:             window.top.location.href = 'http://192.168.200.100/';
    	Line 104:             neww = window.open('http://192.168.200.100');
      D:\mlvs\html\pay.php (1 hit)
    	Line 13: 	$url = 'http://192.168.200.100:10002/?auth='.$auth1.'&sign='.$sign;
    
    	
    	Search "192.168.200.100" (30 hits in 5 files)
      D:\mlvs\tianjie\server_adm\release\Config\loginServerList.xml (6 hits)
    	Line 6: 		<server ip="192.168.200.100" port="9998"/>
    	Line 11: 		<server ip="192.168.200.100" port="9901"/>
    	Line 16: 		<server ip="192.168.200.100" port="10001"/>
    	Line 21: 		<server ip="192.168.200.100" port="10000"/>
    	Line 26: 		<server ip="192.168.200.100" port="9913">
    	Line 30: 		<!--server ip="192.168.200.1006" port="7280"/-->
      D:\mlvs\tianjie\server_adm\release\config.xml (4 hits)
    	Line 15: 		<superserver port="10101">192.168.200.100</superserver>
    	Line 49: 		<flat>192.168.200.100</flat>
    	Line 91: 		<chongzhiIP>192.168.200.100</chongzhiIP>
    	Line 93: 		<brchongzhiIP>192.168.200.100</brchongzhiIP>
      D:\mlvs\tianjie\server_s1\release\Config\loginServerList.xml (5 hits)
    	Line 6: 		<server ip="192.168.200.100" port="9998"/>
    	Line 11: 		<server ip="192.168.200.100" port="9901"/>
    	Line 16: 		<server ip="192.168.200.100" port="10001"/>
    	Line 21: 		<server ip="192.168.200.100" port="10000"/>
    	Line 30: 		<!--server ip="192.168.200.1006" port="7280"/-->
      D:\mlvs\tianjie\server_s1\release\Config\serverList.xml (10 hits)
    	Line 5: 	<server id="1"		type="1"  name="SUPER Server"	ip="192.168.200.100" port="10101"/>
    	Line 6: 	<server id="11"		type="11" name="RECORD Server"	ip="192.168.200.100" port="10102"/>
    	Line 7: 	<server id="20"		type="20" name="SESSION Server"	ip="192.168.200.100" port="10103"/>
    	Line 8: 	<server id="211"	type="21" name="GAME Server"		ip="192.168.200.100" port="10104"/>
    	Line 9: 	<server id="212"	type="21" name="GAME Server"		ip="192.168.200.100" port="10105"/>
    	Line 10: 	<server id="213"	type="21" name="GAME Server"		ip="192.168.200.100" port="10106"/>
    	Line 11: 	<server id="214"	type="21" name="GAME Server"		ip="192.168.200.100" port="10107"/>
    	Line 12: 	<server id="215"	type="21" name="GAME Server"		ip="192.168.200.100" port="10108"/>
    	Line 13: 	<server id="221"	type="22" name="GATE Server"		ip="192.168.200.100" port="10109"/>
    	Line 14: 	<server id="222"	type="22" name="GATE Server"		ip="192.168.200.100" port="10110"/>
      D:\mlvs\tianjie\server_s1\release\config.xml (5 hits)
    	Line 15: 		<superserver port="10101">192.168.200.100</superserver>
    	Line 49: 		<flat>192.168.200.100</flat>
    	Line 60: 		<LogServerIP>192.168.200.100</LogServerIP>
    	Line 93: 		<chongzhiIP>192.168.200.100</chongzhiIP>
    	Line 95: 		<brchongzhiIP>192.168.200.100</brchongzhiIP>
    Cuối cùng là kiếm 1 cái web quản trị user và bảo mật lại cái API nạp là xong :V
    Lần sửa cuối bởi xfree1234, ngày 30-04-18 lúc 09:00 PM.
    Khách viếng thăm hãy cùng xfree1234 xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  4. Các thành viên gởi lời cảm ơn đến xfree1234 vì bài viết này !

    mrductan (14-05-18)

  5. #64
    Thành Viên chip2016's Avatar
    Ngày tham gia
    Apr 2015
    Bài viết
    144
    Thanks
    18
    Thanked 54 Times in 10 Posts

    Ðề: Share Mị Lực Vô Song bản chuẩn

    Trích dẫn Gửi bởi xfree1234 [Only registered and activated users can see links. ]
    Cho bác nào thích mở online
    Cách 1: Xuất VM của bác tuấn ra định dạng OVF rồi import thẳng vào VPS (nếu bên cho thuê hỗ trợ)
    Cách 2: cài từ đầu. Chuẩn bị 1 sever centos 6 (x64)
    B1: Cài các thư viện, MYSQL & APACHE
    Code:
    #!/bin/bash
    #--MI LUC VO SO AUTO INSTALL SCRIPT --#
    svip=`hostname -I | awk '{print $1}'`
    mysqlpw=`date +%s | sha256sum | base64 | head -c 12 ; echo`
    echo $mysqlpw > /root/mysql_password.txt
    #1 - Add User
    useradd tianjie -m 
    groupadd -r cyops
    usermod -a -G cyops tianjie
    echo "%i ALL=(ALL) ALL" >> /etc/sudoers
    
    #2-- Cai dat cac thu vien can thiet --#
    yum -y install epel-release >/dev/null 2>&1
    yum -y install nano wget >/dev/null 2>&1
    echo "cai dat thu vien can thiet...."
    yum -y install dialog ntp vixie-cron vim-enhanced gcc gcc-c++ flex bison autoconf automake glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel libtool* zlib-devel libxml2-devel libjpeg-devel libpng-devel libtiff-devel fontconfig-devel freetype-devel libXpm-devel gettext-devel curl curl-devel pam-devel e2fsprogs-devel krb5-devel libidn libidn-devel openssl openssl-devel openldap openldap-devel vim* lrzsz screen nss_ldap openldap-clients openldap-servers patch sysstat dstat iftop mlocate ntp iptraf unzip which gdb pstack >/dev/null 2>&1
    echo "Cac thu vien cai dat da xong!"
    yum -y install git >/dev/null 2>&1
    #-- Tai source va build --#
    #-- Goi cai dat bao gom:
    # protobuf-2.4.1.tar.gz, apr-1.4.5.tar.gz, apr-util-1.3.12.tar.gz, log4cxx-0.10.0.zip -##
    
    mkdir -p /usr/local/src/
    cd /usr/local/src/
    cd /usr/local/src/MLVS
    unzip apache-log4cxx-0.10.0.zip
    tar -xzf protobuf-2.4.1.tar.gz
    tar -xzf apr-1.4.5.tar.gz
    tar -xzf apr-util-1.3.12.tar.gz
    rm -f apr-1.4.5.tar.gz apr-util-1.3.12.tar.gz protobuf-2.4.1.tar.gz apache-log4cxx-0.10.0.zip 
    
    cd /usr/local/src/MLVS/protobuf-2.4.1
    ./configure --prefix=/usr/local/protobuf
    make && make install
    ln -s /usr/local/protobuf/bin/protoc /usr/bin/
    echo "/usr/local/protobuf/lib/" >> /etc/ld.so.conf
    echo "/usr/local/lib/" >> /etc/ld.so.conf
    ldconfig
    
    cd /usr/local/src/MLVS/apr-1.4.5
    ./configure --prefix=/usr/local/apr
    make && make install
    
    cd /usr/local/src/MLVS/cd apr-util-1.3.12
    ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr
    make && make install
    
    cd /usr/local/src/MLVS/apache-log4cxx-0.10.0
    chmod -R 777 *
    chmod +x configure
    ./configure --prefix=/usr/local --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --with-charset=utf-8
    make && make install
    ln -s /usr/lib64/libssl.so.1.0.1e /usr/lib64/libssl.so.6
    ln -s /usr/lib64/lib******.so.1.0.1e /usr/lib64/lib******.so.6
    ln -s /usr/lib64/libcurl.so.4.1.1 /usr/lib64/libcurl.so.3
    cd /root/
    
    yum -y install mysql mysql-server
    service mysqld start
    chkconfig --level 235 mysqld on
    
    DATABASE_PASS=$(cat /root/mysql_password.txt)
    mysqladmin -u root password "$DATABASE_PASS"
    # Make sure that NOBODY can access the server without a password
    mysql -u root -p"$DATABASE_PASS" -e "UPDATE mysql.user SET Password=PASSWORD('$DATABASE_PASS') WHERE User='root'"
    # Kill the anonymous users
    mysql -u root -p"$DATABASE_PASS" -e "DELETE FROM mysql.user WHERE User='root' AND Host NOT IN ('localhost', '127.0.0.1', '::1')"
    mysql -u root -p"$DATABASE_PASS" -e "DELETE FROM mysql.user WHERE User=''"
    # Kill off the demo database
    mysql -u root -p"$DATABASE_PASS" -e "DELETE FROM mysql.db WHERE Db='test' OR Db='test\_%'"
    # Make our changes take effect
    mysql -u root -p"$DATABASE_PASS" -e "FLUSH PRIVILEGES"
    
    
    yum -y install httpd 
    service httpd start
    yum -y install php php-pear php-python php-mysql php-mbstring
    service httpd restart
    service iptables stop
    chkconfig iptables off
    
    echo "cai dat hoan tat"
    echo "Mat khau root cua SQL: /root/mysql_password.txt"
    B2:
    Dùng Navicat tạo USER, DB và import db vào
    B3: Copy Sever, source vào, sửa IP và chạy :V
    Code:
    Search "192.168.200.100" (11 hits in 3 files)
      D:\mlvs\html\index.php (1 hit)
    	Line 12: 			$url = 'http://192.168.200.100/login.html?auth='.$auth1.'&sign='.$sign.'&rolename=';
      D:\mlvs\html\login.html (9 hits)
    	Line 39:         flashvars.cdn = "http://192.168.200.100/resource";
    	Line 40:         flashvars.loginsvr = "192.168.200.100";
    	Line 42:         flashvars.webaddr = "192.168.200.100";
    	Line 45:         var loadadr = "http://192.168.200.100/resource/PerLoading.swf" + "?" + t;
    	Line 64:         var url = "http://192.168.200.100:2900/";
    	Line 91:             neww = window.open('http://192.168.200.100/');
    	Line 96:             neww = window.open('http://192.168.200.100/');
    	Line 100:             window.top.location.href = 'http://192.168.200.100/';
    	Line 104:             neww = window.open('http://192.168.200.100');
      D:\mlvs\html\pay.php (1 hit)
    	Line 13: 	$url = 'http://192.168.200.100:10002/?auth='.$auth1.'&sign='.$sign;
    
    	
    	Search "192.168.200.100" (30 hits in 5 files)
      D:\mlvs\tianjie\server_adm\release\Config\loginServerList.xml (6 hits)
    	Line 6: 		<server ip="192.168.200.100" port="9998"/>
    	Line 11: 		<server ip="192.168.200.100" port="9901"/>
    	Line 16: 		<server ip="192.168.200.100" port="10001"/>
    	Line 21: 		<server ip="192.168.200.100" port="10000"/>
    	Line 26: 		<server ip="192.168.200.100" port="9913">
    	Line 30: 		<!--server ip="192.168.200.1006" port="7280"/-->
      D:\mlvs\tianjie\server_adm\release\config.xml (4 hits)
    	Line 15: 		<superserver port="10101">192.168.200.100</superserver>
    	Line 49: 		<flat>192.168.200.100</flat>
    	Line 91: 		<chongzhiIP>192.168.200.100</chongzhiIP>
    	Line 93: 		<brchongzhiIP>192.168.200.100</brchongzhiIP>
      D:\mlvs\tianjie\server_s1\release\Config\loginServerList.xml (5 hits)
    	Line 6: 		<server ip="192.168.200.100" port="9998"/>
    	Line 11: 		<server ip="192.168.200.100" port="9901"/>
    	Line 16: 		<server ip="192.168.200.100" port="10001"/>
    	Line 21: 		<server ip="192.168.200.100" port="10000"/>
    	Line 30: 		<!--server ip="192.168.200.1006" port="7280"/-->
      D:\mlvs\tianjie\server_s1\release\Config\serverList.xml (10 hits)
    	Line 5: 	<server id="1"		type="1"  name="SUPER Server"	ip="192.168.200.100" port="10101"/>
    	Line 6: 	<server id="11"		type="11" name="RECORD Server"	ip="192.168.200.100" port="10102"/>
    	Line 7: 	<server id="20"		type="20" name="SESSION Server"	ip="192.168.200.100" port="10103"/>
    	Line 8: 	<server id="211"	type="21" name="GAME Server"		ip="192.168.200.100" port="10104"/>
    	Line 9: 	<server id="212"	type="21" name="GAME Server"		ip="192.168.200.100" port="10105"/>
    	Line 10: 	<server id="213"	type="21" name="GAME Server"		ip="192.168.200.100" port="10106"/>
    	Line 11: 	<server id="214"	type="21" name="GAME Server"		ip="192.168.200.100" port="10107"/>
    	Line 12: 	<server id="215"	type="21" name="GAME Server"		ip="192.168.200.100" port="10108"/>
    	Line 13: 	<server id="221"	type="22" name="GATE Server"		ip="192.168.200.100" port="10109"/>
    	Line 14: 	<server id="222"	type="22" name="GATE Server"		ip="192.168.200.100" port="10110"/>
      D:\mlvs\tianjie\server_s1\release\config.xml (5 hits)
    	Line 15: 		<superserver port="10101">192.168.200.100</superserver>
    	Line 49: 		<flat>192.168.200.100</flat>
    	Line 60: 		<LogServerIP>192.168.200.100</LogServerIP>
    	Line 93: 		<chongzhiIP>192.168.200.100</chongzhiIP>
    	Line 95: 		<brchongzhiIP>192.168.200.100</brchongzhiIP>
    Cuối cùng là kiếm 1 cái web quản trị user và bảo mật lại cái API nạp là xong :V
    Xin pác Chỉ cách bảo mật đi pác cũng hóng cái vụ bảo mật API
    Khách viếng thăm hãy cùng chip2016 xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  6. #65
    Thành Viên GameZone xfree1234's Avatar
    Ngày tham gia
    May 2016
    Bài viết
    10
    Thanks
    1
    Thanked 1 Time in 1 Post

    Ðề: Share Mị Lực Vô Song bản chuẩn

    Trích dẫn Gửi bởi chip2016 [Only registered and activated users can see links. ]
    Xin pác Chỉ cách bảo mật đi pác cũng hóng cái vụ bảo mật API
    Trong file config.xml sửa như sau
    Code:
    BillServer>
    		<logfilename>/home/tianjie/server_s1/log/billserver.log</logfilename>
    		<superport>10001</superport>
    		<chongzhiport>10002</chongzhiport>
    		<chongzhiIP>127.0.0.1</chongzhiIP>
    		<brchongzhiport>10003</brchongzhiport>
    		<brchongzhiIP>192.168.200.100</brchongzhiIP>
            <businessport>10004</businessport>
    		<mysql>mysql://mlvs:Hkm8976sdf@localhost:3306/mlvs_s1</mysql>
    	</BillServer>
    File pay.php viết lại để gọi vào localhost là được:
    PHP Code:
    $url 'http://127.0.0.1:10002/?auth='.$auth1.'&sign='.$sign;
        
    $result file_get_contents($url); 
    Lần sửa cuối bởi xfree1234, ngày 01-05-18 lúc 08:45 AM.
    Khách viếng thăm hãy cùng xfree1234 xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  7. #66
    Thành Viên
    Ngày tham gia
    Nov 2011
    Bài viết
    102
    Thanks
    133
    Thanked 25 Times in 14 Posts

    Ðề: Share Mị Lực Vô Song bản chuẩn

    Mình làm như hướng dẫn, server cũng chạy ok mà sao vào web 192.160.200.100 ko được nhỉ, k thấy sai chỗ nào hết.
    Khách viếng thăm hãy cùng minhnghia0507 xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  8. #67
    Thành Viên
    Ngày tham gia
    Nov 2014
    Bài viết
    69
    Thanks
    32
    Thanked 2 Times in 1 Post

    Ðề: Share Mị Lực Vô Song bản chuẩn

    Có cách nào ad thêm bạc mà ko phải nhờ navicat ko bác ...?
    Khách viếng thăm hãy cùng nguyeenxhair1 xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  9. #68
    Thành Viên
    Ngày tham gia
    Aug 2012
    Đang ở
    Philippines
    Bài viết
    117
    Thanks
    70
    Thanked 45 Times in 22 Posts

    Ðề: Share Mị Lực Vô Song bản chuẩn

    Tìm cách add item ( ví dụ Tinh Diệu Thạch item id="4") vào ruơng hoặc gửi qua thư đều được, ai biết share mình với nhé :3, đang chơi off mà quay Thiên tử đỉnh chắc năm sau mới đủ để phá quá -_-
    Dành cho mấy ông ko thích dùng, ko biết dùng vân vân và mây mây .... về navicat mà muốn add KNB 1 phát max luôn =)
    Dùng winscp đăng nhập 192.168.200.100 ... root/tuan565
    / <root> / var / www / html -> pay.php
    Chỉnh $gold = "xxxx"; (xxxx là số knb mấy ông muốn thay đổi trong 1 lần nạp nhận được)
    Lần sửa cuối bởi diguhey, ngày 06-05-18 lúc 01:41 PM.
    Khách viếng thăm hãy cùng diguhey xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  10. #69
    Thành Viên
    Ngày tham gia
    Aug 2012
    Đang ở
    Philippines
    Bài viết
    117
    Thanks
    70
    Thanked 45 Times in 22 Posts

    Ðề: Share Mị Lực Vô Song bản chuẩn

    Trích dẫn Gửi bởi nguyeenxhair1 [Only registered and activated users can see links. ]
    Có cách nào ad thêm bạc mà ko phải nhờ navicat ko bác ...?
    Tận dụng file pay.php mà sửa lại thành add bạc
    Khách viếng thăm hãy cùng diguhey xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  11. #70
    Thành Viên
    Ngày tham gia
    Nov 2014
    Bài viết
    69
    Thanks
    32
    Thanked 2 Times in 1 Post

    Ðề: Share Mị Lực Vô Song bản chuẩn

    Trích dẫn Gửi bởi diguhey [Only registered and activated users can see links. ]
    Tận dụng file pay.php mà sửa lại thành add bạc
    Bác chỉ giùm e với. E ko biết sửa thế nào để thêm bạc. E sửa đc để thêm nhiều vàng hơn rồi.
    Khách viếng thăm hãy cùng nguyeenxhair1 xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

 

 
Trang 7 của 13 Đầu tiênĐầu tiên ... 5 6 7 8 9 ... CuốiCuối

Các Chủ đề tương tự

  1. [JX] Cần Giúp về Script Đua top đợt 2 song song vs đợt 1.......
    Bởi kid2058 trong diễn đàn Hỏi Đáp/ Yêu Cầu
    Trả lời: 0
    Bài viết cuối: 27-03-15, 06:31 PM
  2. [MU] Hỏi cao thủ về chạy 2 cụm máy chủ song song
    Bởi libikay trong diễn đàn Hỏi Đáp/ Yêu Cầu
    Trả lời: 0
    Bài viết cuối: 23-01-13, 10:14 AM
  3. Đổi Đường Dẫn Vào Game, Chạy Song song sv khác
    Bởi neverbackdown trong diễn đàn Hỏi Đáp/ Yêu Cầu
    Trả lời: 2
    Bài viết cuối: 10-01-13, 10:04 PM
  4. [JX] Sql 2000 có thể chạy song song với sql 2008 ???
    Bởi tien320456 trong diễn đàn Hỏi Đáp/ Yêu Cầu
    Trả lời: 1
    Bài viết cuối: 12-04-12, 05:47 PM
  5. Album Cao Thiên Tú Vol2 - Song Song (320Kbps)
    Bởi DaDuyTeo trong diễn đàn [Mp3 Album] Thư Viện Âm Nhạc
    Trả lời: 0
    Bài viết cuối: 02-08-09, 06:25 PM

Quyền viết bài

  • Bạn Không thể gửi Chủ đề mới
  • Bạn Không thể Gửi trả lời
  • Bạn Không thể Gửi file đính kèm
  • Bạn Không thể Sửa bài viết của mình
  •  
Múi giờ GMT +7. Bây giờ là 08:00 AM.
vBulletin®, Copyright ©2000-2011, Jelsoft Enterprises Ltd.
CLBGamesVN không chịu trách nhiệm về Luật Bản Quyền của các tài liệu, bài viết v.v...được đăng tải trên diễn đàn này.
Diễn đàn phát triển dưới sự đóng góp của tất cả thành viên. BQT chỉ là những người thành lập ra sân chơi, quản lý và duy trì về mặt kỹ thuật, nội dung khi hợp lệ.