عرض مشاركة واحدة
قديم 08-16-2012, 04:37 PM   #1 (permalink)

Mr.Amr

عضو موقوف
 




 
Mr.Amr على طريق التميز

افتراضي ان بي سي يعطيلك لفلات من لفل 1 الى 140 مقابل سي بي اس



بسم الله الرحمن الرحيم


(
npc)بيجيبلك لفلات من 1 لـــ 140

نضيف الكود دا فى ملف

NPCS.cs:


كود:
#region M 
case 19994: 
 { 
 switch (npcRequest.OptionID) 
 { 
 case 0: 
 { 
dialog.Text("Hi " + client.Entity.Name+ " I Sell Level 130 For 250k Cps and onther 131-140 each for 500k Cps Cps"); 
dialog.Option("Yes,I Need Level .", 1); 
dialog.Option("Yes,I Need Level 131-140.", 2); 
dialog.Option("NO Thx.", 255); 
dialog.Avatar(116); 
dialog.Send(); 
 break; 
 } 
 case 1: 
 { 
 if (client.Entity.ConquerPoints >= 500000 && (client.Entity.Level <= 130)) 
 { 
client.Entity.ConquerPoints -= 500000; 
client.Entity.Level += 1; 
client.Entity.Atributes +=3; 
 } 
 else 
 { 
dialog.Text("Please get 500 k cps to Get Level 130."); 
dialog.Option("I see.", 255); 
dialog.Avatar(116); 
dialog.Send(); 
 } 
 break; 
 } 
 case 2: 
 { 
 if (client.Entity.ConquerPoints >= 500000 && (client.Entity.Level >= 130) && (client.Entity.Level <= 139)) 
 { 
client.Entity.ConquerPoints -= 500000; 
client.Entity.Level += 1; 
client.Entity.Atributes += 3; 
 } 
 else 
 { 
dialog.Text("Please get 500 k Cps cps to Get Level 131-140."); 
dialog.Option("I see.", 255); 
dialog.Avatar(116); 
dialog.Send(); 
 } 
 break; 
 } 
 } 
 break; 
 } 
endregion# 
كود النافى كات
كود:
INSERT INTO `npcs` VALUES ('19994', 'Level Seller', '0002', '2790', '1002', '0466', '0348');  





التعديل الأخير تم بواسطة Mr.Amr ; 08-16-2012 الساعة 04:40 PM.
Mr.Amr غير متواجد حالياً   رد مع اقتباس