المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : شرح ازاى تعمل شوب فى اى مكان فى اللعبه


Osama
08-19-2018, 04:14 PM
عفواً لايمكن عرض الروابط في الإرشيف



المـــوضــوع بيتــكلم عن راجــل بيبع شــوب
Npc بيـــدك ايـــتم تعمل شـــوب فى اى مـــكان


صوره

عفواً لايمكن عرض الروابط في الإرشيف


هتفـــح مــلف NPC.cs
هتضـــيف الكـــود دة تحت اى NPC


#region Booth Item Seller
case 56428:
switch (npcRequest.OptionID)
{
case 0:
dialog.Text("Hello, I'm the Booth item seller, Do you want to buy the booth item?");
dialog.Option("Yes!", 1);
dialog.Option("Just passing by.", byte.MaxValue);
break;
case 1:
if (client.Entity.ConquerPoints >= 50000)
{
if (client.Inventory.Count < 40)
{
client.Entity.ConquerPoints -= 50000;
client.Inventory.Add(3004458, 0, 1);
}
else
{
dialog.Text("Sorry There is no free spaces in your inventory!");
dialog.Option("Shit.", byte.MaxValue);
}
}
else
{
dialog.Text("Sorry you don't have enough cps you need 50000");
dialog.Option("Shit.", byte.MaxValue);
}
break;
}
break;
#endregion



تم بحمد الله

جنش
09-10-2018, 02:19 PM
شكرا شكرا شكرا