ChuMChuM |
06-01-2012 06:46 AM |
حصريا انبى سى بيبع ايتمز الترقية 5375
عفواً لايمكن عرض الروابط إلا بعد الرد على الموضوع
حصريا انبى سى بيبع ايتمز الترقية 5375
كود PHP:
INSERT INTO `cq_npc` VALUES ('32011', '0', 'ItemsPromo', '0002', '8960', '1004', '0051', '0049', '0', '0');
كود PHP:
#region Promo Seller case 32011: { switch (npcRequest.OptionID) { case 0: { dialog.Text("Hello! I'm StyleCo V2, I can Give You Items Promotion "); dialog.Text("world. What do you want my brother!"); dialog.Link("EuxeniteOre", 1); dialog.Link("Emerald", 2); dialog.Link("MoonBox", 3); dialog.Link("Just passing by.", 255); dialog.Avatar(85); dialog.Send(); break; } case 1: { if (client.Entity.ConquerPoints >= 10000) { client.Inventory.Add(1072031, 0, 1);
client.Entity.ConquerPoints -= 10000; } else { dialog.Text("You don't have enough 10k Cps!"); dialog.Link("I see.", 255); dialog.Avatar(85); dialog.Send(); } break; } case 2: { if (client.Entity.ConquerPoints >= 10000) { client.Inventory.Add(1080001, 0, 1); client.Entity.ConquerPoints -= 10000; } else { dialog.Text("You don't have enough 10k Cps!"); dialog.Link("I see.", 255); dialog.Avatar(85); dialog.Send(); } break; } case 3: { if (client.Entity.ConquerPoints >= 10000) { client.Inventory.Add(721090, 0, 1);
client.Entity.ConquerPoints -= 10000; } else { dialog.Text("You don't have enough 10k Cps!"); dialog.Link("I see.", 255); dialog.Avatar(85); dialog.Send(); } break; } } break; } #endregion
|