ExemptionCo
Would you like to react to this message? Create an account in a few clicks or log in to continue.

ExemptionCo

5095 Pserver
 
HomeLatest imagesSearchRegisterLog in

 

 LEO READ THIS!

Go down 
AuthorMessage
SirPr0Alot~Admin

SirPr0Alot~Admin


Posts : 123
Join date : 2011-08-18
Location : ExemptionCo Source

LEO READ THIS! Empty
PostSubject: LEO READ THIS!   LEO READ THIS! EmptyWed Sep 28, 2011 1:38 pm

NPCDialog.cs

This is the garment seller ive already made all the stuff about pvppoints and stuff but i dunno which garments u meant and what price u gonna put, u can do the rest ureself, im leavin for now see ya
2morro or later today.

ALSO: I MADE NEW COMMAND FOR BACKUP CHARACTER BEFORE RESTART SO BEFORE YOU DO RESTART @backup THEN DO @restart.




Code:
#region Garment Seller
                            case 610023:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Welcome to ExemptionCO Special Garment Seller, Would you like to buy a Special Garment with PVPPoints?"));
                                        GC.AddSend(Packets.NPCLink("Yes", 1));
                                        GC.AddSend(Packets.NPCLink("No", 255));
                                        GC.AddSend(Packets.NPCSetFace(30));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    if (Control == 1)
                                    {
                                        GC.AddSend(Packets.NPCSay("These are the Special Garments:"));
                                        GC.AddSend(Packets.NPCLink("Garment Name", 2));
                                        GC.AddSend(Packets.NPCLink("Garment Name", 3));
                                        GC.AddSend(Packets.NPCLink("Garment Name", 4));
                                        GC.AddSend(Packets.NPCLink("Garment Name", 5));
                                        GC.AddSend(Packets.NPCLink("Garment Name", 6));
                                        GC.AddSend(Packets.NPCLink("Garment Name", 7));
                                        GC.AddSend(Packets.NPCSetFace(30));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    if (Control == 2)
                                    {
                                        if (GC.MyChar.HeroPoints >= 10000000)
                                        {
                                            GC.MyChar.HeroPoints -= 10000000;
                                            GC.MyChar.AddItem(191305);
                                        }
                                        else
                                        {
                                            GC.AddSend(Packets.NPCSay("Sorry, you don't have enough PVPPoints."));
                                            GC.AddSend(Packets.NPCLink("Damn Im Such A Noob, Lemme Rape Some Noobs", 255));
                                            GC.AddSend(Packets.NPCSetFace(30));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                    }
                                    if (Control == 3)
                                    {
                                        if (GC.MyChar.HeroPoints >= 10000000)
                                        {
                                            GC.MyChar.HeroPoints -= 10000000;
                                            GC.MyChar.AddItem(Garment ID);//second garment
                                        }
                                        else
                                        {
                                            GC.AddSend(Packets.NPCSay("Sorry, you don't have enough PVPPoints."));
                                            GC.AddSend(Packets.NPCLink("Damn Im Such A Noob, Lemme Rape Some Noobs", 255));
                                            GC.AddSend(Packets.NPCSetFace(30));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                    }
                                    if (Control == 4)
                                    {
                                        if (GC.MyChar.HeroPoints >= 10000000)
                                        {
                                            GC.MyChar.HeroPoints -= 10000000;
                                            GC.MyChar.AddItem(Garment ID);//third garment
                                        }
                                        else
                                        {
                                            GC.AddSend(Packets.NPCSay("Sorry, you don't have enough PVPPoints."));
                                            GC.AddSend(Packets.NPCLink("Damn Im Such A Noob, Lemme Rape Some Noobs", 255));
                                            GC.AddSend(Packets.NPCSetFace(30));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                    }
                                    if (Control == 5)
                                    {
                                        if (GC.MyChar.HeroPoints >= 10000000)
                                        {
                                            GC.MyChar.HeroPoints -= 10000000;
                                            GC.MyChar.AddItem(Garment ID);//Fourth Garment
                                        }
                                        else
                                        {
                                            GC.AddSend(Packets.NPCSay("Sorry, you don't have enough PVPPoints."));
                                            GC.AddSend(Packets.NPCLink("Damn Im Such A Noob, Lemme Rape Some Noobs", 255));
                                            GC.AddSend(Packets.NPCSetFace(30));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                    }
                                    if (Control == 6)
                                    {
                                        if (GC.MyChar.HeroPoints >= 10000000)
                                        {
                                            GC.MyChar.HeorPoints -= 10000000;
                                            GC.MyChar.AddItem(Garment ID);//Fifth Garment
                                        }
                                        else
                                        {
                                            GC.AddSend(Packets.NPCSay("Sorry, you don't have enough PVPPoints."));
                                            GC.AddSend(Packets.NPCLink("Damn Im Such A Noob, Lemme Rape Some Noobs", 255));
                                            GC.AddSend(Packets.NPCSetFace(30));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                    }
                                    if (Control == 7)
                                    {
                                        if (GC.MyChar.HeroPoints >= 10000000)
                                        {
                                            GC.MyChar.HeroPoints -= 10000000;
                                            GC.MyChar.AddItem(Garment ID);//Six Garment
                                        }
                                        else
                                        {
                                            GC.AddSend(Packets.NPCSay("Sorry, you don't have enough PVPPoints."));
                                            GC.AddSend(Packets.NPCLink("Damn Im Such A Noob, Lemme Rape Some Noobs", 255));
                                            GC.AddSend(Packets.NPCSetFace(30));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                    }
                                    break;
                                }
                            #endregion


Find NPC.txt and add this line there.


Code:
610023 5470 2 0 1002 422 366

Back to top Go down
http://exemptionco.zzl.org/chat.html
leo7
Guest




LEO READ THIS! Empty
PostSubject: Re: LEO READ THIS!   LEO READ THIS! EmptyWed Sep 28, 2011 7:23 pm

lol u dont need put those comments about wat should i put, i no those stuff.
Back to top Go down
SirPr0Alot~Admin

SirPr0Alot~Admin


Posts : 123
Join date : 2011-08-18
Location : ExemptionCo Source

LEO READ THIS! Empty
PostSubject: Re: LEO READ THIS!   LEO READ THIS! EmptyThu Sep 29, 2011 1:51 am

Lol i kno tht u kno and code better than me but it just makes ure job much easier
Back to top Go down
http://exemptionco.zzl.org/chat.html
SirPr0Alot~Admin

SirPr0Alot~Admin


Posts : 123
Join date : 2011-08-18
Location : ExemptionCo Source

LEO READ THIS! Empty
PostSubject: Re: LEO READ THIS!   LEO READ THIS! EmptyThu Sep 29, 2011 1:58 am

Ow yeh and also gimme forums cpanel details, it needs some edits and cleanup. Send PM
Back to top Go down
http://exemptionco.zzl.org/chat.html
Sponsored content





LEO READ THIS! Empty
PostSubject: Re: LEO READ THIS!   LEO READ THIS! Empty

Back to top Go down
 
LEO READ THIS!
Back to top 
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
ExemptionCo :: Announcements-
Jump to: