Webgame - Xnova revolution 5.1 - Tiếng Việt - Trang 5
Follow us on
Follow us on Facebook Follow us on Twitter Linked In Flickr Watch us on YouTube My Space Blogger
 
Trang 5 của 9 Đầu tiênĐầu tiên ... 3 4 5 6 7 ... CuốiCuối
Kết quả 41 đến 50 của 81
  1. #41
    Thành Viên
    Ngày tham gia
    Feb 2010
    Bài viết
    399
    Thanks
    108
    Thanked 66 Times in 37 Posts

    Ðề: Webgame - Xnova revolution 5.1 - Tiếng Việt

    dân chuyên PHP thì thiếu gì trình độ để xây dựng 1 web game hoành tráng , qua ASP làm gì cho khó khăn
    Khách viếng thăm hãy cùng skriptank xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  2. #42
    Thành Viên
    Ngày tham gia
    Aug 2011
    Bài viết
    45
    Thanks
    14
    Thanked 1 Time in 1 Post

    Ðề: Webgame - Xnova revolution 5.1 - Tiếng Việt

    Trích dẫn Gửi bởi skriptank [Only registered and activated users can see links. ]
    dân chuyên PHP thì thiếu gì trình độ để xây dựng 1 web game hoành tráng , qua ASP làm gì cho khó khăn
    Trình độ của tớ chỉ là trung bình thôi, web bt thì tớ viết đc, chứ webgame flash đồ họa đẹp thì chịu thua rồi, chỉ có ăn của bọn Tàu Khựa thì mới có thui. Chỉ tiếc là mấy game hay toàn code asp mới chán =.=
    Khách viếng thăm hãy cùng LinhKid xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  3. #43
    Thành Viên
    Ngày tham gia
    Aug 2011
    Bài viết
    45
    Thanks
    14
    Thanked 1 Time in 1 Post

    Ðề: Webgame - Xnova revolution 5.1 - Tiếng Việt

    Cái file nv của tank xài ntn thế nhỉ @@, về up lên rồi, vào file game.php để chèn rồi nhưng ko biết khai báo hàm ShowTutorialPage ở chỗ nào .
    Bạn nào chỉ chi tiết luôn là chỉnh sửa file nào nữa đi , hix.
    Khách viếng thăm hãy cùng LinhKid xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  4. #44
    Thành Viên
    Ngày tham gia
    Feb 2010
    Bài viết
    399
    Thanks
    108
    Thanked 66 Times in 37 Posts

    Ðề: Webgame - Xnova revolution 5.1 - Tiếng Việt

    Tống hết các file vào thư mục như n2t168 đã nói

    mở game.php và chèn dòng này vào, vào đâu thì tùy

    case 'tutorial': include_once(ROOT_PATH . 'includes/pages/ShowTutorialPage.php'); new ShowTutorialPage(); break;
    mở left_meu.tpl và chèn dòng này vào chỗ nào bạn muốn hiển thị

    <li><a href="?page=tutorial">Tutorial</a></li>
    Mở class.ShowFleetPage.php lên tìm đoạn này:

    public static function ShowFleetPage()
    {
    global $USER, $PLANET, $reslist, $resource, $db, $LNG, $ExtraDM;

    $PlanetRess = new ResourceUpdate();
    $PlanetRess->CalcResource();
    $PlanetRess->SavePlanetToDB();

    $parse= $LNG;
    $FleetID= request_var('fleetid', 0);
    $GetAction= request_var('action', "");

    $template= new template();
    $template->loadscript('flotten.js');
    Thêm vào sau đó đoạn này:

    // starting tutorial
    $query = $db->uniquequery("SELECT `fleet_mission` FROM ".FLEETS." WHERE `fleet_owner` = '". $USER['id'] ."' AND `fleet_mission` = '6';");
    if($query)
    $db->query("UPDATE ".USERS." SET `tuto_spia_fin`=tuto_spia_fin+1 WHERE id=".$USER['id']."");
    $query = $db->uniquequery("SELECT * FROM ".BUDDY." WHERE `sender` = '". $USER['id'] ."';");
    $query2= $db->uniquequery("SELECT `fleet_mission` FROM ".FLEETS." WHERE `fleet_owner` = '". $USER['id'] ."' AND `fleet_mission` = '8';");
    if($query2)
    $db->query("UPDATE ".USERS." SET `tuto_detriti_fin`=tuto_detriti_fin+1 WHERE id=".$USER['id']."");



    if($USER['tuto_miniera']==0){
    if($PLANET['metal_mine'] >=4 && $PLANET['crystal_mine'] >=2 && $PLANET['solar_plant'] >=4){
    $db->query("UPDATE ".USERS." SET `tuto_miniera`=tuto_miniera+1 WHERE id=".$USER['id']."");
    $db->query("UPDATE ".USERS." SET `darkmatter`=darkmatter+200 WHERE id=".$USER['id']."");
    $template->message("Congratulations you have completed Task 1 of this tutorial! You received just 200 dark matter!", "?page=fleet", 3);
    exit;
    }
    }
    if($USER['tuto_difesa']==0){
    if($PLANET['deuterium_sintetizer'] >=2 && $PLANET['robot_factory'] >=2 && $PLANET['hangar'] >=1&& $PLANET['misil_launcher'] >=1){
    $db->query("UPDATE ".USERS." SET `tuto_difesa`=tuto_difesa+1 WHERE id=".$USER['id']."");
    $db->query("UPDATE ".USERS." SET `darkmatter`=darkmatter+200 WHERE id=".$USER['id']."");
    $template->message("Congratulations you have completed Task 2 of this tutorial! You received just 200 dark matter!", "?page=fleet", 3);
    exit;
    }
    }
    if($USER['tuto_pianeta']==0){
    if($PLANET['metal_mine'] >=10 && $PLANET['crystal_mine'] >=7 && $PLANET['deuterium_sintetizer'] >=5){
    $db->query("UPDATE ".USERS." SET `tuto_pianeta`=tuto_pianeta+1 WHERE id=".$USER['id']."");
    $db->query("UPDATE ".USERS." SET `darkmatter`=darkmatter+200 WHERE id=".$USER['id']."");
    $template->message("Congratulations you have completed Task 3 of this tutorial! You received just 200 dark matter!", "?page=fleet", 3);
    exit;
    }
    }
    if($USER['tuto_nave']==0){
    if($PLANET['laboratory'] >=1 && $PLANET['hangar'] >=2 && $PLANET['small_ship_cargo'] >=1 && $USER['combustion_tech'] >=2){
    $db->query("UPDATE ".USERS." SET `tuto_nave`=tuto_nave+1 WHERE id=".$USER['id']."");
    $db->query("UPDATE ".USERS." SET `darkmatter`=darkmatter+200 WHERE id=".$USER['id']."");
    $template->message("Congratulations you have completed Task 4 of this tutorial! You received just 200 dark matter!", "?page=fleet", 3);
    exit;
    }
    }
    if($USER['tuto_tec'] == 0){
    if($USER['ally_id'] > 0 && $query>1){
    $db->query("UPDATE ".USERS." SET `tuto_tec`=tuto_tec+1 WHERE id=".$USER['id']."");
    $db->query("UPDATE ".USERS." SET `darkmatter`=darkmatter+200 WHERE id=".$USER['id']."");
    $template->message("Congratulations you have completed Task 5 of this tutorial! You received just 200 dark matter!", "?page=fleet", 3);
    exit;
    }
    }
    if($USER['tuto_mercante'] == 0){
    if($USER['used_trader'] >= 1 && $PLANET['metal_store'] >= 1 or $PLANET['crystal_store'] >= 1 or $PLANET['deuterium_store'] >=1 ){
    $db->query("UPDATE ".USERS." SET `tuto_mercante`=tuto_mercante+1 WHERE id=".$USER['id']."");
    $db->query("UPDATE ".USERS." SET `darkmatter`=darkmatter+200 WHERE id=".$USER['id']."");
    $template->message("Congratulations you have completed Task 6 of this tutorial! You received just 200 dark matter!", "?page=fleet", 3);
    exit;

    }
    }
    if($USER['tuto_spia'] == 0){
    if($PLANET['spy_sonde'] >=1 && $USER['tuto_spia_fin'] = 1){
    $db->query("UPDATE ".USERS." SET `tuto_spia`=tuto_spia+1 WHERE id=".$USER['id']."");
    $db->query("UPDATE ".USERS." SET `darkmatter`=darkmatter+200 WHERE id=".$USER['id']."");
    $template->message("Congratulations you have completed Task 7 of this tutorial! You received just 200 dark matter!", "?page=fleet", 3);
    exit;
    }
    }
    if($USER['tuto_colonia'] ==0){
    $query = $db->uniquequery("SELECT count AS planet_count FROM ".PLANETS." WHERE `id_owner` = '". $USER['id'] ."';");
    $planet_count = $query['planet_count'];
    if($planet_count >=2){
    $db->query("UPDATE ".USERS." SET `tuto_colonia`=tuto_colonia+1 WHERE id=".$USER['id']."");
    $db->query("UPDATE ".USERS." SET `darkmatter`=darkmatter+1000 WHERE id=".$USER['id']."");
    $template->message("Congratulations you have completed Task 8 of this tutorial! You received just 1000 dark matter!", "?page=fleet", 3);
    exit;
    }
    }
    if($USER['tuto_detriti']==0){
    $query = $db->uniquequery("SELECT `fleet_mission` FROM ".FLEETS." WHERE `fleet_owner` = '". $USER['id'] ."' AND `fleet_mission` = '8';");
    if($USER['tuto_detriti_fin']>=1 && $PLANET['recycler'] >= 1){
    $db->query("UPDATE ".USERS." SET `tuto_detriti`=tuto_detriti+1 WHERE id=".$USER['id']."");
    $db->query("UPDATE ".USERS." SET `darkmatter`=darkmatter+2000 WHERE id=".$USER['id']."");
    $template->message("Congratulations you have completed Task 9 of this tutorial! You received just 2000 dark matter!", "?page=fleet", 3);
    exit;
    }
    }
    //-->end tutorial

    Mở class.ShowBuildingPage.php tìm đoạn này:

    public function __construct()
    {
    global $ProdGrid, $LNG, $resource, $reslist, $CONF, $db, $PLANET, $USER;

    include_once(ROOT_PATH . 'includes/functions/IsTechnologieAccessible.php');
    include_once(ROOT_PATH . 'includes/functions/GetElementPrice.php');

    $TheCommand = request_var('cmd','');
    $Element = request_var('building',0);
    $ListID = request_var('listid',0);
    Thêm dòng này phía dưới

    $template=new template();
    Giờ đến phần truy xuất cơ sở dữ liệu, vào phpadmin của bạn

    Truy suất MySQL :

    ALTER TABLE `uni1_users` ADD `started_tut` TINYINT(1) NOT NULL DEFAULT '0'


    Truy suất MySQL

    ALTER TABLE `uni1_users` ADD `tuto_miniera` enum('0','1') NOT NULL DEFAULT '0', ADD `tuto_difesa` enum('0','1') NOT NULL DEFAULT '0', ADD `tuto_pianeta` enum('0','1') NOT NULL DEFAULT '0', ADD `tuto_nave` enum('0','1') NOT NULL DEFAULT '0', ADD `tuto_mercante` enum('0','1') NOT NULL DEFAULT '0', ADD `tuto_spia` enum('0','1') NOT NULL DEFAULT '0', ADD `tuto_spia_fin` enum('0','1') NOT NULL DEFAULT '0', ADD `tuto_colonia` enum('0','1') NOT NULL DEFAULT '0', ADD `tuto_tec` enum('0','1') NOT NULL DEFAULT '0', ADD `tuto_tec_due` enum('0','1') NOT NULL DEFAULT '0', ADD `tuto_detriti` enum('0','1') NOT NULL DEFAULT '0', ADD `tuto_detriti_fin` enum('0','1') NOT NULL DEFAULT '0', ADD `tuto_spedizione_fin` enum('0','1') NOT NULL DEFAULT '0', ADD `tuto_spedizione` enum('0','1') NOT NULL DEFAULT '0', ADD `used_trader` INT(11) NOT NULL DEFAULT '0'
    Lưu ý: trong lệnh truy suất cơ sở dữ liệu, tên "uni1_users" bạn chú ý đến "uni1", đó là tiền tố khi bạn cài đặt database lúc install game. Nếu bạn đặt tên tiền tố là "abc_", thì thay vào chỗ đó là "abc_users", còn nếu bạn cài game với tiền tố mặc định thì để nguyên câu lệnh truy xuất đó.

    Good luck
    Khách viếng thăm hãy cùng skriptank xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

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

    LinhKid (22-08-11)

  6. #45
    Thành Viên
    Ngày tham gia
    Aug 2011
    Bài viết
    45
    Thanks
    14
    Thanked 1 Time in 1 Post

    Ðề: Webgame - Xnova revolution 5.1 - Tiếng Việt

    Thanks bạn nhiều lắm, tớ cũng đã chèn mấy thêm vào game.php và file class với lib, vậy mà ko đc, hóa ra còn nhiều thứ như thế này @@
    Khách viếng thăm hãy cùng LinhKid xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  7. #46
    Thành Viên
    Ngày tham gia
    Aug 2009
    Bài viết
    140
    Thanks
    31
    Thanked 27 Times in 13 Posts

    Ðề: Webgame - Xnova revolution 5.1 - Tiếng Việt

    Mình có đính kèm cái file hướng dẫn lun rồi mà ta

    Hì hì, cảm ơn cả 2 bạn nhiều lắm ^^
    n2t168 có biết game King of world share bên Galaxy ko ? Mình rất kết mấy game cổ trang chiến thuật xây dựng kiểu ấy. Mình có download về, cài đc 1 phần rồi, nhưng tới mục config thì làm mãi theo hướng dẫn mà ko đc.
    Với lại cho mình hỏi là ngoài SQL 2005 thì có thể làm trên Apache sr hoặc xampp đc ko ? Mấy cái ấy mình quen dùng hơn @@, chứ xài cái SQL 2005 này khó nhằn quá [Only registered and activated users can see links. ], dân chuyên PHP tự nhiên đụng phải ASP đã nản rồi, đến cái csdl của nó cũng lại lạ nữa, làm mãi ko đc [Only registered and activated users can see links. ].
    Nếu ko phiền rất mong bạn hướng dẫn qua cho mình cách config cái bộ King of world. Cảm ơn bạn trước ^^
    Cái game này chưa vọc qua. khi nào việt hóa cái game này xong load về xem thử.
    Lần sửa cuối bởi n2t168, ngày 22-08-11 lúc 05:47 PM.
    Khách viếng thăm hãy cùng n2t168 xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  8. #47
    Thành Viên
    Ngày tham gia
    Feb 2010
    Bài viết
    399
    Thanks
    108
    Thanked 66 Times in 37 Posts

    Ðề: Webgame - Xnova revolution 5.1 - Tiếng Việt

    Trích dẫn Gửi bởi n2t168 [Only registered and activated users can see links. ]
    Mình có đính kèm cái file hướng dẫn lun rồi mà ta
    [Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ]
    Khách viếng thăm hãy cùng skriptank xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  9. #48
    Thành Viên
    Ngày tham gia
    Aug 2011
    Bài viết
    45
    Thanks
    14
    Thanked 1 Time in 1 Post

    Ðề: Webgame - Xnova revolution 5.1 - Tiếng Việt

    Hình như khai báo hàm vẫn thiếu bạn ạ, làm xong hết rồi nó vẫn báo là ko hiểu function ShowTutorilPage. Bạn thử check lại xem còn thiếu đoạn nào ko ?
    Cảm ơn bạn nhiều nhé
    Khách viếng thăm hãy cùng LinhKid xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  10. #49
    Thành Viên
    Ngày tham gia
    Aug 2009
    Bài viết
    140
    Thanks
    31
    Thanked 27 Times in 13 Posts

    Ðề: Webgame - Xnova revolution 5.1 - Tiếng Việt

    Chết. up nhầm file
    [Only registered and activated users can see links. ] << file này mới đúng. sory


    Cái file kia tại vì chép đè lên nên kích vào nó nhảy ra file tutorial.rar chứ ko phải file nhiemvu.rar
    Khách viếng thăm hãy cùng n2t168 xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  11. #50
    Thành Viên
    Ngày tham gia
    Feb 2010
    Bài viết
    399
    Thanks
    108
    Thanked 66 Times in 37 Posts

    Ðề: Webgame - Xnova revolution 5.1 - Tiếng Việt

    Trích dẫn Gửi bởi n2t168 [Only registered and activated users can see links. ]
    Chết. up nhầm file
    [Only registered and activated users can see links. ] << file này mới đúng. sory


    Cái file kia tại vì chép đè lên nên kích vào nó nhảy ra file tutorial.rar chứ ko phải file nhiemvu.rar
    Chơi nhau đây mà, tên này phải ngàn lần [Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ][Only registered and activated users can see links. ]
    Khách viếng thăm hãy cùng skriptank xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

 

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

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

  1. Trả lời: 348
    Bài viết cuối: 09-07-12, 08:18 PM
  2. [Thao Luận] XNova Có thể phát triển map như Ikariam ko?
    Bởi robin007 trong diễn đàn Hỏi Đáp/ Yêu Cầu
    Trả lời: 2
    Bài viết cuối: 18-06-11, 09:45 PM

Tag của Chủ đề này

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à 10:27 PM.
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ệ.