VIP

07/11/2009 05:29 imported_spitt_fire911#1
Ok im look at VIP System.... when I open my Nobility table... it shows as 0 what do i need to set my Nobility No.. to make it status 1? I tried setting it at one...

Code:
  	nobility  	int(2)  	 	  	No  	0
07/11/2009 12:01 Xanrry#2
Nice:)
07/11/2009 19:33 felipeboladao#3
what?
07/11/2009 22:40 Arcotemple:)#4
Quote:
Originally Posted by imported_spitt_fire911 View Post
Ok im look at VIP System.... when I open my Nobility table... it shows as 0 what do i need to set my Nobility No.. to make it status 1? I tried setting it at one...

Code:
  	nobility  	int(2)  	 	  	No  	0
heres what i think you should do

whenever somebody donates real money to your server

go to mysql and make theyre status something un used like idk umm

4.

and then go to your source and go to the commands and put in a whole new region or whatever its called

Code:
                                    if (Status == 4)
then under that put whatever commands you would want the vip be able to use like for example they can scroll wherever they want without buying a scroll or they can revive without waiting for the seconds to pass
this is what i would put

Code:
                                        if (Splitter[0] == "/scroll")
                                        {
                                            if (Splitter[1] == "gm")
                                            {
                                                MyChar.Teleport(1099, 042, 050);
                                            }
                                            if (Splitter[1] == "tc")
                                            {
                                                MyChar.Teleport(1002, 431, 379);
                                            }
                                            if (Splitter[1] == "lab1")
                                            {
                                                MyChar.Teleport(1351, 13, 127);
                                            }
                                            if (Splitter[1] == "event")
                                            {
                                                MyChar.Teleport(1037, 259, 263);
                                            }
                                            if (Splitter[1] == "tg")
                                            {
                                                MyChar.Teleport(1039, 200, 200);
                                            }
                                            if (Splitter[1] == "ja")
                                            {
                                                MyChar.Teleport(6000, 30, 75);
                                            }
                                            if (Splitter[1] == "bjail")
                                            {
                                                MyChar.Teleport(6001, 28, 72);
                                            }
                                            if (Splitter[1] == "ac")
                                            {
                                                MyChar.Teleport(1020, 567, 576);
                                            }
                                            if (Splitter[1] == "dc")
                                            {
                                                MyChar.Teleport(1000, 500, 650);
                                            }
                                            if (Splitter[1] == "mc")
                                            {
                                                MyChar.Teleport(1001, 316, 642);
                                            }
                                            if (Splitter[1] == "bi")
                                            {
                                                MyChar.Teleport(1015, 723, 573);
                                            }
                                            if (Splitter[1] == "pc")
                                            {
                                                MyChar.Teleport(1011, 190, 271);
                                            }
                                            if (Splitter[1] == "ma")
                                            {
                                                MyChar.Teleport(1036, 200, 200);
                                            }
                                            if (Splitter[1] == "arena")
                                            {
                                                MyChar.Teleport(1005, 52, 69);
                                            }
                                            if (Splitter[1] == "lotto")
                                            {
                                                MyChar.Teleport(700, 52, 69);
                                            }
                                            if (Splitter[1] == "birth")
                                            {
                                                MyChar.Teleport(1010, 60, 110);
                                            }
                                        }
so reall yall together i would put this

Code:
                                    if (Status == 4)
                                       
                                        if (Splitter[0] == "/scroll")
                                        {
                                            if (Splitter[1] == "gm")
                                            {
                                                MyChar.Teleport(1099, 042, 050);
                                            }
                                            if (Splitter[1] == "tc")
                                            {
                                                MyChar.Teleport(1002, 431, 379);
                                            }
                                            if (Splitter[1] == "lab1")
                                            {
                                                MyChar.Teleport(1351, 13, 127);
                                            }
                                            if (Splitter[1] == "event")
                                            {
                                                MyChar.Teleport(1037, 259, 263);
                                            }
                                            if (Splitter[1] == "tg")
                                            {
                                                MyChar.Teleport(1039, 200, 200);
                                            }
                                            if (Splitter[1] == "ja")
                                            {
                                                MyChar.Teleport(6000, 30, 75);
                                            }
                                            if (Splitter[1] == "bjail")
                                            {
                                                MyChar.Teleport(6001, 28, 72);
                                            }
                                            if (Splitter[1] == "ac")
                                            {
                                                MyChar.Teleport(1020, 567, 576);
                                            }
                                            if (Splitter[1] == "dc")
                                            {
                                                MyChar.Teleport(1000, 500, 650);
                                            }
                                            if (Splitter[1] == "mc")
                                            {
                                                MyChar.Teleport(1001, 316, 642);
                                            }
                                            if (Splitter[1] == "bi")
                                            {
                                                MyChar.Teleport(1015, 723, 573);
                                            }
                                            if (Splitter[1] == "pc")
                                            {
                                                MyChar.Teleport(1011, 190, 271);
                                            }
                                            if (Splitter[1] == "ma")
                                            {
                                                MyChar.Teleport(1036, 200, 200);
                                            }
                                            if (Splitter[1] == "arena")
                                            {
                                                MyChar.Teleport(1005, 52, 69);
                                            }
                                            if (Splitter[1] == "lotto")
                                            {
                                                MyChar.Teleport(700, 52, 69);
                                            }
                                            if (Splitter[1] == "birth")
                                            {
                                                MyChar.Teleport(1010, 60, 110);
                                            }
                                        }
idk thats just my opinion do what you want though

something might be wrong i jsut quickly typed it up