-
Notifications
You must be signed in to change notification settings - Fork 0
P3 items
hm0429 edited this page Mar 31, 2011
·
2 revisions
Pankiaではゲームで使うアイテムの管理を簡単に行うことができます。
アイテムの設定はPankiaデベロッパサイト上で行います。
NSArray* categories = [Pankia categories];
- カテゴリの一覧が返されます。
NSArray* items = [Pankia items];
- すべてのアイテム一覧を返します。
- 所持個数の情報は含まれません。
PNItemCategory* category = [[Pankia categories] objectAtIndex:0]; NSArray* items = category.items;
- 特定カテゴリのアイテムを取得します。
- 所持個数の情報は含まれません。
int64_t quantity = [Pankia quantityOfItem:1];
- ID=1のアイテムの所持個数を返します。
PNError* error; [Pankia acquireItem:1 quantity:3 error:&error];
- ID=1のアイテムを3増やします。
- そのアイテムが存在しない場合や、保持個数上限に達していた場合等にエラーが返ります。
- オフライン状態でも使用可能です。
PNError* error; [Pankia consumeItem:1 quantity:3 error:&error];
- ID=1のアイテムを3減らします。
- そのアイテムが存在しない場合や、0個以下になった場合等にエラーが返ります。
- オフライン状態でも使用可能です。