الموضوع: npc Study Points
عرض مشاركة واحدة
احصائياتى

الردود
1

المشاهدات
1316
 
محمد ياسر

محمد ياسر is on a distinguished road

    غير متواجد

المشاركات
1,940

+التقييم
0.86

تاريخ التسجيل
Apr 2019

الاقامة
https://www.facebook.com/daany

نظام التشغيل

رقم العضوية
1
2019-04-18, 10:49 AM
المشاركة 1 
#1  
Post npc Study Points
السلام عليكم ورحمة الله وبركاته انبي سي Study Points

وده ليزودلك ترقيه المهارات بدل ما تقعد تشتري في كتب


كود:
#region Study Points
                
case 123333:
                    {
                        switch (
npcRequest.OptionID)
                        {
                            case 
0:
                                {
                                    
dialog.Text("Hi i can give you 60 k study point for 10k cps");
                                    
dialog.Option("Yes, i need it"1);
                                    
dialog.Send();
                                    break;
                                }
                            case 
1:
                                {
                                    if (
client.Entity.ConquerPoints >= 10000)
                                    {
                                        
client.Entity.ConquerPoints -= 10000;
                                        
client.Entity.SubClasses.StudyPoints += 60000;
                                    }
                                    break;
                                }
                        }
                        break;
                    }
                
#endregion