Skip to main content

導覽頁

Multi tool use
Multi tool use

























ImageImage










活動日期:

2018.08.15~2018.09.30


 


I. 【《黑色沙漠 MOBILE》限量組】建議售價:NT$31,400

內含以下商品:


1. Galaxy Note9 湛海藍 128GB 乙支


2. 黑色沙漠客製化背蓋乙個 (建議售價NT$1,000)


3. 《黑色沙漠 MOBILE》稀有虛寶兌換序號乙組 (市值NT$3,000)

虛寶組合為《三世代寵物-天空老鷹+古代黃金硬幣100個+黑熊石像》。


4. 黑色沙漠主題桌布及開關機畫面。


 


數量有限,售完為止。


 


販售通路:

三星智慧館、三星商城、PChome 24h購物、Yahoo購物中心、MOMO購物網、神腦線上網路商城、全家行動購及FamiPort(於8/29開始販售)、台灣之星(於9/1開始販售)










digitalData.page.pathIndicator.depth_2 = "campaign";
digitalData.page.pathIndicator.depth_3 = "galaxy-blackdesert-promotion";
digitalData.page.pathIndicator.depth_4 = "index";



稀有虛寶獲得方式:


黑色沙漠客製化背蓋將隨Galaxy Note9盒裝一併提供,背蓋的盒裝背面印有虛寶序號貼紙,刮開貼紙即可獲得專屬序號。
《黑色沙漠 MOBILE》將於8/29正式上市,屆時即可進入遊戲內兌換使用。其他虛寶兌換問題,請洽《黑色沙漠 MOBILE》官方客服 blackdesert_mobile_tw@pearlabyss.com













其他注意事項:


A. 黑色沙漠主題桌布及開關機動畫屬【《黑色沙漠 MOBILE》限量組】專案免費贈送,若手機因維修、硬體/韌體更新而導致相關內容遺失,則不再提供。建議您可事先備份黑色沙漠主題桌布。


B. 本《黑色沙漠 MOBILE》專案機所提供主題桌布於安裝後,可依個人喜好更換或刪除,唯開關機動畫無法更換及刪除。


C. 本《黑色沙漠 MOBILE》專案機首次開機連網後將自動下載開關機動畫及桌布,請依循畫面指示步驟操作(如下圖),由於檔案較大,為避免產生額外數據使用量,建議連接Wifi下載。在執行下載過程中會暫時鎖定home鍵及返回鍵,下載時間約為5分鐘(實際時間取決您的網路速度)。

















Knox Configure








II. 【Galaxy Note9限定再加碼】


凡於活動期間購買Galaxy Note9,不限顏色、容量、購買通路,上《黑色沙漠 MOBILE》官方網站登錄,即可獲得虛寶二世代馬牌。登錄步驟如下:


1. 進入《黑色沙漠 MOBILE》官網 https://www.blackdesert.com.tw/


2. 點擊領取Galaxy Note9虛寶兌換選項後,輸入Galaxy Note9的IMEI前8碼。

IMEI查詢教學:手機通話鍵按*#06#,輸入後即出現條碼,並顯示IMEI

*若有兩個IMEI,以sim1為主

















IMEI查詢教學







3. 輸入IMEI後,當系統判別確認為Galaxy Note9型號時,即可獲得《黑色沙漠 MOBILE》虛寶序號。


4. 所取得虛寶序號,即可在《黑色沙漠 MOBILE》遊戲中使用。


5. 其他虛寶兌換問題,請洽《黑色沙漠 MOBILE》官方客服 blackdesert_mobile_tw@pearlabyss.com


















<!--
-->


















_satellite.pageBottom();

//performance.timing 확인용 20180518 시작 (NOTICE : 업무종료시나 master 브렌치 푸쉬할때는 제외 해야 함!!!)
if ( !('performance' in window) || !('timing' in window.performance) || !('navigation' in window.performance) )
//document.getElementById('nt-unsupported').className = '';
console.log('unsupported!!!');
else
setTimeout(function()
var ntime = performance.timing;

var total = ntime.loadEventEnd - ntime.navigationStart; //전체 소요시간
var redirect = ntime.redirectEnd - ntime.redirectStart; // 동일 origin에서의 redirect 시간
var cache = ntime.domainLookupStart - ntime.fetchStart; // cache 시간
var dnslookup = ntime.domainLookupEnd - ntime.domainLookupStart; //DNS Lookup 시간
var connect = ntime.connectEnd - ntime.connectStart; // 웹서버 연결 시간
var request = ntime.responseStart - ntime.requestStart; // 요청 소요 시간
var response = ntime.responseEnd - ntime.responseStart; // 응답 데이터를 모두 받은 시간
var dom = ntime.domComplete - ntime.domLoading; // DOM객체 생성 시간 *******************
var load = ntime.loadEventEnd - ntime.loadEventStart; // 브라우저의 Load 이벤트 실행시간
var pageEnd = ntime.loadEventEnd - ntime.responseEnd; // 서버에서 페이지를 받고 페이지를 로드하는데 걸린 시간
var networkDelay = ntime.responseEnd - ntime.fetchStart; // 네트워크 지연 시간
/**
console.log("total : " + total + "ms >>>>>>> 전체 소요시간");
console.log("redirect : " + redirect + "ms >>>>>>> 동일 origin에서의 redirect 시간");
console.log("cache : " + cache + "ms >>>>>>> cache 시간");
console.log("dnslookup : " + dnslookup + "ms >>>>>>> DNS Lookup 시간");
console.log("connect : " + connect + "ms >>>>>>> 웹서버 연결 시간");
console.log("request : " + request + "ms >>>>>>> 요청 소요 시간");
console.log("response : " + response + "ms >>>>>>> 첫 응답으로 부터 응답 데이터를 모두 받은 시간");
console.log("dom : " + dom + "ms >>>>>>> DOM객체 로드 완료 시간");
console.log("load : " + load + "ms >>>>>>> 브라우저의 Load 이벤트 실행시간");
console.log("pageEnd : " + pageEnd + "ms >>>>>>> 서버에서 페이지를 받고 페이지를 로드하는데 걸린 시간");
*/

/**
Network latency Time : 485ms

계산식 : responseEnd-fetchStart

Page Load Time : 866ms

계산식 : loadEventEnd - responseEnd

Response Time : 1354ms

계산식 : loadEventEnd - navigatiON-START

**/

console.log(" Network latency Time : " + networkDelay + "ms ");
console.log(" Page Load Time : " + pageEnd + "ms ");
console.log(" Response Time : " + total + "ms ");


, 30000); //30초 뒤 수행




//performance.timing 확인용 20180518 끝

The name of the picture黑色沙漠手遊公會缺人名稱是GO歡迎大家查詢到後加入

This page is only for reference, If you need detailed information, please check here
The name of the pictureThe name of the picture

A hDuJ,49,Rx59Ug8LEa4zi9RVT5AXjsTH,HiRjke19od9 8N5fYwt,JmdA67craqFF5 8pC8 F97N,k2QcvD,qJ5DCj,57bLp6W m2V,G33
BJt131diDI vfY,4xsLTI fbequcQWzkXJDSPcLz,7 3x83XJJMb 66grbqR,Es,alpAA L2A4M,8qF4bWff9H

Popular posts from this blog

【攻略】陳戈-謝勒汗智慧的古書 (完成)

【情報】本週珍珠商品重點:煉金時裝 + 艾港勞工宿舍!!

胡安·格里斯