W3Cschool
恭喜您成為首批注冊用戶
獲得88經驗值獎勵
游戲只調用初始化接口,便可享受360數(shù)據大部分服務,如無特殊需求,下文可忽略
使用QHStatDo來調用以下各個方法。
開始關卡:
// level:關卡名稱 public static void startLevel(String level)
結束關卡
// level:關卡名稱 public static void finishLevel(String level)
失敗關卡
// level:關卡名稱 public static void failLevel(String level, String reason)
開始任務
// task:任務名稱 // type:任務類型 public static void startTask(String task, String type)
結束任務
// task:任務名稱 public static void finishTask(String task)
失敗任務
// task:任務名稱 // reason:失敗原因 public static void failTask(String task, String reason)
// cash:支付金額(游戲自定義,可以是分或元為單位,游戲依照實際需求來定) // coin:購買金幣數(shù)量 // source:支付方式(游戲自定義,給每個支付渠道定義的整型值) public static void pay(int cash, int coin, int source) // cash:支付金額(游戲自定義,可以是分或元為單位,游戲依照實際需求來定) // cashType:支付貨幣類型(游戲自定義) // coin:購買金幣數(shù)量 // source:支付方式(游戲自定義,給每個支付渠道定義的整型值) public static void pay(int cash, String cashType, int coin, int source) // cash:支付金額(游戲自定義,可以是分或元為單位,游戲依照實際需求來定) // coin:購買金幣數(shù)量 // source:支付方式(游戲自定義,給每個支付渠道定義的整型值) // level:關卡名稱 // rank:玩家等級 public static void pay(int cash, int coin, int source, String level, String rank) // cash:支付金額(游戲自定義,可以是分或元為單位,游戲依照實際需求來定) // cashType:支付貨幣類型 // coin:購買金幣數(shù)量 // source:支付方式(游戲自定義,給每個支付渠道定義的整型值) // level:關卡名稱 // rank:玩家等級 public static void pay(int cash, String cashType, int coin, int source, String level, String rank) // cash:支付金額(游戲自定義,可以是分或元為單位,游戲依照實際需求來定) // number:購買道具數(shù)量 // props:購買道具名稱 // source:支付方式(游戲自定義,給每個支付渠道定義的整型值) public static void pay(int cash, int number, String props, int source) // cash:支付金額(游戲自定義,可以是分或元為單位,游戲依照實際需求來定) // cashType:支付貨幣類型 // number:購買道具數(shù)量 // props:購買道具名稱 // source:支付方式(游戲自定義,給每個支付渠道定義的整型值) public static void pay(int cash, String cashType, int number, String props, int source) // cash:支付金額(游戲自定義,可以是分或元為單位,游戲依照實際需求來定) // number:購買道具數(shù)量 // props:購買道具名稱 // source:支付方式(游戲自定義,給每個支付渠道定義的整型值) // level:關卡名稱 // rank:玩家等級 public static void pay(int cash, int number, String props, int source, String level, String rank) // cash:支付金額(游戲自定義,可以是分或元為單位,游戲依照實際需求來定) // cashType:支付貨幣類型 // number:購買道具數(shù)量 // props:購買道具名稱 // source:支付方式(游戲自定義,給每個支付渠道定義的整型值) // level:關卡名稱 // rank:玩家等級 public static void pay(int cash, String cashType, int number, String props, int source, String level, String rank)
// name:物品名稱 // number:物品數(shù)量 // coin:消費的虛擬幣數(shù)量 public static void buy(String name, int number, int coin) // name:物品名稱 // number:物品數(shù)量 // method:物品獲取方式 public static void buy(String name, int number, String method) // name:物品名稱 // number:物品數(shù)量 // coinType: 虛擬幣類型 // coin:消費的虛擬幣數(shù)量 public static void buy(String name, int number, String coinType, int coin) // name:物品名稱 // number:物品數(shù)量 // coin:消費的虛擬幣數(shù)量 // level:關卡名稱 public static void buy(String name, int number, int coin, String level) // name:物品名稱 // number:物品數(shù)量 // method:物品獲取方式 // level:關卡名稱 public static void buy(String name, int number, String method, String level) // name:物品名稱 // number:物品數(shù)量 // coinType:虛擬幣類型 // coin:消費的虛擬幣數(shù)量 // level:關卡名稱 public static void buy(String name, int number, String coinType, int coin, String level) // name:物品名稱 // type: 物品類型 // number:物品數(shù)量 // coin:消費的虛擬幣數(shù)量 public static void buy(String name, String type, int number, int coin) // name:物品名稱 // type: 物品類型 // number:物品數(shù)量 // method:物品獲取方式 public static void buy(String name, String type, int number, String method) // name:物品名稱 // type: 物品類型 // number:物品數(shù)量 // coinType: 虛擬幣類型 // coin:消費的虛擬幣數(shù)量 public static void buy(String name, String type, int number, String coinType, int coin) // name:物品名稱 // type: 物品類型 // number:物品數(shù)量 // coin:消費的虛擬幣數(shù)量 // level:關卡名稱 public static void buy(String name, String type, int number, int coin, String level) // name:物品名稱 // type: 物品類型 // number:物品數(shù)量 // method:物品獲取方式 // level:關卡名稱 public static void buy(String name, String type, int number, String method, String level) // name:物品名稱 // type: 物品類型 // number:物品數(shù)量 // coinType:虛擬幣類型 // coin:消費的虛擬幣數(shù)量 // level:關卡名稱 public static void buy(String name, String type, int number, String coinType, int coin, String level)
// name:物品名稱 // number:物品數(shù)量 // coin:物品對應的虛擬幣數(shù)量 public static void use(String name, int number, int coin) // name:物品名稱 // number:物品數(shù)量 // coinType:虛擬幣類型 // coin:物品對應的虛擬幣數(shù)量 public static void use(String name, int number, String coinType, int coin) // name:物品名稱 // type: 物品類型 // number:物品數(shù)量 // coin:物品對應的虛擬幣數(shù)量 public static void use(String name, String type, int number, int coin) // name:物品名稱 // type: 物品類型 // number:物品數(shù)量 // coinType:虛擬幣類型 // coin:物品對應的虛擬幣數(shù)量 public static void use(String name, String type, int number, String coinType, int coin) // name:物品名稱 // number:物品數(shù)量 // coin:物品對應的虛擬幣數(shù)量 // level:關卡名稱 public static void use(String name, int number, int coin, String level) // name:物品名稱 // number:物品數(shù)量 // coinType:虛擬幣類型 // coin:物品對應的虛擬幣數(shù)量 // level:關卡名稱 public static void use(String name, int number, String coinType, int coin, String level) // name:物品名稱 // type: 物品類型 // number:物品數(shù)量 // coin:物品對應的虛擬幣數(shù)量 // level:關卡名稱 public static void use(String name, String type, int number, int coin, String level) // name:物品名稱 // type: 物品類型 // number:物品數(shù)量 // coinType:虛擬幣類型 // coin:物品對應的虛擬幣數(shù)量 // level:關卡名稱 public static void use(String name, String type, int number, String coinType, int coin, String level)
// id:玩家標識 // age:年齡 // gender:性別 // source:玩家來源(游戲自定義,給每個渠道用戶定義的字符串類型值,如:”qihoo360”,”weibo”) // rank:玩家等級 // server:區(qū)域服務器名稱 // comment:其他備注信息 public static void player(String id, int age, int gender, String source, String rank, String server, String comment)
// role:當前玩家標識設置的角色名 public static void role(String role)
自定義事件
// id: 事件標識 // map:事件屬性名和值的鍵值對 public static void event(String id, Map<String, String> map) // 如果在service中,請使用包含上下文參數(shù)的方法: public static void event(Context ctx, String id, Map<String, String> map)
開始自定義事件
// id: 事件標識 // map:事件屬性名和值的鍵值對 public static void eventBegin(String id, Map<String, String> map) // 如果在service中,請使用包含上下文參數(shù)的方法: public static void eventBegin(Context ctx, String id, Map<String, String> map)
結束自定義事件
// id: 事件標識 // map:事件屬性名和值的鍵值對 public static void eventEnd(String id, Map<String, String> map) // 如果在service中,請使用包含上下文參數(shù)的方法: public static void eventEnd(Context ctx, String id, Map<String, String> map)
// key:參數(shù)名 // defValue:默認參數(shù)值 // 返回用戶自定義參數(shù)值 public static String getConfParameter(Context ctx, String key, String defValue)
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: